Created
January 17, 2016 08:59
-
-
Save lv7777/13f6d8d6db4fa52c7643 to your computer and use it in GitHub Desktop.
WebExtension l10n for blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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