2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

App Storeのローカリゼーションを日本語のみにする

Last updated at Posted at 2025-01-12

image.png

デフォルトだと、添付の画像のようにENとなってしまいます。

Xcodeで日本語をサポートする設定を追加

  1. プロジェクト設定を開く:
    • Xcodeでプロジェクトを開き、左上のプロジェクト名をクリック。
  2. ローカリゼーション設定を開く:
    *「Info」タブを選択。
    *「Localizations」セクションで、+ ボタンをクリック。
    *「Japanese(日本語)」 を追加。

Info.plist ファイルで対応言語を確認

Info.plist に対応する言語を指定する必要があります。

  1. CFBundleLocalizationsキーを確認:
    • プロジェクト内の Info.plist を開きます。
    • CFBundleLocalizations キーがない場合は追加してください。
    • 以下のように、日本語(ja)を含めます:
    <key>CFBundleLocalizations</key>
    <array>
        <string>ja</string>
    </array>
    
2
1
0

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?