LoginSignup
2
1

More than 5 years have passed since last update.

【Titanium】アプリ名を多言語化対応する

Last updated at Posted at 2014-09-11

プロジェクトのフォルダ直下にi18n/[ロケール]/app.xmlを用意します
日本語と英語を対応する際の対応

プロジェクトルート
 ├── app
 ├── i18n
    ├── en
    │   └── app.xml
    └── ja
         └── app.xml 

英語

app.xml
<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <string name="appname">qiitaNews</string>
</resources>

日本語

app.xml
<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <string name="appname">キータニュース</string>
</resources>
2
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1