Skip to content

Instantly share code, notes, and snippets.

@lv7777
Created January 17, 2016 08:59
Show Gist options
  • Save lv7777/13f6d8d6db4fa52c7643 to your computer and use it in GitHub Desktop.
Save lv7777/13f6d8d6db4fa52c7643 to your computer and use it in GitHub Desktop.
WebExtension l10n for blog
/*
manifest.json
MSGの後には好きな名前を入れる。
*/
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
/*
_locales/ja/message.json
オブジェクトのkeyはmanifest.jsonで入れた名前を書く。
その中の"message"にl10nした文字列を入れるとブラウザ側が自動的に判別する。
descriptionは翻訳者を助けるために存在し、ユーザーには表示されない。
*/
"extensionName": {
"message": "Notify link clicks i18n",
"description": "このアドオンの名前です。"
},
"extensionDescription": {
"message": "ユーザーがリンクをクリックした時に通知を表示します。",
"description": "アドオンの説明です。"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment