NetNewsWire
NetNewsWire copied to clipboard
Base Localisation
Status:
- [x] iOS Code
- [ ] iOS Storyboards
- [x] iOS Extensions
- [ ] macOS Code
- [ ] macOS Storyboards
- [ ] macOS Extensions
2022-04-11
iOS
The iOS app, along with its Share and Intents extensions, have a shared Localizable.strings file for handling NSLocalizedStrings in code. All NSLocalizedStrings now have a standard format:
NSLocalizedString("SELF_HOSTED_ACCOUNT", comment: "Self hosted Account")
And in Localizable.strings
"SELF_HOSTED_ACCOUNT" = "Self-hosted";
The iOS Widget is already localised with its own Localizable.strings and Localizable.stringsdict, as such, no additional work has been done there.
There is still a significant amount of work to do on Storyboards and the Mac app.