iphone - iOS Choosing localization for unsupported language -



iphone - iOS Choosing localization for unsupported language -

i have localizations "en" , "ru" languages, , if user select other language (fr,de...) need display russian localization variant. tried changing "localization native development region" in info.plist "ru" / "russian", displays english, when using unsupported language. there related question i'm assuming task impossible.

i grateful advice , insights on these issues.

i think solution posted here

localizing strings in ios: default (fallback) language?

it possible set non-english default too. if current device not set using language (eg. russian).

you can utilize [uiimage imagenamed:l(@"an_image")]

then in different localizable.strings file, set different values:

"an_image" = "some_image_default.png"; "an_image" = "some_image_ru.png"; "an_image" = "some_image_pt.png";

iphone ios localization l18n

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -