My app has the Text views that display the value of variables.
Below are two sample pieces of code and the String Catalog (Localizable.xcstrings) entries created when app builds:
(1) Code: Text("[ (var1) ]")
- Key: [ %@ ]
- Default: [ %@ ]
- Spanish: [ %@ ]
(2) Code: Text("(var2) - (var3) - (var4)")
- Key: %@ / %@ / %@
- Default: %1$@ / %2$@ / %3$@
- Spanish: %1$@ / %2$@ / %3$@
Each of the 4 vars have a discrete number of known possible values.
How do I enter the possible var values and their associated Spanish translations in the String Catalog?