Chrome App Store でアプリの複数言語をリリースしています。
Chrome アプリ ストーリーの言語バージョンを言語ごとにサブドメインにリンクするようにアプリをリリースしようとしています。
例:
//in manifest.json:
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
//in _locales/en/messages.json:
{
"appName": {
"message": "My App",
"description": "The title of the application, displayed in the web store."
},
"appDesc": {
"message": "This app does something awesome.",
"description":"The description of the application, displayed in the web store."
}
>>>> THIS LANGUAGE SHOULD USE URL - EN.MYDOMAIN.COM
}
//in _locales/de/messages.json:
{
"appName": {
"message": "My Application German"
},
"appDesc": {
"message": "This application does something brilliant in German."
}
>>>> THIS LANGUAGE SHOULD USE URL - DE.MYDOMAIN.COM
}
すべてのサポートに感謝します。言語ごとに正しいロケール サブドメイン URL にリダイレクトするように Chrome App Store を取得するにはどうすればよいですか?