From aa5b6848ac3eabada5d626eeff289e8945b456d7 Mon Sep 17 00:00:00 2001 From: Pierre Arnissolle Date: Sat, 4 Jun 2016 10:07:41 +0200 Subject: [PATCH] i18n --- chrome/_locales/en/messages.json | 12 +++++++++++- chrome/_locales/fr/messages.json | 11 +++++++++++ chrome/manifest.json | 6 +++--- 3 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 chrome/_locales/fr/messages.json diff --git a/chrome/_locales/en/messages.json b/chrome/_locales/en/messages.json index 9e26dfe..349433f 100755 --- a/chrome/_locales/en/messages.json +++ b/chrome/_locales/en/messages.json @@ -1 +1,11 @@ -{} \ No newline at end of file +{ + "appName": { + "message": "Helper for GitHub notifications in Gmail" + }, + "appShortName": { + "message": "helpergithubgmail" + }, + "appDescription": { + "message": "Add links to GitHub threads and shortcuts to your Gmail interface." + } +} diff --git a/chrome/_locales/fr/messages.json b/chrome/_locales/fr/messages.json new file mode 100644 index 0000000..bfd4f4a --- /dev/null +++ b/chrome/_locales/fr/messages.json @@ -0,0 +1,11 @@ +{ + "appName": { + "message": "Aide pour les notifications GitHub dans Gmail" + }, + "appShortName": { + "message": "helpergithubgmail" + }, + "appDescription": { + "message": "Ajoute des liens vers les threads GitHub et des raccourcis à votre interface Gmail." + } +} diff --git a/chrome/manifest.json b/chrome/manifest.json index 959a2c3..af14092 100755 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -1,9 +1,9 @@ { - "name": "Helper for GitHub notifications in Gmail", - "short_name": "helpergithubgmail", + "name": "__MSG_appName__", + "short_name": "__MSG_appShortName__", "version": "0.7.0", "manifest_version": 2, - "description": "Add links to GitHub threads and shortcuts to your Gmail interface.", + "description": "__MSG_appDescription__", "homepage_url": "http://github.com/muan/github-gmail", "icons": { "16": "images/icon16.png",