An open API service indexing awesome lists of open source software.

https://github.com/randomhashtags/swift-string-catalogs

Provides Xcode String Catalogs and relevant localization features for Linux & Windows
https://github.com/randomhashtags/swift-string-catalogs

localisation localization string-catalog swift swift-package-manager

Last synced: 4 months ago
JSON representation

Provides Xcode String Catalogs and relevant localization features for Linux & Windows

Awesome Lists containing this project

README

          

Xcode string catalogs are very powerful, but their accessibility is not available on other platforms other than Apple. This package fixes that.

## Usage
```swift
let decoder:JSONDecoder = JSONDecoder()
guard let data:Data = FileManager.default.contents(atPath: path) else {
return
}
let value:StringCatalog = try decoder.decode(StringCatalog.self, from: data)
```