Can anybody help me? I can't find any description of the localization in Swift UI. Can anyone please give advice or better an example of how to localize for example Text()
?
Use it in custom SwiftUI views to make them ready for localization. Enable the "Use Compiler to Extract Swift Strings" build setting to extract LocalizedStringKeys from code when exporting for localization in Xcode. Format your strings to internationalize your code, and style them with Markdown.
In your project settings, go to Build Settings and search for Use compiler to Extract Swift Strings. Make sure to search All settings, not just the Basic ones. Change the value of this setting to Yes. In Xcode, go to Product ▸ Export Localizations….
Localization is the process of making your app support other languages. In many cases, you make your app with English user interface first and then localize the app to other languages such as Japanese. The process of localization is tedious, and steps of it change little by little as XCode gets updated.
When you look at documentation for Text
you can see that it takes LocalizedStringKey
not a String
into its initializer:
init(_ key: LocalizedStringKey, tableName: String? = nil, bundle: Bundle? = nil, comment: StaticString? = nil)
It makes localizing very straightforward. All you have to do is:
Localizable.strings
When you select you Localizable.strings
you will see that it contains files for the original language and the language you have just added. That's where you put your translations, i.e. key - localized text pairs.
If you have a text like this is your app:
Text("Hello World!")
You have to now add to your Localizable.strings
your translations:
for your base language:
"Hello World!" = "Hello World!";
and for your second language (in this case German):
"Hello World!" = "Hallo Welt!";
To see your previews localised you can define them like this:
struct ContentViewView_Previews: PreviewProvider { static var previews: some View { ForEach(["en", "de"], id: \.self) { id in ContentView() .environment(\.locale, .init(identifier: id)) } } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With