ios - Change Single Language of Xcode Project -
how change default language used project without doing localization? if want app in japanese or italian? enough use japanese or italian texts? how change language displayed on itunes it's in japanese or italian?
generally, resources put in main folder assumed in default language
, set in itunes connect when add or edit application. setting on application
page , if it's not correctly set after adding it, click edit
@ top of page able change drop-down menu.
if you're going localize @ all, you'll want make sure change localization native
language, you'll need change key in info.plist
corresponding localization native development region
(a.k.a. cfbundledevelopmentregion
in raw form) match language using raw files. value of tag should match original localization language directory base (so en
if have english lproj directory named en.lproj
). language used in event 1 of other localizations missing specific resource. recommendations these days point using 2-letter version of language (i.e. en
instead of english
, jp
instead of japanese
, etc) best-practice.
if you're building japanese-only app, put resources in top level. if you're going have japanese , other language, should put language-specific japanese resources in jp.lproj
, set cfbundledevelopmentregion
jp
. unlocalized resources (standard images, etc.) can stored in main application folder.
by way, same general rules in os x well, except wherever mentioned "main application folder" above, files within resources folder.
Comments
Post a Comment