Skip to content

Commit

Permalink
added send to tab/refresh groups translations in english, french, and…
Browse files Browse the repository at this point in the history
… russian
  • Loading branch information
projectdelphai committed May 28, 2019
1 parent 275ff01 commit 21f496a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,11 @@
},
"optionsStatisticsThumbnailCacheSize": {
"message": "Thumbnail Cache Size:"
},
"refreshGroups": {
"message": "Refresh Groups"
},
"sendTab": {
"message": "Send To Group"
}
}
6 changes: 6 additions & 0 deletions src/_locales/fr_FR/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,11 @@
},
"optionsStatisticsThumbnailCacheSize": {
"message": "Taille du cache des miniatures:"
},
"refreshGroups": {
"message": "Actualiser les groupes"
},
"sendTab": {
"message": "Envoyer au groupe"
}
}
6 changes: 6 additions & 0 deletions src/_locales/ru/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,11 @@
},
"optionsStatisticsThumbnailCacheSize": {
"message": "Размер кэша миниатюр:"
},
"refreshGroups": {
"message": "Переместить в группу"
},
"sendTab": {
"message": "Обновить список групп"
}
}
4 changes: 2 additions & 2 deletions src/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function addRefreshMenuItem() {
});
browser.menus.create({
id: "refresh-groups",
title: "Refresh Groups",
title: browser.i18n.getMessage('refreshGroups'),
parentId: "send-tab",
contexts: ["tab"]
});
Expand All @@ -36,7 +36,7 @@ async function createMenuList() {

browser.menus.create({
id: "send-tab",
title: "Send To Group",
title: browser.i18n.getMessage('sendTab'),
contexts: ["tab"]
});

Expand Down

0 comments on commit 21f496a

Please sign in to comment.