ios - Localization of Root.plist don't work -


i have app localized in 3 languages , runs should. added settings.bundle app , can make changes in settings , works too. have serious problems localization. suggested in other forums created in finder 2 additional folders de.lproj , fr.lproj. them copied root.strings. root.plist simple version 1 group-item title , 1 multi value item 3 titles/values inside. titles/values doesn't need translated, both titles of items.

my root.strings have following content:

"language" = "sprache"; "selectedlanguage" = "ihre sprachwahl"; 

the "language" , "selectedlanguage" values of strings in root.plist wich shoulod replaced:

<plist version=1.0"> <dict> <key>preferencespecifiers</key>  <array>       <dict>            <key>title</key>            <string>language</string>            <key>type</key>            <string>psgroupspecifier</string>       </dict>       <dict>            <key>type</key>            <string>psmultivaluespecifier</string>            <key>title</key>            <string>selectedlanguage</string>            ....       </dict>   </array>  <key>stringstable</key>  <string>root</string> 

how can set localization work? there specific way create root.strings or "implement" them?

ok, seems simulator problem. on iphone works.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -