Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add i18n support #54

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion chrome/_locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
{}
{
"appName": {
"message": "Helper for GitHub notifications in Gmail"
},
"appShortName": {
"message": "helpergithubgmail"
},
"appDescription": {
"message": "Add links to GitHub threads and shortcuts to your Gmail interface."
}
}
11 changes: 11 additions & 0 deletions chrome/_locales/fr/messages.json
Original file line number Diff line number Diff line change
@@ -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."
}
}
6 changes: 3 additions & 3 deletions chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Helper for GitHub notifications in Gmail",
"short_name": "helpergithubgmail",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"version": "0.8.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",
Expand Down