",
- "name" : "ignotifier",
- "version" : "0.2.6",
- "dependencies" :
- {
- "cli-color": "0.2",
- "commander": "1.1",
- "glob": "4.0.6"
- }
-}
diff --git a/src/chrome.manifest b/src/chrome.manifest
deleted file mode 100644
index 876e29ad..00000000
--- a/src/chrome.manifest
+++ /dev/null
@@ -1 +0,0 @@
-content ignotifier data/firefox/chrome/content/
diff --git a/src/data/firefox/chrome/content/options-opener.xul b/src/data/firefox/chrome/content/options-opener.xul
deleted file mode 100644
index 2e5da077..00000000
--- a/src/data/firefox/chrome/content/options-opener.xul
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
diff --git a/src/data/firefox/notification.html b/src/data/firefox/notification.html
deleted file mode 100644
index 418137d6..00000000
--- a/src/data/firefox/notification.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/src/data/firefox/overlay.css b/src/data/firefox/overlay.css
deleted file mode 100644
index e595fb31..00000000
--- a/src/data/firefox/overlay.css
+++ /dev/null
@@ -1,43 +0,0 @@
-toolbarpaletteitem[place="palette"] > __id__:after,
-__id__[cui-areatype="menu-panel"]:after {
- display: none;
-}
-__id__:after {
- position: relative;
- display: none;
- font-family: __font_family__;
- font-size: __font_size__;
- font-weight: 600;
- content: attr(value);
- background-color: __bg_color__;
- color: __color__;
- text-align: center;
- overflow: hidden;
- border-radius: 2px;
- height: __height__;
- line-height: __line_height__;
-}
-__id__[cui-areatype="toolbar"][length="1"]:after,
-__id__[cui-areatype="toolbar"][length="2"]:after,
-__id__[cui-areatype="toolbar"][length="3"]:after,
-__id__[cui-areatype="toolbar"][length="4"]:after {
- display: table;
-}
-__id__[length="1"]:after {
- width: __width_1__;
- margin: __margin_1__;
-}
-__id__[length="2"]:after {
- width: __width_2__;
- margin: __margin_2__;
-}
-__id__[length="3"]:after {
- width: __width_3__;
- margin: __margin_3__;
-}
-__id__[length="4"]:after {
- width: __width_4__;
- margin: __margin_4__;
-}
-
-__extra__
\ No newline at end of file
diff --git a/src/data/firefox/shared/connect.jsm b/src/data/firefox/shared/connect.jsm
deleted file mode 100644
index 9f34059c..00000000
--- a/src/data/firefox/shared/connect.jsm
+++ /dev/null
@@ -1,3 +0,0 @@
-var EXPORTED_SYMBOLS = ["remote"];
-
-var remote = {};
diff --git a/src/data/firefox/sound.html b/src/data/firefox/sound.html
deleted file mode 100644
index 84c753b3..00000000
--- a/src/data/firefox/sound.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/src/data/options/firefox/firefox.js b/src/data/options/firefox/firefox.js
deleted file mode 100644
index ca9560ff..00000000
--- a/src/data/options/firefox/firefox.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/* globals self */
-'use strict';
-
-var background = {
- send: function (id, data) {
- self.port.emit(id, data);
- },
- receive: function (id, callback) {
- self.port.on(id, callback);
- }
-};
-
-background.receive('show', function () {
- background.send('show');
-});
diff --git a/src/data/popup/body/email-firefox.css b/src/data/popup/body/email-firefox.css
deleted file mode 100644
index 5355b3f0..00000000
--- a/src/data/popup/body/email-firefox.css
+++ /dev/null
@@ -1,26 +0,0 @@
-body {
- margin: 0;
-}
-body, td {
- font-family: arial,sans-serif;
- font-size: 12px;
-}
-a {
- color: #1155CC;
- text-decoration: none;
-}
-
-body>table:first-child,
-body>hr,
-.maincontent>table:first-child,
-.maincontent>hr {
- display: none;
-}
-
-.message>tbody>tr:nth-child(1), .message>tbody>tr:nth-child(2) {
- display: none;
-}
-
-.message>tbody>tr>td>table>tbody>tr>td {
- padding: 0 6px;
-}
diff --git a/src/data/popup/firefox/firefox.js b/src/data/popup/firefox/firefox.js
deleted file mode 100644
index 9e199192..00000000
--- a/src/data/popup/firefox/firefox.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* globals self */
-'use strict';
-
-var background = {
- send: self.port.emit,
- receive: self.port.on
-};
-
-var manifest = {
- url: self.options.base,
- locale: (id) => self.options.locales[id]
-};
-
-background.receive('show', function () {
- background.send('show');
-});
diff --git a/src/lib/utils/gmail.js b/src/lib/utils/gmail.js
deleted file mode 100644
index 5b4ba572..00000000
--- a/src/lib/utils/gmail.js
+++ /dev/null
@@ -1,128 +0,0 @@
-var isFirefox = typeof require !== 'undefined';
-if (isFirefox) {
- app = require('../wrapper/firefox/app');
- config = require('../config');
- render = require('./render');
- gmail = exports;
-}
-else {
- var gmail = {};
-}
-
-gmail.body = (function () {
- var iks = {}, contents = {};
-
- function getIK (url) {
- if (iks[url]) {
- return app.Promise.resolve(iks[url]);
- }
- return new app.get(url).then(function (req) {
- var tmp = /var GLOBALS\=\[(?:([^\,]*)\,){10}/.exec(req.responseText || "");
- var ik = tmp && tmp.length > 1 ? tmp[1].replace(/[\"\']/g, "") : null;
- if (ik) {
- iks[url] = ik;
- return ik;
- }
- else {
- return Error("gmail.js -> body -> getIK -> Error at resolving user's static ID. Please switch back to the summary mode.");
- }
- });
- }
-
- return function (link) {
- link = link.replace("http://", "https://");
- if (contents[link]) {
- return app.Promise.resolve(contents[link]);
- }
-
- var url = /[^\?]*/.exec(link)[0] + "/";
- var thread = /message\_id\=([^\&]*)/.exec(link);
- if (!thread.length) {
- return app.Promise.reject(Error('gmail.js -> body -> Error at resolving thread. Please switch back to the summary mode.'));
- }
- return getIK(url).then(function (ik) {
- return new app.get(url + "?ui=2&ik=" + ik + "&view=pt&dsqt=1&search=all&msg=" + thread[1]).then(function (req) {
- var body = render[config.popup.display ? "getHTMLText" : "getPlainText"](req, url, link);
- contents[link] = body;
- return body;
- });
- });
- }
-})();
-
-/**
- * Send archive, mark as read, mark as unread, and trash commands to Gmail server
- * @param {String} link, xml.link address
- * @param {String} cmd: rd, ur, rc_%5Ei, tr, sp
- */
-gmail.action = (function () {
- function getAt_2 (url) {
- return new app.get(url + "h/" + Math.ceil(1000000 * Math.random())).then (function (req) {
- if (!req) {
- return Error("gmail.js -> action -> getAt_2 -> server response is empty.");
- }
- if(req.status == 200) {
- var tmp = /at\=([^\"\&]*)/.exec(req.responseText);
- return tmp && tmp.length > 1 ? tmp[1] : null;
- }
- else {
- return Error("gmail.js -> action -> getAt_2 -> got status of " + req.status);
- }
- });
- }
- function getAt (url) {
- return new app.get(url).then(function (req) {
- if (!req) {
- return Error("gmail.js -> action -> getAt -> server response is empty.");
- }
- if(req.status == 200) {
- var tmp = /GM_ACTION_TOKEN\=\"([^\"]*)\"/.exec(req.responseText);
- if (tmp && tmp.length) {
- return tmp[1];
- }
- else {
- return getAt_2(url);
- }
- }
- else {
- return Error("gmail.js -> action -> getAt -> got status of " + req.status);
- }
- });
- }
-
- function sendCmd (url, at, threads, cmd) {
- if (cmd == "rc_%5Ei" && config.email.doReadOnArchive) {
- sendCmd(url, at, threads, "rd");
- }
- var u = url + "?at=" + at + "&act=" + cmd.replace("rd-all", "rd");
- u += "&t=" + threads.join("&t=");
-
- return new app.get(u).then(function (req) {
- if (!req) {
- return Error("gmail.js -> action -> sendCmd -> server response is empty.");
- }
- if (req.status === 200) {
- return true;
- }
- return Error("gmail.js -> action -> sendCmd -> got status of " + req.status);
- });
- }
-
- return function (links, cmd) {
- links = typeof(links) === "string" ? [links] : links;
- var url = /[^\?]*/.exec(links[0])[0] + "/";
- return getAt(url).then(function (at) {
- var threads = [];
- links.forEach(function (link) {
- var thread = /message\_id\=([^\&]*)/.exec(link);
- if (thread && thread.length) {
- threads.push(thread[1]);
- }
- });
- if (threads.length) {
- return sendCmd(url, at, threads, cmd);
- }
- return app.Promise.reject(Error("gmail.js -> action -> Error at resolving thread."));
- });
- }
-})();
diff --git a/src/lib/wrapper/firefox/app.js b/src/lib/wrapper/firefox/app.js
deleted file mode 100644
index 1b8f7abe..00000000
--- a/src/lib/wrapper/firefox/app.js
+++ /dev/null
@@ -1,502 +0,0 @@
-var {Cc, Ci, Cu} = require('chrome'),
- {on, off, once, emit} = require('sdk/event/core'),
- buttons = require("sdk/ui/button/action"),
- tabs = require("sdk/tabs"),
- self = require("sdk/self"),
- loader = require('@loader/options'),
- array = require('sdk/util/array'),
- data = self.data,
- panel = require("sdk/panel"),
- l10n = require("sdk/l10n").get,
- timer = require("sdk/timers"),
- pageWorker = require("sdk/page-worker"),
- pageMod = require("sdk/page-mod"),
- sp = require("sdk/simple-prefs"),
- unload = require("sdk/system/unload"),
- events = require("sdk/system/events"),
- tabsUtils = require("sdk/tabs/utils"),
- prefs = sp.prefs,
- config = require("../../config"),
- tbExtra = require("./tbExtra"),
- windows = {
- utils: require('sdk/window/utils'),
- get active () { // Chrome window
- return this.utils.getMostRecentBrowserWindow();
- },
- get SDKWindow () { // SDK window
- return require("sdk/windows").browserWindows.activeWindow
- },
- }
-
-var exportsHelper = {};
-
-Cu.import("resource://gre/modules/Promise.jsm");
-Cu.import("resource://gre/modules/XPCOMUtils.jsm");
-
-// Event Emitter
-exports.on = on.bind(null, exports);
-exports.once = once.bind(null, exports);
-exports.emit = emit.bind(null, exports);
-exports.removeListener = function removeListener (type, listener) {
- off(exports, type, listener);
-};
-
-/* popup */
-var popup = panel.Panel({
- contentURL: data.url("./popup/index.html"),
- contentScriptFile: [
- data.url("./popup/firefox/firefox.js"),
- data.url("./popup/index.js")
- ],
- contentScriptOptions: {
- base: loader.prefixURI,
- locales: {
- 'popup_msg_1': l10n('popup_msg_1'),
- 'popup_msg_2': l10n('popup_msg_2'),
- 'popup_msg_3': l10n('popup_msg_3'),
- 'popup_msg_4': l10n('popup_msg_4'),
- 'popup_msg_5': l10n('popup_msg_5'),
- 'popup_msg_6': l10n('popup_msg_6'),
- 'popup_msg_7': l10n('popup_msg_7'),
- 'popup_msg_8': l10n('popup_msg_8'),
- 'popup_msg_9': l10n('popup_msg_9'),
- 'popup_msg_10': l10n('popup_msg_10'),
- 'popup_msg_11': l10n('popup_msg_11'),
- 'popup_msg_12': l10n('popup_msg_12'),
- 'popup_msg_13': l10n('popup_msg_13'),
- 'popup_msg_14': l10n('popup_msg_14'),
- 'popup_msg_15': l10n('popup_msg_15'),
- 'popup_msg_16': l10n('popup_msg_16'),
- 'popup_msg_17': l10n('popup_msg_17'),
- 'popup_msg_18': l10n('popup_msg_18'),
- 'popup_msg_19': l10n('popup_msg_19'),
- 'popup_msg_20': l10n('popup_msg_20'),
- 'popup_msg_21': l10n('popup_msg_21')
- }
- }
-});
-popup.on('show', () => popup.port.emit('show'));
-
-/* button */
-var button = buttons.ActionButton({
- id: self.name,
- label: l10n("toolbar_label"),
- icon: {
- "16": "./icons/blue/16.png",
- "32": "./icons/blue/32.png"
- },
- onClick: function() {
- if (button.onClick) {
- button.onClick();
- }
- }
-});
-tbExtra.setButton(button);
-
-/* option */
-var options = (function () {
- var workers = [], options_arr = [];
- pageMod.PageMod({
- include: data.url("options/index.html"),
- contentScriptFile: [
- data.url("options/firefox/firefox.js"),
- data.url("options/index.js")
- ],
- contentScriptWhen: "start",
- contentScriptOptions: {
- base: loader.prefixURI
- },
- onAttach: function(worker) {
- array.add(workers, worker);
- worker.on('pageshow', function() { array.add(workers, this); });
- worker.on('pagehide', function() { array.remove(workers, this); });
- worker.on('detach', function() { array.remove(workers, this); });
- // PageMod has no access to mozFullPath of input.
- worker.port.on("get-sound-fullpath", function () {
- var browserWindow = Cc["@mozilla.org/appshell/window-mediator;1"].
- getService(Ci.nsIWindowMediator).
- getMostRecentWindow("navigator:browser");
- var file = browserWindow.content.document.querySelector("input[type=file]").files[0].mozFullPath;
- config.notification.sound.custom.file = file;
- });
- options_arr.forEach(function (arr) {
- worker.port.on(arr[0], arr[1]);
- });
- }
- });
- return {
- send: function (id, data) {
- workers.forEach(function (worker) {
- worker.port.emit(id, data);
- });
- },
- receive: (id, callback) => options_arr.push([id, callback])
- }
-})();
-
-function get (url, headers, data, timeout) {
- headers = headers || {};
-
- var d = new Promise.defer();
- var req = Cc["@mozilla.org/xmlextras/xmlhttprequest;1"]
- .createInstance(Ci.nsIXMLHttpRequest);
- req.mozBackgroundRequest = true; //No authentication
- req.timeout = timeout;
- req.open('GET', url, true);
- for (var id in headers) {
- req.setRequestHeader(id, headers[id]);
- }
- req.onreadystatechange = function () {
- if (req.readyState == 4) {
- d.resolve(req);
- }
- };
- req.channel
- .QueryInterface(Ci.nsIHttpChannelInternal)
- .forceAllowThirdPartyCookie = true;
- if (data) {
- var arr = [];
- for(e in data) {
- arr.push(e + "=" + data[e]);
- }
- data = arr.join("&");
- }
- req.send(data ? data : "");
- return d.promise;
-}
-
-/* exports */
-exports.Promise = Promise;
-
-exports.button = {
- onCommand: function (c) {
- button.onClick = c;
- },
- onContext: function (c) {
- tbExtra.onContext(function (e, menupopup, menuitem, menuseparator, menu) {
- var types = {
- "menupopup": menupopup,
- "menuitem": menuitem,
- "menuseparator": menuseparator,
- "menu": menu
- }
- // remove old items
- while (menupopup.firstChild) {
- menupopup.removeChild(menupopup.firstChild);
- }
- var items = c();
- function appendChilds (root, arr) {
- arr.forEach(function (e) {
- var element = types[e.type].cloneNode(false);
- ["label", "tooltip", "value", "link"].filter(function (i) {
- return e[i];
- }).forEach(function (i) {
- return element.setAttribute(i, e[i]);
- });
- if (e.command) {
- element.addEventListener("command", function (event) {
- event.preventDefault();
- event.stopPropagation();
- e.command(event);
- }, false);
- }
- root.appendChild (element);
- if (e.childs && e.childs.length) appendChilds(element, e.childs);
- });
- }
- appendChilds(menupopup, items);
- });
- },
- onClick: function (c) {
- tbExtra.onClick(c);
- },
- set label (val) {
- button.label = config.ui.tooltip ? l10n('toolbar_label') : val;
- },
- set badge (val) {
- if (config.ui.badge) {
- tbExtra.setBadge(val);
- }
- },
- set color (val) {
- button.icon = {
- "16": "./icons/" + val + "/16.png",
- "32": "./icons/" + val + "/32.png"
- }
- }
-}
-
-exports.popup = {
- show: function () {
- popup.show({
- width: config.popup.width,
- height: config.popup.height,
- position: button
- });
- },
- hide: function () {
- popup.hide();
- },
- attach: function () {},
- detach: () => popup.hide(),
- send: function (id, data) {
- if (id === "resize") {
- popup.resize(data.width, data.height);
- }
- if (popup.isShowing) {
- popup.port.emit(id, data);
- }
- },
- receive: (id, callback) => popup.port.on(id, callback)
-}
-
-exports.timer = timer;
-
-exports.get = get;
-
-exports.parser = function () {
- return Cc["@mozilla.org/xmlextras/domparser;1"]
- .createInstance(Ci.nsIDOMParser);
-}
-
-exports.l10n = (id) => l10n(id);
-
-exports.windows = (function () {
- function toWindow (win) {
- return {
- obj: win,
- focus: function () {
- (win.focus || win.activate)();
- }
- }
- }
- function toTab (tab) {
- return {
- get url () {
- return tab.url
- },
- set url (val) {
- if (tab.url == val) {
- tab.reload();
- }
- else {
- tab.url = val;
- }
- },
- activate: () => tab.activate(),
- window: () => Promise.resolve(toWindow(toWindow(tab.window))),
- get active () {
- return tab == tabs.activeTab;
- },
- close: function () {
- tab.close();
- }
- }
- }
- return {
- active: function () {
- return Promise.resolve(toWindow(windows.active));
- },
- open: function (url, inBackground) {
- var popup = windows.active.open(url);
- if (inBackground) {
- popup.blur();
- window.focus();
- }
- },
- tabs: {
- list: function (currentWindow) {
- var tbs = currentWindow ? windows.SDKWindow.tabs : tabs;
- var temp = [];
- for each (var tab in tbs) {
- temp.push(tab);
- }
- return Promise.resolve(temp.map(toTab));
- },
- active: function () {
- return Promise.resolve(toTab(tabs.activeTab));
- },
- open: function (url, inBackground) {
- var gBrowser = windows.active.gBrowser;
- // use old blank tabs?
- (function () {
- if (config.tabs.open.relatedToCurrent || !config.tabs.open.useBlankTabs) {
- return Promise.resolve(null);
- }
- return exports.windows.tabs.list(true).then(function (tabs) {
- return tabs.reduce(function (p, c) {
- return p || (c.url === "about:newtab" || c.url === "about:blank" ? c : null);
- }, null);
- });
- })().then(function (t) {
- if (t) {
- t.url = url;
- if (!inBackground) {
- t.activate();
- }
- }
- else {
- t = gBrowser.addTab(url, {
- relatedToCurrent: config.tabs.open.relatedToCurrent
- });
- if (!inBackground) {
- gBrowser.selectedTab = t;
- }
- }
- });
- }
- }
- }
-})();
-
-exports.notify = (function () { // https://github.com/fwenzel/copy-shorturl/blob/master/lib/simple-notify.js
- var alertServ = Cc["@mozilla.org/alerts-service;1"].
- getService(Ci.nsIAlertsService);
-
- return function (text, title , callback) {
- title = title || l10n("gmail");
- if (config.notification.silent) return;
-
- try {
- alertServ.showAlertNotification(
- data.url("icons/notification/32.png"),
- title,
- text,
- callback ? true : false,
- "",
- function (subject, topic, data) {
- if (topic == "alertclickcallback") {
- timer.setTimeout(callback, 100);
- }
- }, "");
- }
- catch(e) {
- let browser = windows.active.gBrowser,
- notificationBox = browser.getNotificationBox();
-
- notification = notificationBox.appendNotification(
- text,
- 'jetpack-notification-box',
- data.url("icons/notification/16.png"),
- notificationBox.PRIORITY_INFO_MEDIUM,
- []
- );
- timer.setTimeout(function() {
- notification.close();
- }, config.notification.time * 1000);
- }
- }
-})();
-
-XPCOMUtils.defineLazyGetter(exportsHelper, "play", function () {
- Cu.import("resource://gre/modules/FileUtils.jsm");
- Cu.import("resource://gre/modules/Services.jsm");
-
- return {
- now: function () {
- if (config.notification.silent) return;
-
- var path = "../../data/sounds/" + config.notification.sound.original;
- if (config.notification.sound.type === 4 && config.notification.sound.custom.file) {
- var file = new FileUtils.File(config.notification.sound.custom.file);
- if (file.exists()) {
- path = Services.io.newFileURI(file).spec;
- let res = Services.io.getProtocolHandler('resource').QueryInterface(Ci.nsIResProtocolHandler);
- let name = 'igsound';
- res.setSubstitution(name, Services.io.newURI(path, null, null));
- path = 'resource://' + name;
- }
- }
- var worker = pageWorker.Page({
- contentScript:
- "var audio = new Audio('" + path + "');" +
- "audio.addEventListener('ended', function () {self.postMessage()});" +
- "audio.volume = " + (config.notification.sound.volume / 100) + ";" +
- "audio.play();",
- contentURL: data.url("firefox/sound.html"),
- onMessage: function() {
- worker.destroy();
- }
- });
- },
- reset: function () {}
- }
-});
-Object.defineProperty(exports, 'play', {
- get: function () {
- return exportsHelper.play;
- }
-});
-
-XPCOMUtils.defineLazyGetter(exportsHelper, "clipboard", function () {
- var clipboardHelper = Cc["@mozilla.org/widget/clipboardhelper;1"]
- .getService(Ci.nsIClipboardHelper);
- return function (str) {
- clipboardHelper.copyString(str);
- }
-});
-Object.defineProperty(exports, 'clipboard', {
- get: function () {
- return exportsHelper.clipboard;
- }
-});
-
-exports.version = function () {
- return self.version;
-}
-
-exports.startup = function (c) {
- if (self.loadReason == "startup" || self.loadReason == "install") {
- c();
- }
-}
-
-exports.unload = function (c) {
- unload.when(c);
-}
-
-exports.options = options;
-
-exports.storage = {
- read: function (id) {
- return (prefs[id] || prefs[id] + "" === "false" || !isNaN(prefs[id])) ? (prefs[id] + "") : null;
- },
- write: function (id, data) {
- data = data + "";
- if (data === "true" || data === "false") {
- prefs[id] = data === "true" ? true : false;
- }
- else if (parseInt(data) + '' === data) {
- prefs[id] = parseInt(data);
- }
- else {
- prefs[id] = data + "";
- }
- }
-}
-
-exports.manifest = {
- url: loader.prefixURI
-}
-
-exports.tray = require('./tray/wrapper').tray;
-
-/* updating badge when action is posted */
-function listener(event) {
- var channel = event.subject.QueryInterface(Ci.nsIHttpChannel);
- var url = channel.URI.spec;
- if (url.indexOf('https://mail.google.com/mail/u') === -1 || url.indexOf('act=') === -1) {
- return;
- }
- channel = channel.QueryInterface(Ci.nsIHttpChannel);
- exports.emit('update');
-}
-events.on('http-on-modify-request', listener);
-
-// connect
-exports.connect = function (actions) {
- var connect = {};
- Cu.import(data.url('firefox/shared/connect.jsm'), connect);
- connect.remote.actions = actions;
- Object.freeze(connect);
-}
diff --git a/src/lib/wrapper/firefox/tbExtra.js b/src/lib/wrapper/firefox/tbExtra.js
deleted file mode 100644
index d5544797..00000000
--- a/src/lib/wrapper/firefox/tbExtra.js
+++ /dev/null
@@ -1,128 +0,0 @@
-var {Cc, Ci, Cu, components} = require('chrome'),
- system = require("sdk/system"),
- self = require("sdk/self"),
- data = self.data,
- timer = require("sdk/timers"),
- base64 = require("sdk/base64"),
- unload = require("sdk/system/unload"),
- config = require("../../config"),
- userstyles = require("./userstyles"),
- is36 = Cc["@mozilla.org/xpcom/version-comparator;1"]
- .getService(Ci.nsIVersionComparator)
- .compare(system.version, "36.0") >= 0,
- id = ('action-button--' + self.id.toLowerCase()+ '-' + self.name)
- .replace(/[^a-z0-9_-]/g, '');
-
-const NS_XUL = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
-
-var button, badge = 0, onContext, onClick;
-
-Cu.import("resource:///modules/CustomizableUI.jsm");
-
-var listen = {
- onWidgetBeforeDOMChange: function(tbb, aNextNode, aContainer, aIsRemoval) {
- if (tbb.id !== id) return;
- // Set badge
- if (badge && !is36) {
- timer.setTimeout(exports.setBadge, 500, badge);
- }
- // Install onContext if it is not installed
- if (!tbb.isOnContextInstalled) {
- tbb.isOnContextInstalled = true;
-
- let doc = tbb.ownerDocument.defaultView.document;
- let menupopup = doc.createElementNS(NS_XUL, "menupopup");
- let menu = doc.createElementNS(NS_XUL, "menu");
- let menuitem = doc.createElementNS(NS_XUL, "menuitem");
- let menuseparator = doc.createElementNS(NS_XUL, "menuseparator");
-
- tbb.addEventListener("contextmenu", function (e) {
- if (onContext) {
- //Prevent Firefox context menu
- e.stopPropagation();
- e.preventDefault();
- onContext(e, menupopup, menuitem, menuseparator, menu);
- menupopup.openPopup(tbb , "after_end", 0, 0, false);
- }
- }, true);
- tbb.addEventListener("click", function (e) {
- if (onClick) {
- onClick(e);
- }
- }, true);
- tbb.appendChild(menupopup);
- }
- }
-}
-CustomizableUI.addListener(listen);
-unload.when(function () {
- CustomizableUI.removeListener(listen);
- CustomizableUI.destroyWidget(id);
-});
-
-exports.setBadge = (function () {
- if(is36) {
- return function (val) {
- badge = val;
- if (button) {
- button.badge = val ? val : "";
- button.badgeColor = config.ui.backgroundColor;
- }
- }
- }
- else {
- Cu.import("resource://gre/modules/FileUtils.jsm");
- Cu.import("resource://gre/modules/NetUtil.jsm");
-
- NetUtil.asyncFetch(data.url("./firefox/overlay.css"), function(inputStream, status) {
- if (!components.isSuccessCode(status)) {
- return;
- }
- var css = NetUtil.readInputStreamToString(inputStream, inputStream.available());
- css = css
- .replace(/__extra__/g, config.ui.extra) // need to be first
- .replace(/__id__/g, "#" + id)
- .replace(/__font_family__/g, config.ui.fontFamily)
- .replace(/__font_size__/g, config.ui.fontSize)
- .replace(/__height__/g, config.ui.height)
- .replace(/__line_height__/g, config.ui.lineHeight)
- .replace(/__margin_1__/g, config.ui.margin["1"])
- .replace(/__margin_2__/g, config.ui.margin["2"])
- .replace(/__margin_3__/g, config.ui.margin["3"])
- .replace(/__margin_4__/g, config.ui.margin["4"])
- .replace(/__width_1__/g, config.ui.width["1"])
- .replace(/__width_2__/g, config.ui.width["2"])
- .replace(/__width_3__/g, config.ui.width["3"])
- .replace(/__width_4__/g, config.ui.width["4"])
- .replace(/__bg_color__/g, config.ui.backgroundColor)
- .replace(/__color__/g, config.ui.color);
-
- userstyles.load("data:text/css;base64," + base64.encode(css));
- });
-
- return function (value) {
- badge = value;
- var bb = CustomizableUI.getWidget(id);
- if (!bb) return;
- if ((value + "").length > 4) {
- value = "9999";
- }
- bb.instances.forEach(function (i) {
- var tbb = i.anchor.ownerDocument.defaultView.document.getElementById(id);
- if (!tbb) return;
- tbb.setAttribute("value", value ? value : "");
- tbb.setAttribute("length", value ? (value + "").length : 0);
- });
- }
- }
-})();
-
-exports.onContext = function (c) {
- onContext = c;
-};
-exports.onClick = function (c) {
- onClick = c;
-};
-exports.setButton = function (b) {
- button = b;
-};
diff --git a/src/lib/wrapper/firefox/tray/darwin/tray.js b/src/lib/wrapper/firefox/tray/darwin/tray.js
deleted file mode 100644
index 038dbf75..00000000
--- a/src/lib/wrapper/firefox/tray/darwin/tray.js
+++ /dev/null
@@ -1,19 +0,0 @@
-var {Cc, Ci} = require('chrome'),
- unload = require("sdk/system/unload"),
- config = require('../../../../config');
-
-var dock = Cc["@mozilla.org/widget/macdocksupport;1"]
- .getService(Ci.nsIMacDockSupport);
-
-exports.set = function (badge, msg) {
- if(!config.tray.show) return;
- dock.badgeText = badge;
-}
-exports.remove = function () {
- dock.badgeText = "";
-}
-exports.callback = function () { }
-
-unload.when(function () {
- exports.remove();
-});
\ No newline at end of file
diff --git a/src/lib/wrapper/firefox/tray/winnt/tray.js b/src/lib/wrapper/firefox/tray/winnt/tray.js
deleted file mode 100644
index 6fc21eb3..00000000
--- a/src/lib/wrapper/firefox/tray/winnt/tray.js
+++ /dev/null
@@ -1,245 +0,0 @@
-'use strict';
-
-/* References
- * https://github.com/foudfou/FireTray/tree/winnt/src/modules/winnt
- * http://www.codeproject.com/Articles/4768/Basic-use-of-Shell_NotifyIcon-in-Win32
- */
-
-var {Cc, Ci, Cu} = require('chrome'),
- pageWorker = require('sdk/page-worker'),
- self = require('sdk/self'),
- data = self.data,
- unload = require('sdk/system/unload'),
- oscpu = Cc['@mozilla.org/network/protocol;1?name=http']
- .getService(Ci.nsIHttpProtocolHandler).oscpu,
- version = parseInt((/\d\.\d/.exec(oscpu) || ['0'])[0].replace('.', '')), // Windows Version
- config = require('../../../../config');
-
-var exportsHelper = {};
-
-var {XPCOMUtils} = Cu.import('resource://gre/modules/XPCOMUtils.jsm');
-var {ctypes} = Cu.import('resource://gre/modules/ctypes.jsm');
-Cu.import('resource://gre/modules/Promise.jsm');
-
-if (self.loadReason === 'install') {
- if (version >= 60) { //Vista
- config.tray.doTrayCallback = true;
- }
-}
-
-// private variables
-var BOOL = ctypes.bool,
- BYTE = ctypes.unsigned_char,
- WORD = ctypes.unsigned_short,
- DWORD = ctypes.unsigned_long,
- UINT = ctypes.unsigned_int,
- HANDLE = ctypes.voidptr_t,
- HWND = HANDLE,
- HICON = HANDLE,
- HINSTANCE = HANDLE,
- TCHAR = ctypes.jschar,
- LPVOID = ctypes.voidptr_t,
- INT = ctypes.int,
- is64bit = ctypes.size_t.size === 8,
- LONG_PTR = is64bit ? ctypes.int64_t : ctypes.long,
- LRESULT = LONG_PTR,
- UINT_PTR = is64bit ? ctypes.uint64_t : ctypes.unsigned_int,
- WPARAM = UINT_PTR,
- LPARAM = LONG_PTR;
-// private StructTypes
-var GUID = ctypes.StructType('GUID', [
- {'Data1': ctypes.unsigned_long},
- {'Data2': ctypes.unsigned_short},
- {'Data3': ctypes.unsigned_short},
- {'Data4': ctypes.char.array(8)}
-]),
-NOTIFYICONDATAW = ctypes.StructType('NOTIFYICONDATAW', [
- {'cbSize': DWORD},
- {'hWnd': HWND},
- {'uID': UINT},
- {'uFlags': UINT},
- {'uCallbackMessage': UINT},
- {'hIcon': HICON},
- {'szTip': ctypes.ArrayType(TCHAR, 128)},
- {'dwState': DWORD},
- {'dwStateMask': DWORD},
- {'szInfo': ctypes.ArrayType(TCHAR, 256)},
- {'uTimeoutOrVersion': UINT}, // union
- {'szInfoTitle': ctypes.ArrayType(TCHAR, 64)},
- {'dwInfoFlags': DWORD},
- {'guidItem': GUID},
- {'hBalloonIcon': HICON}
-]);
-// private FunctionTypes
-var WNDPROC = ctypes.FunctionType(ctypes.stdcall_abi, LRESULT, [HWND, UINT, WPARAM, LPARAM]).ptr;
-// libraries
-var user32 = ctypes.open('user32.dll'),
- shell32 = ctypes.open('shell32.dll');
-XPCOMUtils.defineLazyGetter(user32, 'DefWindowProcW', function() {
- return user32.declare('DefWindowProcW', ctypes.winapi_abi, LRESULT, HWND, UINT, WPARAM, LPARAM);
-});
-XPCOMUtils.defineLazyGetter(user32, 'SetWindowLongPtrW', function() {
- return user32.declare(is64bit ? 'SetWindowLongPtrW' : 'SetWindowLongW', ctypes.winapi_abi, LONG_PTR , HWND, INT, LONG_PTR);
-});
-XPCOMUtils.defineLazyGetter(user32, 'CreateIcon', function() {
- return user32.declare('CreateIcon', ctypes.winapi_abi, HICON, HINSTANCE, INT , INT, BYTE, BYTE, LPVOID, LPVOID);
-});
-XPCOMUtils.defineLazyGetter(shell32, 'Shell_NotifyIconW', function() {
- return shell32.declare('Shell_NotifyIconW', ctypes.winapi_abi, BOOL, DWORD, NOTIFYICONDATAW.ptr);
-});
-
-// notification icon
-function icon (badge) {
- var d = new Promise.defer();
- function getIcon () {
- var canvas = document.getElementById('canvas');
- var context = canvas.getContext('2d');
- var img = new Image();
- img.onload = function () {
- var xText, xRect;
- switch ('badge'.length) {
- case 1:
- [xText, xRect] = [10, 8];
- break;
- case 2:
- [xText, xRect] = [5, 3];
- break;
- default:
- [xText, xRect] = [1, 0];
- break;
- }
- context.drawImage(img, 0, badge > 0 ? 1 : 3);
- if (badge > 0) {
- context.fillStyle = '#3366CC';
- context.fillRect (xRect, 6, 16, 16);
- context.fillStyle = '#fff';
- context.font = '9px Arial';
- context.fillText('badge'.length <= 3 ? 'badge' : '>1K', xText, 14);
- }
- var arr = context.getImageData(0, 0, 16, 16).data, tmp = [];
- for (var i = 0, n = arr.length; i < n; i += 4) { //r,g,b,alpha
- [tmp[i + 1], tmp[i + 3]] = [arr[i + 1], arr[i + 3]];
- [tmp[i + 2], tmp[i]] = [arr[i], arr[i + 2]];
- }
- self.postMessage(tmp);
- };
- img.src = 'source';
- }
- var color = badge > 0 ? 'red' : badge === -1 ? 'blue' : 'gray';
- if (config.ui && config.ui.pattern === 1) {
- switch (color) {
- case 'blue':
- color = 'gray';
- break;
- case 'gray':
- color = 'blue';
- break;
- }
- }
- var worker = pageWorker.Page({
- contentURL: data.url('firefox/notification.html'),
- contentScript: ('(' + getIcon)
- .replace(/source/g, data.url('icons/tray/' + color + '.png'))
- .replace(/badge/g, badge) +
- ')();',
- onMessage: function (arr) {
- d.resolve(arr);
- worker.destroy();
- }
- });
- return d.promise;
-}
-
-// hWnd
-function getHWND () {
- // Hidden Window
- var hiddenWindow = Cc['@mozilla.org/appshell/appShellService;1']
- .getService(Ci.nsIAppShellService).hiddenDOMWindow;
- // Getting base Window
- var baseWindow = hiddenWindow.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIWebNavigation)
- .QueryInterface(Ci.nsIDocShellTreeItem)
- .treeOwner
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .nsIBaseWindow;
- return ctypes.cast(ctypes.uintptr_t(baseWindow.nativeHandle), ctypes.voidptr_t);
-}
-var hWnd = getHWND();
-
-// preparing notification
-var nid = new NOTIFYICONDATAW;
-nid.hWnd = hWnd;
-nid.uID = config.tray ? config.tray.id.unique : 24342;
-nid.uCallbackMessage = config.tray ? config.tray.id.msg : 665;
-nid.uTimeoutAndVersion = (config.tray ? config.tray.time.notification : 3) * 1000;
-nid.uFlags = 0x00000001 /* NIF_MESSAGE */ | 0x00000002 /* NIF_ICON */ | 0x00000004 /* NIF_TIP */ /* | 0x000000010 NIF_INFO */;
-nid.dwInfoFlags = 0x00000001 /* NIIF_INFO */;
-//nid.szInfoTitle = _('gmail'); // 'Balloon Tooltip' title
-nid.cbSize = (function () {
- function FIELD_OFFSET(aType, aField, aPos) {
- var addr2nb = (a) => ctypes.cast(a, ctypes.unsigned_long).value,
- s = new aType(),
- addr_field = typeof(aPos) === 'undefined' ? addr2nb(s.addressOfField(aField)) : addr2nb(s[aField].addressOfElement(aPos));
- return addr_field - addr2nb(s.address());
- }
- if (version >= 60) { //Vista
- return NOTIFYICONDATAW.size;
- }
- if (version >= 51) { //XP
- return FIELD_OFFSET(NOTIFYICONDATAW, 'hBalloonIcon');
- }
- if (version >= 50) { //2K
- return FIELD_OFFSET(NOTIFYICONDATAW, 'guidItem');
- }
- return FIELD_OFFSET(NOTIFYICONDATAW, 'szTip', 64);
-})();
-// callback listener
-var callback;
-var proxyWndProc = WNDPROC (function (hWnd, uMsg, wParam, lParam) {
- if (config.tray && uMsg === config.tray.id.msg && (+lParam === 513 || +lParam === 517)) {
- if (callback) {
- callback();
- }
- }
- return user32.DefWindowProcW(hWnd, uMsg, wParam, lParam);
-});
-
-var oldOffset;
-if (config.tray && config.tray.doTrayCallback) {
- oldOffset = user32.SetWindowLongPtrW(hWnd, -4 /* GWLP_WNDPROC */, ctypes.cast(proxyWndProc, LONG_PTR));
-}
-
-var isInstalled = false;
-exports.set = function (badge, msg) {
- if (!config.tray.show) {
- return;
- }
- //nid.szInfo = msg;
- nid.szTip = msg.substring(0, 63); // maximum of 64 characters
- icon(badge).then(function (arr) {
- var uint8Array = new Uint8Array(arr);
- nid.hIcon = user32.CreateIcon(hWnd, 16, 16, 1, 32, uint8Array, uint8Array);
- shell32.Shell_NotifyIconW(
- isInstalled ? 0x00000001 /* NIM_MODIFY */ : 0x00000000 /* NIM_ADD */,
- nid.address()
- );
- isInstalled = true;
- });
-};
-exports.remove = function () {
- if (!isInstalled) {
- return;
- }
- shell32.Shell_NotifyIconW(0x00000002 /* NIM_DELETE */, nid.address());
- isInstalled = false;
-};
-exports.callback = function (c) {
- callback = c;
-};
-
-unload.when(function () {
- exports.remove();
- if (oldOffset) {
- user32.SetWindowLongPtrW(hWnd, -4, oldOffset);
- }
-});
diff --git a/src/lib/wrapper/firefox/tray/wrapper.js b/src/lib/wrapper/firefox/tray/wrapper.js
deleted file mode 100644
index a247e6e4..00000000
--- a/src/lib/wrapper/firefox/tray/wrapper.js
+++ /dev/null
@@ -1,19 +0,0 @@
-var {Cc, Ci, Cu} = require('chrome'),
- os = require("sdk/system").platform,
- config = require('../../../config');
-
-var tray = (function () {
- if (os === "winnt") {
- return require('./winnt/tray');
- }
- if (os === "darwin") {
- return require('./darwin/tray');
- }
- return {
- set: function () {},
- remove: function () {},
- callback: function () {}
- };
-})();
-
-exports.tray = tray;
\ No newline at end of file
diff --git a/src/lib/wrapper/firefox/userstyles.js b/src/lib/wrapper/firefox/userstyles.js
deleted file mode 100644
index 19cb8915..00000000
--- a/src/lib/wrapper/firefox/userstyles.js
+++ /dev/null
@@ -1,55 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-"use strict";
-
-const { Cc, Ci } = require("chrome");
-const unload = require("sdk/system/unload").when;
-
-const sss = Cc["@mozilla.org/content/style-sheet-service;1"]
- .getService(Ci.nsIStyleSheetService);
-
-function getURI(aURL) Cc["@mozilla.org/network/io-service;1"]
- .getService(Ci.nsIIOService).newURI(aURL, null, null);
-
-function setOptions(url, options) {
- let newOptions = {};
- options = options || {};
-
- newOptions.uri = getURI(url);
- newOptions.type = (options.type || 'user').toLowerCase();
- newOptions.type = (newOptions.type == 'agent') ? sss.AGENT_SHEET : sss.USER_SHEET;
-
- return newOptions;
-};
-
-/**
- * Load various packaged styles for the add-on and undo on unload
- *
- * @usage load(aURL): Load specified style
- * @param [string] aURL: Style file to load
- * @param [object] options:
- */
-const loadSS = exports.load = function loadSS(url, options) {
- let { uri, type } = setOptions(url, options);
-
- // load the stylesheet
- sss.loadAndRegisterSheet(uri, type);
-
- // unload the stylesheet on unload
- unload(unregisterSS.bind(null, url, options));
-};
-
-const registeredSS = exports.registered = function registeredSS(url, options) {
- let { uri, type } = setOptions(url, options);
-
- // check that the stylesheet is registered
- return !!sss.sheetRegistered(uri, type);
-};
-
-const unregisterSS = exports.unload = function unregisterSS(url, options) {
- let { uri, type } = setOptions(url, options);
-
- // unregister the stylesheet
- sss.unregisterSheet(uri, type);
-};
diff --git a/src/locale/el.properties b/src/locale/el.properties
deleted file mode 100644
index fdd64823..00000000
--- a/src/locale/el.properties
+++ /dev/null
@@ -1,124 +0,0 @@
-label_9=Για 5 ώρες
-options_notifications_19=Windows email ειδοποίηση
-options_notifications_17=Checker Plus ειδοποίηση καμπάνας
-options_notifications_13=Ανοιγμα της γραμμής εργαλείων όταν κάνετε κλικ στο εικονίδιο ειδοποίησης στην γραμμή εργασιών (μόνο για Windows, beta)
-options_timings_l7=Να μην γίνεται έλεγχος για νέα email κατά την εκκίνηση για (σε δευτερόλεπτα):
-label_4=Για 5 λεπτά
-options_timings_l3=Υπενθύμιση για όλα τα μη αναγνωσμένα email κάθε (σε λεπτά):
-options_gmail_1=Πρωτοβάθμιος λογαριασμός (/mail/u/0/)
-options_gmail_10=Λάβετε ειδοποιήσεις για τις εξής ετικέτες και τους λογαριασμούς:
-options_notifications_1=Κοινοποίηση επιφάνειας εργασίας οθόνης για νέα email
-options_notifications_9=Αναπαραγωγή ήχου ειδοποίησης για νέα email
-label_6=Για 30 λεπτά
-options_misc_8=Επαναφορά όλων των ρυθμίσεων στις εργοστασιακές ρυθμίσεις
-options_timings_l4=Ρυθμίστε την τιμή στο μηδέν για μη-περιοδικές υπενθυμίσεις.
-options_tab_6=Άνοιγμα λογαριασμού Gmail σε νέο παράθυρο
-options_notifications_25=Στο safari πιθανότατα οι προεπιλεγμένες ειδοποιήσεις ήχου να μην παίζουν σωστά, αν ναι, χρησιμοποιήστε ένα αρχείο ήχου ως κοινοποίηση.
-options_toolbar_15=Μέσαιο κλικ στην μπάρα εργαλείων για
-options_toolbar_10=Το ελάχιστο ύψος είναι 500px.
-options_notifications_26=Εμφανιση πάντα κοινοποίησης στον δίσκο (μόνο για Windows)
-label_3=Απενεργοποίηση όλων των ειδοποιήσεων
-options_empty=δεν ορίζεται
-options_notifications_3=Η επιλογή αυτή δεν μπορεί να λειτουργήσει με βάση το λειτουργικό σας σύστημα.
-options_timings=Χρονοδιάγραμμα
-options_gmail_5=Τεταρτογενής λογαριασμός (/mail/u/3/)
-label_5=Για 15 λεπτά
-options_misc_9=Red color for "No Unread" and gray color for "Disconnected"
-options_notifications_27=Κοινοποίηση στον δίσκος θα εμφανίζεται ακόμη και αν δεν υπάρχει μη αναγνωσμένο μήνυμα.
-options_misc_1=Ταξινόμηση λογαριασμών αλφαβητικά
-tooltip_1=Αριστερό κλικ: Ανοίξτε το Gmail ή το παράθυρο προεπισκόπησης αλληλογραφίας
-notification=Από: [author_email] [break] Τίτλος: [τίτλος] [break] Περίληψη: [περίληψη]
-options_tab=Άνοιγμα καρτέλας:
-log_into_your_account=Παρακαλούμε συνδεθείτε στον λογαριασμό σας
-label_10=Ενεργοποίηση ειδοποιήσεων
-options_notifications_23=Ένταση ήχου κοινοποιήσεως
-options_timings_l2=Ελάχιστο χρονικό διάστημα είναι 10 δευτερόλεπτα.
-options_toolbar_11=Συντομεύσεις πληκτρολογίου υποστήριξης στον πίνακα εργαλείων
-options_gmail_9=Μερικές δημοφιλείς ετικέτες: "Εισερχόμενα", "σημαντικό", "^ smartlabel προσωπικά", "^ smartlabel ενημερωτικό δελτίο", "^ κοινοποίηση smartlabel", και "^ smartlabel_group"
-options_misc_13=By default, the notifier updates tooltip text of the toolbar button with login info. By unchecking this option, the tooltip text remains the default value.
-options_misc_6=Να μην εμφανίζεται ειδοποίηση στην επιφάνεια εργασίας για να προειδοποιήσει ότι η ιστοσελίδα του Gmail είναι ήδη ανοικτή
-options_notifications_4=Μορφή κοινοποίησης
-label_2=Ρυθμίσεις
-options_toolbar_14=Αν προτιμάτε μονο το κείμενο σε λειτουργία πλήρους περιεχομένου, αποεπιλέξτε το πλαίσιο.
-options_notifications_18=Checker Plus Ειδοποίηση κωδώνισματος
-options_tab_5=Άνοιγμα λογαριασμού Gmail σε μια καρτέλα στον φόντο
-label_7=Για 1 ώρα
-msg_2=Ο σύνδεσμος έχει αντιγραφεί στο πρόχειρο.
-options_title=Επιλογές - Gmail ™ Notifier
-gmail=Gmail™ Notifier
-options_toolbar_8=Το ελάχιστο πλάτος είναι 500px.
-options_notifications_16=Gmail Notifier προεπιλεγμένη ειδοποίηση
-options_misc_14=Do not show the exact badge number when the number of unread emails is greater than 999
-options_notifications_14=Αυτό το χαρακτηριστικό είναι ιδιαίτερα πειραματικό και θα μπορούσε να κάνει τον Firefox browser ασταθή. [Επανεκκίνηση απαιτείται].
-options_gmail_3=Δευτερεύον λογαριασμός (/mail/u/1/)
-options_notifications_11=Εμφανιση "Ειδοποιήσεις της γραμμής εργασιών του Windows" ή "Mac OS Dock κοινοποίησης"
-options_notifications_2=Εμφάνιση κοινοποίησης επιφάνειας εργασίας για (σε δευτερόλεπτα):
-log_in_to_your_account=Παρακαλούμε συνδεθείτε στον Gmail λογαριασμό σας
-options_notifications_15=Ηχητική ειδοποίηση
-options_notifications_21=Προσδιορισμενος ηχος απο τον χρηστη
-options_toolbar_9=Το υψος της γραμμής εργαλείων σε κατάσταση πλήρους περιεχομένου είναι (σε εικονοστοιχεία):
-options_toolbar_1=Γραμμή εργαλείων συμπεριφορά κουμπιού
-unknown=άγνωστο
-options_notifications_8=Για να μην έχουν καμία περικοπή τα αποσιωπητικά, χρησιμοποιήστε ένα μεγάλο αριθμό εδώ.
-options_donation=Κάντε μια δωρεά
-msg_3=Το επιλεγμένο κείμενο εχει αντιγράφει στο πρόχειρο.
-options_misc_7=Εμφάνιση σελίδας υποδοχής για αναβάθμιση
-options_gmail=Gmail:
-label_1=Ανανέωση
-options_notifications_5=Διαθέσιμες μεταβλητές:
-options_notifications_24=Ένταση είναι ένας αριθμός μεταξύ 0 έως 100, όπου 100 είναι η υψηλότερη ένταση (προεπιλογή).
-options_notifications_10=Σημείωση για τους χρήστες του Mac. Από το Firefox 28.0, όλες οι ειδοποιήσεις στην επιφάνεια εργασίας διεκπεραιώνονται από το Mac Κέντρο Ειδοποίησης που προκαλεί ένα επιπλέον ήχο ειδοποίησης. Θα πρέπει είτε να απενεργοποιήσετε αυτο τον ήχο ειδοποίησης ή αυτόν που παράγεται από το Κέντρο Ειδοποίησης.
-options_misc_2=Ο τύπος προεπιλεγμένης σειράς που έχει συνδεθεί
-options_toolbar_2=Πάντα ανοικτό παράθυρο προεπισκόπησης email
-popup_settings=Ρυθμίσεις
-options_gmail_4=Τριτοβάθμιος λογαριασμός (/mail/u/2/)
-options_toolbar_5=Εμφάνιση μόνο συνοπτικά
-options_notifications_12=Το Taskbar notifications δεν υποστηρίζεται απο το λειτουργικό σύστημα Linux αυτή τη στιγμή.
-msg_1=Η καρτέλα είναι ήδη ανοικτή. Κάντε κλικ στο κουμπί της γραμμής εργαλείων για να ανοίξετε το Gmail σε μια νέα καρτέλα, ή να μεταβείτε σε μια υπάρχουσα Gmail καρτέλα.
-options_misc_5=Μπλε χρώμα για "Μη Αναγνωσμένα" και γκρι χρώμα για "Αποσυνδεση"
-options_timings_l8=Ρυθμίστε την τιμή στο μηδέν για κανένα έλεγχο e-mail μέχρι την πρώτη χειροκίνητη ανανέωση [Δεν διατίθεται στο Safari].
-tooltip_3=Δεξί κλικ: Επιλογές Λογαριασμού
-options_notifications=Ειδοποιήσεις:
-options_timings_l6=Πυρκαγιές με μη μηδενική τιμή, κοινοποίηση και ηχητική ειδοποίηση τόσο στην επιφάνεια εργασίας (παρόμοιο με νέα άφιξη email) για πάντα, αν έχετε μη αναγνωσμένα email(s).
-options_notifications_22=Αν το πρόγραμμα περιήγησης σας δεν παίζει τον ήχο κοινοποίησης, προσπαθήστε να τον μετατρέψετε σε μια απλή μορφή WAV χρησιμοποιώντας ένα online εργαλείο μετατροπής.
-options_tab_1=Αναζήτηση για έναν ανοικτό λογαριασμό Gmail μόνο στο ενεργό παράθυρο
-options_timings_l1=Έλεγχος για νέα e-mail κάθε (σε δευτερόλεπτα):
-options_toolbar_4=Λειτουργία γραμμής εργαλείων
-toolbar_label=Gmail™ Notifier
-options_misc_3=Το σχέδιο χρώματος γραμμής εργαλείων είναι
-options_gmail_12=Ξεχωριστές τροφοδοσίες με "," (κόμμα). Δείγμα τροφοδοσίας: https://mail.google.com/mail/u/0/feed/atom/inbox
-options_toolbar_12=!: Αναφορά ως ανεπιθύμητο, #: Απορρίμματα, και: Αρχείο, Shift + I: Επισήμανση ως διαβάσμενο
-options_px=px
-options_misc_11=By setting this preference to zero, you will receive neither desktop nor sound notifications; however, you will still get badge notification.
-options_notifications_20=Ο ήχος ορίζεται από τον χρήστη
-and=και
-options_tab_7=Πάντα να χρησιμοποιείτε κενό καρτελών αντί να ανοίγει μια νέα καρτέλα, όταν είναι ανοικτή στην καρτέλα ενεργοποιείται
-options_toolbar_3=Άνοιγμα λογαριασμού Gmail αν μόνο ένας λογαριασμός είναι συνδεδεμένος
-options_gmail_7=Σκηνικός λογαριασμός (/mail/u/5/)
-options_toolbar=Γραμμη Εργαλειων:
-options_notifications_6=Περικόψτε ειδοποιήσεις περισσότερο από
-tooltip_2=Μεσαίο (ή Ctrl + Left) κλικ: Ανανέωση όλων των λογαριασμών
-options_tab_3=Άνοιγμα νέου λογαριασμού Gmail δίπλα στην ενεργή καρτέλα
-options_gmail_8=Σήμανση ως αναγνωσμένο μήνυμα κατά την αρχειοθέτηση
-options_toolbar_17=Άνοιγμα του κύριου Gmail λογαριασμου
-options_notifications_7=χαρακτήρες για [τίτλος] και [περίληψη] πεδία.
-options_misc_10=Only fire desktop and sound notifications when email has arrived in less than (in minutes):
-label_8=Για 2 ώρες
-msg_4=Σημείωση: Για να λειτουργήσει σωστά το notifier, θα πρέπει να είστε συνδεδεμένοι στον Google λογαριασμό σας.
-options_toolbar_6=Εμφάνιση πλήρους περιεχομένου
-options_gmail_11=Προσαρμοσμένες τροφοδοσίες:
-options_tab_2=Μην ψάξετε σε άλλα παράθυρα του προγράμματος περιήγησης για ανοικτούς λογαριασμούς Gmail. Εάν το Gmail δεν είναι ανοικτό στο ενεργό παράθυρο, ανοίξτε μια νέα καρτέλα.
-label_11=Συντάξτε ένα e-mail
-options_toolbar_7=Πλάτος γραμμής εργαλείων του πίνακα σε κατάσταση πλήρους περιεχομένου (σε εικονοστοιχεία):
-options_timings_l5=Ελάχιστη περίοδος είναι 5 λεπτά.
-options_misc=Διάφορα:
-options_gmail_2=Ξεχωριστές ετικέτες με "," (κόμμα).
-options_misc_4=Γκρι χρώμα για "Μη Αναγνωσμένα" και μπλε χρώμα για "Αποσυνδεση"
-options_toolbar_13=Απόδοση e-mail ως HTML σε λειτουργία πλήρους περιεχομένου
-options_toolbar_16=Ανανέωση όλων των λογαριασμών
-options_gmail_6=Πενταδικός λογαριασμός (/mail/u/4/)
-options_inshort=Πολλαπλές ετικέτες και λογαριασμοι κοινοποιών για το Google Mail (Gmail).
-options_misc_12=Do not include login details in the tooltip text
-options_tab_4=Άνοιγμα λογαριασμού Gmail στην ενεργή καρτέλα
-label_12=Άνοιγμα αρχικής σελίδας
-description=Πολλαπλές ετικέτες και κοινωποιηση λογαριασμού για το Google Mail (Gmail)
diff --git a/src/package.json b/src/package.json
deleted file mode 100644
index 18cb5166..00000000
--- a/src/package.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "fullName": "Gmail Notifier (restartless)",
- "name": "ignotifier",
- "description": "Multiple label and account notifier for Google Mail (Gmail)",
- "id": "jid0-GjwrPchS3Ugt7xydvqVK4DQk8Ls@jetpack",
- "license": "mozilla public license 1.1",
- "version": "0.5.10",
- "author": "InBasic",
- "contributors": [
- "CaTz",
- "ecaron"
- ],
- "lib": "lib",
- "main": "./lib/common.js",
- "url": "http://firefox.add0n.com/gmail-notifier.html",
- "icon": "data/icons/red/32.png",
- "icon64": "data/icons/red/64.png",
- "permissions": {
- "private-browsing": true,
- "unsafe-content-script": true,
- "cross-domain-content": ["file:///"]
- }
-}
-
-
-
diff --git a/builds/packed/icon.png b/v1/builds/packed/icon.png
similarity index 100%
rename from builds/packed/icon.png
rename to v1/builds/packed/icon.png
diff --git a/builds/packed/icon64.png b/v1/builds/packed/icon64.png
similarity index 100%
rename from builds/packed/icon64.png
rename to v1/builds/packed/icon64.png
diff --git a/v1/builds/unpacked/chrome/_locales/bg/messages.json b/v1/builds/unpacked/chrome/_locales/bg/messages.json
new file mode 100644
index 00000000..e1744ae3
--- /dev/null
+++ b/v1/builds/unpacked/chrome/_locales/bg/messages.json
@@ -0,0 +1,690 @@
+{
+ "label_9": {
+ "message": "За 5 часа",
+ "description": ""
+ },
+ "options_notifications_19": {
+ "message": "Оповестяване за поща на Уиндоус",
+ "description": ""
+ },
+ "options_notifications_17": {
+ "message": "Камбана",
+ "description": ""
+ },
+ "options_notifications_13": {
+ "message": "Отваряне на панела при щракване върху иконката в лентата на задачите (Само за Уиндоус, в бета)",
+ "description": ""
+ },
+ "options_notifications_30": {
+ "message": "Обединяване на всички едновременни известия на работния плот в едно известие",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Отваряне на настройките",
+ "description": ""
+ },
+ "options_timings_l7": {
+ "message": "Без проверка за нови писма при стартиране (в секунди):",
+ "description": ""
+ },
+ "label_4": {
+ "message": "За 5 минути",
+ "description": ""
+ },
+ "options_timings_l3": {
+ "message": "Напомняне за непрочетени писма на всеки (в минути):",
+ "description": ""
+ },
+ "popup_msg_4": {
+ "message": "Преди 1 час",
+ "description": ""
+ },
+ "options_gmail_1": {
+ "message": "Главна сметка (/mail/u/0/)",
+ "description": ""
+ },
+ "options_gmail_10": {
+ "message": "Получаване на известия за следните етикети и сметки:",
+ "description": ""
+ },
+ "options_notifications_1": {
+ "message": "Показване на известия на работния плот за нови писма",
+ "description": ""
+ },
+ "options_notifications_9": {
+ "message": "Свирене на звуково оповестяване за нови писма",
+ "description": ""
+ },
+ "label_6": {
+ "message": "За 30 минути",
+ "description": ""
+ },
+ "options_misc_8": {
+ "message": "Нулиране на всички настройки към първоначалните",
+ "description": ""
+ },
+ "options_notifications_28": {
+ "message": "Изключване на всички известия за избран период (в минути):",
+ "description": ""
+ },
+ "options_timings_l4": {
+ "message": "Задайте стойността на нула за непериодични напомняния.",
+ "description": ""
+ },
+ "options_notifications_32": {
+ "message": "името или писмото съдържа",
+ "description": ""
+ },
+ "options_tab_6": {
+ "message": "Отваряне на пощата в нов прозорец",
+ "description": ""
+ },
+ "options_notifications_25": {
+ "message": "В Сафари първоначалното звуково известяване може да не работи. Ако е така, използвайте потребителски файл.",
+ "description": ""
+ },
+ "options_toolbar_15": {
+ "message": "Натискане със средното копче върху лентата",
+ "description": ""
+ },
+ "options_toolbar_10": {
+ "message": "Минималната височина е 500 пиксела.",
+ "description": ""
+ },
+ "popup_msg_10": {
+ "message": "Януари",
+ "description": ""
+ },
+ "options_notifications_26": {
+ "message": "Винаги да се показват известия в областта за уведомяване (само за Уиндоус)",
+ "description": ""
+ },
+ "label_3": {
+ "message": "Изключване на известията",
+ "description": ""
+ },
+ "label_13": {
+ "message": "За избран период",
+ "description": ""
+ },
+ "options_empty": {
+ "message": "не е обозначено",
+ "description": ""
+ },
+ "options_notifications_3": {
+ "message": "Тази функция може да не работи на вашата операционна система.",
+ "description": ""
+ },
+ "options_timings": {
+ "message": "Разписание",
+ "description": ""
+ },
+ "options_gmail_5": {
+ "message": "Четвърта сметка (/mail/u/3/)",
+ "description": ""
+ },
+ "label_5": {
+ "message": "За 15 минути",
+ "description": ""
+ },
+ "options_misc_9": {
+ "message": "Червен цвят за \"Няма непрочетени\" и сив цвят за \"Няма връзка\"",
+ "description": ""
+ },
+ "popup_msg_5": {
+ "message": "часа назад",
+ "description": ""
+ },
+ "options_notifications_27": {
+ "message": "Известията в областта за уведомяване ще се показват дори ако няма непрочетени писма.",
+ "description": ""
+ },
+ "options_misc_1": {
+ "message": "Подреждане на сметките по азбучен ред",
+ "description": ""
+ },
+ "tooltip_1": {
+ "message": "Щракване с ляво копче: Отваряне на пощата или панела за предварителен преглед",
+ "description": ""
+ },
+ "notification": {
+ "message": "От: [author_email][break] Заглавие: [title][break] Обобщение: [summary]",
+ "description": ""
+ },
+ "popup_trash": {
+ "message": "Кошче",
+ "description": ""
+ },
+ "options_tab": {
+ "message": "Отваряне на подпрозорец:",
+ "description": ""
+ },
+ "log_into_your_account": {
+ "message": "Моля, влезте в сметката си",
+ "description": ""
+ },
+ "label_10": {
+ "message": "Включване на известията",
+ "description": ""
+ },
+ "options_notifications_23": {
+ "message": "Гръмкостта на звуковото оповестяване е",
+ "description": ""
+ },
+ "options_timings_l2": {
+ "message": "Минималният период е 10 секунди.",
+ "description": ""
+ },
+ "options_toolbar_11": {
+ "message": "Поддръжка на клавишни комбинации в панела",
+ "description": ""
+ },
+ "options_gmail_9": {
+ "message": "Някои популярни етикети: \"Входяща поща\", \"Важни\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\" и \"^smartlabel_group\"",
+ "description": ""
+ },
+ "popup_msg_17": {
+ "message": "Август",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "Юни",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "обобщението на писмото съдържа",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Вписани сметки",
+ "description": ""
+ },
+ "options_misc_13": {
+ "message": "По подразбиране, известителят обновява подсказките на копчето с входна информация. Ако изчистите отметката, текста в подсказката ще остане на първоначалната стойност.",
+ "description": ""
+ },
+ "options_misc_6": {
+ "message": "Show desktop notification to warn that Gmail is already opened in the active tab",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Отбелязване като прочетено",
+ "description": ""
+ },
+ "options_notifications_4": {
+ "message": "Формат на известията",
+ "description": ""
+ },
+ "settings_open_title": {
+ "message": "Отваряне на страницата с настройките",
+ "description": ""
+ },
+ "label_2": {
+ "message": "Настройки",
+ "description": ""
+ },
+ "options_toolbar_14": {
+ "message": "Ако предпочитате само текст в режима на цяло съдържание, махнете отметката.",
+ "description": ""
+ },
+ "options_notifications_18": {
+ "message": "Звънене",
+ "description": ""
+ },
+ "options_tab_5": {
+ "message": "Отваряне на пощата в подпрозорец на заден план",
+ "description": ""
+ },
+ "label_7": {
+ "message": "За 1 час",
+ "description": ""
+ },
+ "popup_archive": {
+ "message": "Архив",
+ "description": ""
+ },
+ "msg_2": {
+ "message": "Връзката е копирана в буфера.",
+ "description": ""
+ },
+ "options_title": {
+ "message": "Настройки",
+ "description": ""
+ },
+ "popup_msg_13": {
+ "message": "Април",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "Преди %d месец(а)",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "Февруари",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Отваряне на входящата кутия",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "When unchecked, Gmail Notifier checks either active window or all open windows for open instance of Gmail and switch to the tab when tab opening is requested.",
+ "description": ""
+ },
+ "gmail": {
+ "message": "Известител за пощата на Гугъл",
+ "description": ""
+ },
+ "popup_msg_6": {
+ "message": "Вчера",
+ "description": ""
+ },
+ "options_toolbar_8": {
+ "message": "Минималната ширина е 500 пиксела.",
+ "description": ""
+ },
+ "options_notifications_16": {
+ "message": "Оповестяване по подразбиране",
+ "description": ""
+ },
+ "options_misc_14": {
+ "message": "Без показване на точния брой в значката, когато непрочетените писма надхвърлят 999",
+ "description": ""
+ },
+ "popup_msg_18": {
+ "message": "Септември",
+ "description": ""
+ },
+ "options_notifications_14": {
+ "message": "Тази функция е експериментална и може да направи разглеждача Файърфокс нестабилен. [Изисква се повторно пускане].",
+ "description": ""
+ },
+ "options_gmail_3": {
+ "message": "Втора сметка (/mail/u/1/)",
+ "description": ""
+ },
+ "options_notifications_11": {
+ "message": "Показване на \"Известие в лентата със задачи на Уиндоус\" или \"Известие в лентата на Макинтош\"",
+ "description": ""
+ },
+ "options_notifications_2": {
+ "message": "Показване на известия на работния плот за (в секунди):",
+ "description": ""
+ },
+ "log_in_to_your_account": {
+ "message": "Моля, влезте в профила си в пощата на Гугъл",
+ "description": ""
+ },
+ "popup_of": {
+ "message": "of",
+ "description": ""
+ },
+ "options_notifications_15": {
+ "message": "Звуковото известие по подразбиране е",
+ "description": ""
+ },
+ "options_notifications_21": {
+ "message": "Потребителският оповестителен звук е",
+ "description": ""
+ },
+ "options_toolbar_9": {
+ "message": "Височина на панела в режим на преглед на цялото съдържание (в пиксели):",
+ "description": ""
+ },
+ "options_toolbar_1": {
+ "message": "Поведение на копчето на лентата",
+ "description": ""
+ },
+ "unknown": {
+ "message": "неизвестно",
+ "description": ""
+ },
+ "popup_msg_21": {
+ "message": "Декември",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Отбелязване на всички като прочетени",
+ "description": ""
+ },
+ "options_notifications_8": {
+ "message": "Ако искате да няма многоточие, използвайте по-голямо число.",
+ "description": ""
+ },
+ "options_donation": {
+ "message": "Направете дарение",
+ "description": ""
+ },
+ "msg_3": {
+ "message": "Избраният текст е копиран в буфера.",
+ "description": ""
+ },
+ "options_misc_7": {
+ "message": "Показване на приветстващата страница при надграждане",
+ "description": ""
+ },
+ "options_gmail": {
+ "message": "Поща на Гугъл:",
+ "description": ""
+ },
+ "label_1": {
+ "message": "Обновяване",
+ "description": ""
+ },
+ "options_notifications_5": {
+ "message": "Налични променливи:",
+ "description": ""
+ },
+ "options_notifications_24": {
+ "message": "Гръмкостта е число между 0 и 100, където 100 е най-високото (по подразбиране).",
+ "description": ""
+ },
+ "options_notifications_10": {
+ "message": "Бележка за потребителите на Макинтош. От Файърфокс 28.0, всички известия на работния плот ще се управляват от Центъра за известия, което поражда допълнително звуково оповестяване. Трябва да изключите или това оповестяване, или оповестяването в Центъра за известия.",
+ "description": ""
+ },
+ "options_misc_2": {
+ "message": "По подразбиране се сортира по ред на влизане.",
+ "description": ""
+ },
+ "options_toolbar_2": {
+ "message": "Винаги да се отваря панел с предварителен преглед",
+ "description": ""
+ },
+ "popup_settings": {
+ "message": "настройки",
+ "description": ""
+ },
+ "options_gmail_4": {
+ "message": "Трета сметка (/mail/u/2/)",
+ "description": ""
+ },
+ "options_toolbar_5": {
+ "message": "Показване само на обобщение",
+ "description": ""
+ },
+ "options_notifications_12": {
+ "message": "В момента не се поддържат известия в лентата със задачи под Линукс.",
+ "description": ""
+ },
+ "options_notifications_35": {
+ "message": "За да изберете нов потребителски звук, първо изберете вграден звук и след това променете настройката на потребителски.",
+ "description": ""
+ },
+ "msg_1": {
+ "message": "Подпрозорецът вече е отворен. Натиснете копчето на лентата, за да отворите пощата в нов подпрозорец или да преминете към вече отворен раздел.",
+ "description": ""
+ },
+ "popup_refresh": {
+ "message": "Презареждане",
+ "description": ""
+ },
+ "options_misc_5": {
+ "message": "Син цвят за \"Няма непрочетени\" и сив цвят за \"Няма връзка\"",
+ "description": ""
+ },
+ "options_timings_l8": {
+ "message": "Задайте стойността на нула, за да не се проверява за нови писма до първото ръчно обновяване [Не е налично в Сафари].",
+ "description": ""
+ },
+ "popup_msg_19": {
+ "message": "Октомври",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "заглавието на писмото съдържа",
+ "description": ""
+ },
+ "tooltip_3": {
+ "message": "Щракване с дясно копче: Избор на сметка",
+ "description": ""
+ },
+ "popup_date_format": {
+ "message": "%mm %dd, %yy",
+ "description": ""
+ },
+ "options_notifications": {
+ "message": "Известия:",
+ "description": ""
+ },
+ "options_timings_l6": {
+ "message": "Ако имате непрочетени писма, стойностите, различни от нула, пускат оповестителен звук и известия на работния плот безкрайно.",
+ "description": ""
+ },
+ "popup_msg_12": {
+ "message": "Март",
+ "description": ""
+ },
+ "options_notifications_22": {
+ "message": "Ако четецът ви не възпроизвежда потребителския звук, опитайте се да го преобразувате във формат WAV.",
+ "description": ""
+ },
+ "options_tab_1": {
+ "message": "Търсене за отворена сметка само в активния прозорец",
+ "description": ""
+ },
+ "popup_msg_7_format": {
+ "message": "Преди %d дена",
+ "description": ""
+ },
+ "options_timings_l1": {
+ "message": "Проверка за нови писма на всеки (в секунди):",
+ "description": ""
+ },
+ "options_toolbar_4": {
+ "message": "Режим на панела",
+ "description": ""
+ },
+ "toolbar_label": {
+ "message": "Известител за пощата на Гугъл",
+ "description": ""
+ },
+ "popup_msg_1": {
+ "message": "Току-що",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Отваряне на настройките",
+ "description": ""
+ },
+ "options_misc_3": {
+ "message": "Цвят на иконката на лентата",
+ "description": ""
+ },
+ "options_gmail_12": {
+ "message": "Отделяйте емисиите със \",\" (запетая). Примерна емисия: https://mail.google.com/mail/u/0/feed/atom/inbox",
+ "description": ""
+ },
+ "options_toolbar_12": {
+ "message": "!: Докладване като спам, #: Кошче, e: Архив, Shift + i: Отбелязване като прочетено.",
+ "description": ""
+ },
+ "options_px": {
+ "message": "px",
+ "description": ""
+ },
+ "options_misc_11": {
+ "message": "Ако стойността се зададе на нула, няма да получавате нито звукови оповестявания, нито известия на работния плот. Ще работи само значката за известия.",
+ "description": ""
+ },
+ "options_notifications_20": {
+ "message": "Потребителски звук",
+ "description": ""
+ },
+ "and": {
+ "message": "и",
+ "description": ""
+ },
+ "options_tab_7": {
+ "message": "Винаги да се използват празни подпрозорци вместо да се отваря нов, когато е включено отварянето в подпрозорци",
+ "description": ""
+ },
+ "options_toolbar_3": {
+ "message": "Отваряне на пощата ако се използва само една сметка",
+ "description": ""
+ },
+ "options_gmail_7": {
+ "message": "Шеста сметка (/mail/u/5/)",
+ "description": ""
+ },
+ "popup_msg_8_format": {
+ "message": "Преди %d седмица(и)",
+ "description": ""
+ },
+ "options_toolbar": {
+ "message": "Лента:",
+ "description": ""
+ },
+ "options_notifications_6": {
+ "message": "Съкращаване на известията, по-дълги от",
+ "description": ""
+ },
+ "popup_wait": {
+ "message": "Изчакайте...",
+ "description": ""
+ },
+ "tooltip_2": {
+ "message": "Щракване със средно копче (или Контрол + Ляво): Обновяване на всички сметки",
+ "description": ""
+ },
+ "options_notifications_29": {
+ "message": "Тази настройка е свързана с менюто на копчето -> изключване на всички известия -> избран период.",
+ "description": ""
+ },
+ "options_tab_3": {
+ "message": "Отваряне на пощата до активния подпрозорец",
+ "description": ""
+ },
+ "options_gmail_8": {
+ "message": "Отбелязване на писмото като прочетено при архвиране",
+ "description": ""
+ },
+ "options_toolbar_17": {
+ "message": "Отваряне на главната сметка",
+ "description": ""
+ },
+ "options_notifications_7": {
+ "message": "символа за полетата [заглавие] и [обобщение].",
+ "description": ""
+ },
+ "options_misc_10": {
+ "message": "Да се появяват известия на работния плот и звукови оповестявания само за писма, пристигнали по-рано от (в минути):",
+ "description": ""
+ },
+ "options_tab_8": {
+ "message": "Ignore opened Gmail tabs",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(няма тема)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Изберете звуков файл",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "Преди 1 минута",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "Юли",
+ "description": ""
+ },
+ "label_8": {
+ "message": "За 2 часа",
+ "description": ""
+ },
+ "msg_4": {
+ "message": "Бележка: За да работи правилно известителя, трябва да сте влезли в профила си в Гугъл.",
+ "description": ""
+ },
+ "popup_msg_20": {
+ "message": "Ноември",
+ "description": ""
+ },
+ "options_toolbar_6": {
+ "message": "Показване на цялото съдържание",
+ "description": ""
+ },
+ "options_gmail_11": {
+ "message": "Потребителски емисии:",
+ "description": ""
+ },
+ "options_tab_2": {
+ "message": "Без търсене в други прозорци за отворени сметки. Ако пощата не е отворена в активния прозорец, да се отвори нов подпрозорец.",
+ "description": ""
+ },
+ "label_11": {
+ "message": "Писане на писмо",
+ "description": ""
+ },
+ "options_toolbar_7": {
+ "message": "Ширина на панела в режим на преглед на цялото съдържание (в пиксели):",
+ "description": ""
+ },
+ "options_notifications_31": {
+ "message": "Звуково известие по избор",
+ "description": ""
+ },
+ "options_timings_l5": {
+ "message": "Минималният период е 5 минути.",
+ "description": ""
+ },
+ "options_misc": {
+ "message": "Разни:",
+ "description": ""
+ },
+ "options_gmail_2": {
+ "message": "Разделяйте етикетите със \",\" (запетая).",
+ "description": ""
+ },
+ "options_misc_4": {
+ "message": "Сив цвят за \"Няма непрочетени\" и син цвят за \"Няма връзка\"",
+ "description": ""
+ },
+ "options_toolbar_13": {
+ "message": "Извеждане на писмата като ЕМХТ (HTML) в режима на цяло съдържание",
+ "description": ""
+ },
+ "options_toolbar_16": {
+ "message": "Обновяване на всички сметки",
+ "description": ""
+ },
+ "options_gmail_6": {
+ "message": "Пета сметка (/mail/u/4/)",
+ "description": ""
+ },
+ "popup_msg_14": {
+ "message": "Май",
+ "description": ""
+ },
+ "options_inshort": {
+ "message": "Известител за няколко профила в пощата на Гугъл (Джимейл).",
+ "description": ""
+ },
+ "options_misc_12": {
+ "message": "Без входни детайли в подсказките",
+ "description": ""
+ },
+ "options_tab_4": {
+ "message": "Отваряне на пощата в активния подпрозорец",
+ "description": ""
+ },
+ "popup_msg_3_format": {
+ "message": "Преди %d минути",
+ "description": ""
+ },
+ "label_12": {
+ "message": "Отваряне на въпросника",
+ "description": ""
+ },
+ "description": {
+ "message": "Известител за няколко профила в пощата на Гугъл (Джимейл)",
+ "description": ""
+ },
+ "popup_spam": {
+ "message": "Спам",
+ "description": ""
+ }
+}
\ No newline at end of file
diff --git a/src/_locales/el/messages.json b/v1/builds/unpacked/chrome/_locales/el/messages.json
similarity index 70%
rename from src/_locales/el/messages.json
rename to v1/builds/unpacked/chrome/_locales/el/messages.json
index a5a4f9b2..073c67ad 100644
--- a/src/_locales/el/messages.json
+++ b/v1/builds/unpacked/chrome/_locales/el/messages.json
@@ -15,6 +15,14 @@
"message": "Ανοιγμα της γραμμής εργαλείων όταν κάνετε κλικ στο εικονίδιο ειδοποίησης στην γραμμή εργασιών (μόνο για Windows, beta)",
"description": ""
},
+ "options_notifications_30": {
+ "message": "Συνδυάστε όλες τις ταυτόχρονες ειδοποιήσεις στην επιφάνεια εργασίας σε μια ενιαία κοινοποίηση",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Ανοίξτε τις Επιλογές",
+ "description": ""
+ },
"options_timings_l7": {
"message": "Να μην γίνεται έλεγχος για νέα email κατά την εκκίνηση για (σε δευτερόλεπτα):",
"description": ""
@@ -27,6 +35,10 @@
"message": "Υπενθύμιση για όλα τα μη αναγνωσμένα email κάθε (σε λεπτά):",
"description": ""
},
+ "popup_msg_4": {
+ "message": "1 ώρα πριν",
+ "description": ""
+ },
"options_gmail_1": {
"message": "Πρωτοβάθμιος λογαριασμός (/mail/u/0/)",
"description": ""
@@ -51,10 +63,18 @@
"message": "Επαναφορά όλων των ρυθμίσεων στις εργοστασιακές ρυθμίσεις",
"description": ""
},
+ "options_notifications_28": {
+ "message": "Απενεργοποίηση όλων των ειδοποιήσεων για μια προσαρμοσμένη χρονική περίοδο (σε λεπτά):",
+ "description": ""
+ },
"options_timings_l4": {
"message": "Ρυθμίστε την τιμή στο μηδέν για μη-περιοδικές υπενθυμίσεις.",
"description": ""
},
+ "options_notifications_32": {
+ "message": "περιέχει όνομα ή email",
+ "description": ""
+ },
"options_tab_6": {
"message": "Άνοιγμα λογαριασμού Gmail σε νέο παράθυρο",
"description": ""
@@ -71,6 +91,10 @@
"message": "Το ελάχιστο ύψος είναι 500px.",
"description": ""
},
+ "popup_msg_10": {
+ "message": "Ιανουάριος",
+ "description": ""
+ },
"options_notifications_26": {
"message": "Εμφανιση πάντα κοινοποίησης στον δίσκο (μόνο για Windows)",
"description": ""
@@ -79,6 +103,10 @@
"message": "Απενεργοποίηση όλων των ειδοποιήσεων",
"description": ""
},
+ "label_13": {
+ "message": "Για μια προσαρμοσμένη χρονική περίοδο",
+ "description": ""
+ },
"options_empty": {
"message": "δεν ορίζεται",
"description": ""
@@ -100,7 +128,11 @@
"description": ""
},
"options_misc_9": {
- "message": "Red color for \"No Unread\" and gray color for \"Disconnected\"",
+ "message": "Κόκκινο χρώμα για \"Μη Αναγνωσμένα\" και γκρι χρώμα για \"Ασύνδετα\"",
+ "description": ""
+ },
+ "popup_msg_5": {
+ "message": "ώρες πριν",
"description": ""
},
"options_notifications_27": {
@@ -119,6 +151,10 @@
"message": "Από: [author_email] [break] Τίτλος: [τίτλος] [break] Περίληψη: [περίληψη]",
"description": ""
},
+ "popup_trash": {
+ "message": "Σκουπίδια",
+ "description": ""
+ },
"options_tab": {
"message": "Άνοιγμα καρτέλας:",
"description": ""
@@ -147,18 +183,42 @@
"message": "Μερικές δημοφιλείς ετικέτες: \"Εισερχόμενα\", \"σημαντικό\", \"^ smartlabel προσωπικά\", \"^ smartlabel ενημερωτικό δελτίο\", \"^ κοινοποίηση smartlabel\", και \"^ smartlabel_group\"",
"description": ""
},
+ "popup_msg_17": {
+ "message": "Αύγουστος",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "Ιούνιος",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "περιέχει περίληψη email",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Σύνδεση στους λογαριασμούς",
+ "description": ""
+ },
"options_misc_13": {
- "message": "By default, the notifier updates tooltip text of the toolbar button with login info. By unchecking this option, the tooltip text remains the default value.",
+ "message": "Από προεπιλογή, ο κοινοποιών ενημερώνει κείμενο επεξήγησης του κουμπιού γραμμής εργαλείων με πληροφορίες σύνδεσης. Με την απενεργοποίηση της επιλογής αυτής, στο κείμενο επεξήγησης παραμένει η προεπιλεγμένη τιμή.",
"description": ""
},
"options_misc_6": {
- "message": "Να μην εμφανίζεται ειδοποίηση στην επιφάνεια εργασίας για να προειδοποιήσει ότι η ιστοσελίδα του Gmail είναι ήδη ανοικτή",
+ "message": "Show desktop notification to warn that Gmail is already opened in the active tab",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Σημείωσε ως Διαβασμένο",
"description": ""
},
"options_notifications_4": {
"message": "Μορφή κοινοποίησης",
"description": ""
},
+ "settings_open_title": {
+ "message": "Ανοίξτε τις επιλογές (ρυθμίσεις) σελίδας",
+ "description": ""
+ },
"label_2": {
"message": "Ρυθμίσεις",
"description": ""
@@ -179,6 +239,10 @@
"message": "Για 1 ώρα",
"description": ""
},
+ "popup_archive": {
+ "message": "Αρχείο",
+ "description": ""
+ },
"msg_2": {
"message": "Ο σύνδεσμος έχει αντιγραφεί στο πρόχειρο.",
"description": ""
@@ -187,10 +251,34 @@
"message": "Επιλογές - Gmail ™ Notifier",
"description": ""
},
+ "popup_msg_13": {
+ "message": "Απρίλιος",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "%d μήνα(ες) πρίν",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "Φεβρουάριος",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Ανοίξτε το φάκελο εισερχομένων",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "When unchecked, Gmail Notifier checks either active window or all open windows for open instance of Gmail and switch to the tab when tab opening is requested.",
+ "description": ""
+ },
"gmail": {
"message": "Gmail™ Notifier",
"description": ""
},
+ "popup_msg_6": {
+ "message": "Εχθές",
+ "description": ""
+ },
"options_toolbar_8": {
"message": "Το ελάχιστο πλάτος είναι 500px.",
"description": ""
@@ -200,7 +288,11 @@
"description": ""
},
"options_misc_14": {
- "message": "Do not show the exact badge number when the number of unread emails is greater than 999",
+ "message": "Να μην εμφανίζεται ο ακριβής αριθμός σημάτων όταν ο αριθμός των μη αναγνωσμένων μηνυμάτων ηλεκτρονικού ταχυδρομείου είναι μεγαλύτερος από 999",
+ "description": ""
+ },
+ "popup_msg_18": {
+ "message": "Σεπτέμβριος",
"description": ""
},
"options_notifications_14": {
@@ -223,8 +315,12 @@
"message": "Παρακαλούμε συνδεθείτε στον Gmail λογαριασμό σας ",
"description": ""
},
+ "popup_of": {
+ "message": "από",
+ "description": ""
+ },
"options_notifications_15": {
- "message": "Ηχητική ειδοποίηση ",
+ "message": "Ο προ επιλεγμένος ήχος ειδοποίησης είναι",
"description": ""
},
"options_notifications_21": {
@@ -243,6 +339,14 @@
"message": "άγνωστο",
"description": ""
},
+ "popup_msg_21": {
+ "message": "Δεκέμβριος",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Σημείωση όλων ως Αναγνωσμένα",
+ "description": ""
+ },
"options_notifications_8": {
"message": "Για να μην έχουν καμία περικοπή τα αποσιωπητικά, χρησιμοποιήστε ένα μεγάλο αριθμό εδώ.",
"description": ""
@@ -252,7 +356,7 @@
"description": ""
},
"msg_3": {
- "message": "Το επιλεγμένο κείμενο εχει αντιγράφει στο πρόχειρο.",
+ "message": "Το επιλεγμένο κείμενο έχει αντιγράφει στο πρόχειρο.",
"description": ""
},
"options_misc_7": {
@@ -303,10 +407,18 @@
"message": "Το Taskbar notifications δεν υποστηρίζεται απο το λειτουργικό σύστημα Linux αυτή τη στιγμή.",
"description": ""
},
+ "options_notifications_35": {
+ "message": "Για να επιλέξετε ένα νέο προσαρμοσμένο ήχο, επιλέξτε ένα ενσωματωμένο ήχο και στη συνέχεια αλλάξτε την επιλογή με τον προσαρμοσμένο ήχο",
+ "description": ""
+ },
"msg_1": {
"message": "Η καρτέλα είναι ήδη ανοικτή. Κάντε κλικ στο κουμπί της γραμμής εργαλείων για να ανοίξετε το Gmail σε μια νέα καρτέλα, ή να μεταβείτε σε μια υπάρχουσα Gmail καρτέλα.",
"description": ""
},
+ "popup_refresh": {
+ "message": "Ανανεώνω",
+ "description": ""
+ },
"options_misc_5": {
"message": "Μπλε χρώμα για \"Μη Αναγνωσμένα\" και γκρι χρώμα για \"Αποσυνδεση\"",
"description": ""
@@ -315,10 +427,22 @@
"message": "Ρυθμίστε την τιμή στο μηδέν για κανένα έλεγχο e-mail μέχρι την πρώτη χειροκίνητη ανανέωση [Δεν διατίθεται στο Safari].",
"description": ""
},
+ "popup_msg_19": {
+ "message": "Οκτώβριος",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "περιέχει τίτλο email",
+ "description": ""
+ },
"tooltip_3": {
"message": "Δεξί κλικ: Επιλογές Λογαριασμού",
"description": ""
},
+ "popup_date_format": {
+ "message": "%mm %dd, %yy",
+ "description": ""
+ },
"options_notifications": {
"message": "Ειδοποιήσεις:",
"description": ""
@@ -327,14 +451,22 @@
"message": "Πυρκαγιές με μη μηδενική τιμή, κοινοποίηση και ηχητική ειδοποίηση τόσο στην επιφάνεια εργασίας (παρόμοιο με νέα άφιξη email) για πάντα, αν έχετε μη αναγνωσμένα email(s).",
"description": ""
},
+ "popup_msg_12": {
+ "message": "Μάρτιος",
+ "description": ""
+ },
"options_notifications_22": {
- "message": "Αν το πρόγραμμα περιήγησης σας δεν παίζει τον ήχο κοινοποίησης, προσπαθήστε να τον μετατρέψετε σε μια απλή μορφή WAV χρησιμοποιώντας ένα online εργαλείο μετατροπής.",
+ "message": "Αν ο browser σας δεν παίζει το προεπιλεγμένο ήχο ειδοποίησης, προσπαθήστε να το μετατρέψετε σε μια απλή μορφή WAV χρησιμοποιώντας ένα online εργαλείο μετατροπής.",
"description": ""
},
"options_tab_1": {
"message": "Αναζήτηση για έναν ανοικτό λογαριασμό Gmail μόνο στο ενεργό παράθυρο",
"description": ""
},
+ "popup_msg_7_format": {
+ "message": "%d ημέρες πριν",
+ "description": ""
+ },
"options_timings_l1": {
"message": "Έλεγχος για νέα e-mail κάθε (σε δευτερόλεπτα):",
"description": ""
@@ -347,6 +479,14 @@
"message": "Gmail™ Notifier",
"description": ""
},
+ "popup_msg_1": {
+ "message": "μόλις τώρα",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Ανοίξτε τις ρυθμίσεις",
+ "description": ""
+ },
"options_misc_3": {
"message": "Το σχέδιο χρώματος γραμμής εργαλείων είναι",
"description": ""
@@ -364,7 +504,7 @@
"description": ""
},
"options_misc_11": {
- "message": "By setting this preference to zero, you will receive neither desktop nor sound notifications; however, you will still get badge notification.",
+ "message": "Θέτοντας αυτήν την προτίμηση στο μηδέν, δεν θα λάμβανετε ειδοποιήσεις στην επιφάνεια εργασίας και ούτε ηχητικές ειδοποιήσεις. Ωστόσο, μπορείτε ακόμα να παίρνετε σήμα κοινοποιήσεων.",
"description": ""
},
"options_notifications_20": {
@@ -387,6 +527,10 @@
"message": "Σκηνικός λογαριασμός (/mail/u/5/)",
"description": ""
},
+ "popup_msg_8_format": {
+ "message": "%d εβδομάδα(ες) πριν",
+ "description": ""
+ },
"options_toolbar": {
"message": "Γραμμη Εργαλειων:",
"description": ""
@@ -395,10 +539,18 @@
"message": "Περικόψτε ειδοποιήσεις περισσότερο από",
"description": ""
},
+ "popup_wait": {
+ "message": "Περιμένετε...",
+ "description": ""
+ },
"tooltip_2": {
"message": "Μεσαίο (ή Ctrl + Left) κλικ: Ανανέωση όλων των λογαριασμών",
"description": ""
},
+ "options_notifications_29": {
+ "message": "Αυτή η επιλογή σχετίζεται με το δεξί κλικ μενού στο κουμπί της γραμμής εργαλείων -> απενεργοποιήσετε όλες τις ειδοποιήσεις -> προσαρμοσμένης χρονικής περιόδου.",
+ "description": ""
+ },
"options_tab_3": {
"message": "Άνοιγμα νέου λογαριασμού Gmail δίπλα στην ενεργή καρτέλα",
"description": ""
@@ -416,7 +568,27 @@
"description": ""
},
"options_misc_10": {
- "message": "Only fire desktop and sound notifications when email has arrived in less than (in minutes): ",
+ "message": "Μόνο εμφάνιση στην επιφάνεια εργασίας και ηχητικές ειδοποιήσεις, όταν το ηλεκτρονικό ταχυδρομείου έχει φτάσει σε λιγότερο από (σε λεπτά):",
+ "description": ""
+ },
+ "options_tab_8": {
+ "message": "Ignore opened Gmail tabs",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(χωρίς θέμα)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Επιλέξτε ένα αρχείο ήχου",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "1 λεπτό πριν",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "Ιούλιος",
"description": ""
},
"label_8": {
@@ -427,6 +599,10 @@
"message": "Σημείωση: Για να λειτουργήσει σωστά το notifier, θα πρέπει να είστε συνδεδεμένοι στον Google λογαριασμό σας.",
"description": ""
},
+ "popup_msg_20": {
+ "message": "Νοέμβριος",
+ "description": ""
+ },
"options_toolbar_6": {
"message": "Εμφάνιση πλήρους περιεχομένου",
"description": ""
@@ -447,6 +623,10 @@
"message": "Πλάτος γραμμής εργαλείων του πίνακα σε κατάσταση πλήρους περιεχομένου (σε εικονοστοιχεία):",
"description": ""
},
+ "options_notifications_31": {
+ "message": "Προσαρμοσμένος ήχος ειδοποίησης",
+ "description": ""
+ },
"options_timings_l5": {
"message": "Ελάχιστη περίοδος είναι 5 λεπτά.",
"description": ""
@@ -475,24 +655,36 @@
"message": "Πενταδικός λογαριασμός (/mail/u/4/)",
"description": ""
},
+ "popup_msg_14": {
+ "message": "Μάιος",
+ "description": ""
+ },
"options_inshort": {
- "message": "Πολλαπλές ετικέτες και λογαριασμοι κοινοποιών για το Google Mail (Gmail).",
+ "message": "Πολλαπλές ετικέτες και λογαριασμοί κοινοποιών για το Google Mail (Gmail).",
"description": ""
},
"options_misc_12": {
- "message": "Do not include login details in the tooltip text",
+ "message": "Δεν περιλαμβάνονται στοιχεία σύνδεσης στο κείμενο επεξήγησης",
"description": ""
},
"options_tab_4": {
"message": "Άνοιγμα λογαριασμού Gmail στην ενεργή καρτέλα",
"description": ""
},
+ "popup_msg_3_format": {
+ "message": "%d λεπτά πριν",
+ "description": ""
+ },
"label_12": {
- "message": "Άνοιγμα αρχικής σελίδας",
+ "message": "Άνοιγμα Συχνών Ερωτήσεων",
"description": ""
},
"description": {
- "message": "Πολλαπλές ετικέτες και κοινωποιηση λογαριασμού για το Google Mail (Gmail)",
+ "message": "Πολλαπλές ετικέτες και κοινοποίηση λογαριασμού για το Google Mail (Gmail)",
+ "description": ""
+ },
+ "popup_spam": {
+ "message": "Spam",
"description": ""
}
}
\ No newline at end of file
diff --git a/src/_locales/en/messages.json b/v1/builds/unpacked/chrome/_locales/en/messages.json
similarity index 78%
rename from src/_locales/en/messages.json
rename to v1/builds/unpacked/chrome/_locales/en/messages.json
index 057e8db4..6bd7bb34 100644
--- a/src/_locales/en/messages.json
+++ b/v1/builds/unpacked/chrome/_locales/en/messages.json
@@ -1,12 +1,12 @@
{
"gmail": {
- "message": "Gmail™ Notifier"
+ "message": "Notifier for Gmail™"
},
"toolbar_label": {
- "message": "Gmail™ Notifier"
+ "message": "Notifier for Gmail™"
},
"tooltip_1": {
- "message": "Left click: Open Gmail or mail preview panel"
+ "message": "Left click: Open Gmail™ or mail preview panel"
},
"tooltip_2": {
"message": "Middle (or Ctrl+Left) click: Refresh all accounts"
@@ -15,13 +15,13 @@
"message": "Right click: Account selections"
},
"description": {
- "message": "Multiple label and account notifier for Google Mail (Gmail)"
+ "message": "Multiple label and account notifier for Google Mail (Gmail™)"
},
"log_in_to_your_account": {
- "message": "Please sign-in to your Gmail account"
+ "message": "Please sign-in to your Gmail™ account"
},
"msg_1": {
- "message": "Tab is already open. Click on the toolbar button to open Gmail in a new tab, or to switch to an existing Gmail tab."
+ "message": "Tab is already open. Click on the toolbar button to open Gmail™ in a new tab, or to switch to an existing Gmail™ tab."
},
"msg_2": {
"message": "Link is copied to the clipboard."
@@ -32,6 +32,9 @@
"msg_4": {
"message": "Note: For the notifier to work properly, you need to be logged-in into your Google account."
},
+ "msg_5": {
+ "message": "Select an audio sound file"
+ },
"label_1": {
"message": "Refresh"
@@ -60,6 +63,9 @@
"label_9": {
"message": "For 5 hours"
},
+ "label_13": {
+ "message": "For a custom time period"
+ },
"label_10": {
"message": "Enable notifications"
},
@@ -67,7 +73,10 @@
"message": "Compose an email"
},
"label_12": {
- "message": "Open homepage"
+ "message": "Open FAQs"
+ },
+ "label_14": {
+ "message": "Logged-in accounts"
},
"unknown": {
@@ -80,14 +89,14 @@
"message": "Please log into your account"
},
"notification": {
- "message": "From: [author_email][break]Title: [title][break]Summary: [summary]"
+ "message": "From: [author_email][break] Title: [title][break] Summary: [summary]"
},
"options_title": {
"message": "Options - Gmail™ Notifier"
},
"options_inshort": {
- "message": "Multiple label and account notifier for Google Mail (Gmail)."
+ "message": "Multiple label and account notifier for Google Mail (Gmail™)."
},
"options_donation": {
"message": "Make a Donation"
@@ -120,7 +129,7 @@
"message": "Set the value to zero for no email check until the first manual refresh [Not available on Safari]."
},
"options_gmail": {
- "message": "Gmail:"
+ "message": "Gmail™:"
},
"options_gmail_1": {
"message": "Primary account (/mail/u/0/)"
@@ -204,10 +213,23 @@
"message": "This feature is highly experimental and might make your Firefox browser unstable. [Restart required]."
},
"options_notifications_15": {
- "message": "Sound notification is"
+ "message": "Default sound notification is"
+ },
+ "options_notifications_31": {
+ "message": "Custom sound notification"
+ },
+ "options_notifications_32": {
+ "message": "name or email contains"
+ },
+ "options_notifications_33": {
+ "message": "email title contains"
},
+ "options_notifications_34": {
+ "message": "email summary contains"
+ },
+
"options_notifications_16": {
- "message": "Gmail Notifier default alert"
+ "message": "Gmail™ Notifier default alert"
},
"options_notifications_17": {
"message": "Checker Plus bell alert"
@@ -225,7 +247,10 @@
"message": "User defined notification sound is"
},
"options_notifications_22": {
- "message": "If your browser is not playing the notification sound, try to convert it into a plain WAV format using an online conversion tool."
+ "message": "If your browser is not playing the custom notification sound, try to convert it into a plain WAV format using an online conversion tool."
+ },
+ "options_notifications_35": {
+ "message": "To select a new custom sound, select a built-in sound first and then change the option to custom sound"
},
"options_notifications_23": {
"message": "Volume of the sound notification is"
@@ -242,31 +267,45 @@
"options_notifications_27": {
"message": "Tray notification will be shown even if there is no unread message."
},
-
+ "options_notifications_28": {
+ "message": "Disable all notifications for a custom time period (in minutes):"
+ },
+ "options_notifications_29": {
+ "message": "This option is related to the right click menu on the toolbar button -> disable all notifications -> custom time period."
+ },
+ "options_notifications_30": {
+ "message": "Combine all concurrent desktop notifications into a single notification"
+ },
"options_tab": {
"message": "Tab Opening:"
},
"options_tab_1": {
- "message": "Search for an open Gmail account only on the active window"
+ "message": "Search for an open Gmail™ account only on the active window"
},
"options_tab_2": {
- "message": "Do not search other browser windows for open Gmail accounts. If Gmail is not open in the active window, open a new tab."
+ "message": "Do not search other browser windows for open Gmail™ accounts. If Gmail™ is not open in the active window, open a new tab."
},
"options_tab_3": {
- "message": "Open new Gmail account next to the active tab"
+ "message": "Open new Gmail™ account next to the active tab"
},
"options_tab_4": {
- "message": "Open Gmail account in the active tab"
+ "message": "Open Gmail™ account in the active tab"
},
"options_tab_5": {
- "message": "Open Gmail account in a background tab"
+ "message": "Open Gmail™ account in a background tab"
},
"options_tab_6": {
- "message": "Open Gmail account in a new window"
+ "message": "Open Gmail™ account in a new window"
},
"options_tab_7": {
"message": "Always use blank tabs instead of opening a new tab when open in tab is activated"
},
+ "options_tab_8": {
+ "message": "Ignore opened Gmail™ tabs"
+ },
+ "options_tab_9": {
+ "message": "When unchecked, Gmail™ Notifier checks either active window or all open windows for open instance of Gmail™ and switch to the tab when tab opening is requested."
+ },
"options_toolbar": {
"message": "Toolbar:"
},
@@ -277,7 +316,7 @@
"message": "Always open email preview panel"
},
"options_toolbar_3": {
- "message": "Open Gmail account if only one account is logged-in"
+ "message": "Open Gmail™ account if only one account is logged-in"
},
"options_toolbar_4": {
"message": "Toolbar panel mode"
@@ -319,7 +358,7 @@
"message": "Refresh all accounts"
},
"options_toolbar_17": {
- "message": "Open primary Gmail account"
+ "message": "Open primary Gmail™ account"
},
"options_misc": {
"message": "Miscellaneous:"
@@ -343,7 +382,7 @@
"message": "Red color for \"No Unread\" and gray color for \"Disconnected\""
},
"options_misc_6": {
- "message": "Do not show desktop notification to warn that Gmail website is already open"
+ "message": "Show desktop notification to warn that Gmail™ is already opened in the active tab"
},
"options_misc_7": {
"message": "Show welcome page on upgrade"
@@ -379,7 +418,15 @@
"popup_of": {
"message": "of"
},
-
+ "popup_wait": {
+ "message": "Wait..."
+ },
+ "popup_date_format": {
+ "message": "%mm %dd, %yy"
+ },
+ "popup_no_subject": {
+ "message": "(no subject)"
+ },
"popup_open_settings": {
"message": "Open settings"
},
@@ -410,8 +457,8 @@
"popup_msg_2": {
"message": "1 minute ago"
},
- "popup_msg_3": {
- "message": "minutes ago"
+ "popup_msg_3_format": {
+ "message": "%d minutes ago"
},
"popup_msg_4": {
"message": "1 hour ago"
@@ -422,14 +469,14 @@
"popup_msg_6": {
"message": "Yesterday"
},
- "popup_msg_7": {
- "message": "days ago"
+ "popup_msg_7_format": {
+ "message": "%d days ago"
},
- "popup_msg_8": {
- "message": "weeks ago"
+ "popup_msg_8_format": {
+ "message": "%d week(s) ago"
},
- "popup_msg_9": {
- "message": "months ago"
+ "popup_msg_9_format": {
+ "message": "%d month(s) ago"
},
"popup_msg_10": {
"message": "January"
@@ -466,5 +513,12 @@
},
"popup_msg_21": {
"message": "December"
+ },
+
+ "settings_open_title": {
+ "message": "Open options (settings) page"
+ },
+ "settings_open_label": {
+ "message": "Open Options"
}
}
diff --git a/v1/builds/unpacked/chrome/_locales/fr/messages.json b/v1/builds/unpacked/chrome/_locales/fr/messages.json
new file mode 100644
index 00000000..eb237b00
--- /dev/null
+++ b/v1/builds/unpacked/chrome/_locales/fr/messages.json
@@ -0,0 +1,690 @@
+{
+ "label_9": {
+ "message": "Pour 5 heures",
+ "description": ""
+ },
+ "options_notifications_19": {
+ "message": "Alerte e-mail Windows",
+ "description": ""
+ },
+ "options_notifications_17": {
+ "message": "Alerte sonore \"Bell\" de l'extension \"Checker Plus\" pour Google Chrome",
+ "description": ""
+ },
+ "options_notifications_13": {
+ "message": "Ouvrir le panneau de la barre d'outils sur clic de l'icône de notification dans la barre de tâches (uniquement sous Windows, beta)",
+ "description": ""
+ },
+ "options_notifications_30": {
+ "message": "Combiner toutes les notifications simultanées de bureau en une seule notification",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Ouvrir les options",
+ "description": ""
+ },
+ "options_timings_l7": {
+ "message": "Ne pas relever les nouveaux e-mails au démarrage avant (en secondes) :",
+ "description": ""
+ },
+ "label_4": {
+ "message": "Pour 5 min",
+ "description": ""
+ },
+ "options_timings_l3": {
+ "message": "Rappeler les e-mails non lus toutes les (en minutes) :",
+ "description": ""
+ },
+ "popup_msg_4": {
+ "message": "1 heure plus tôt",
+ "description": ""
+ },
+ "options_gmail_1": {
+ "message": "Compte principal (/mail/u/0/)",
+ "description": ""
+ },
+ "options_gmail_10": {
+ "message": "Recevoir les notifications pour les libellés et comptes suivants :",
+ "description": ""
+ },
+ "options_notifications_1": {
+ "message": "Afficher la notification sur le bureau pour les nouveaux e-mails",
+ "description": ""
+ },
+ "options_notifications_9": {
+ "message": "Jouer l'alerte sonore pour les nouveaux e-mails",
+ "description": ""
+ },
+ "label_6": {
+ "message": "Pour 30 min",
+ "description": ""
+ },
+ "options_misc_8": {
+ "message": "Réinitialiser tous les paramètres aux valeurs par défaut",
+ "description": ""
+ },
+ "options_notifications_28": {
+ "message": "Désactiver toutes les notifications pendant une période de temps personnalisée (en minutes) :",
+ "description": ""
+ },
+ "options_timings_l4": {
+ "message": "Positionner la valeur à zéro pour tous les rappels non périodiques.",
+ "description": ""
+ },
+ "options_notifications_32": {
+ "message": "nom ou contenus d'e-mail",
+ "description": ""
+ },
+ "options_tab_6": {
+ "message": "Ouvrir un compte Gmail™ dans une nouvelle fenêtre",
+ "description": ""
+ },
+ "options_notifications_25": {
+ "message": "Dans Safari, il est probable que les notfications sonores par défaut ne soient pas jouées correctement. Si c'est le cas, utilisez un fichier son personnel comme notification.",
+ "description": ""
+ },
+ "options_toolbar_15": {
+ "message": "Cliquer avec le bouton du milieu sur bouton de la barre d'outils pour",
+ "description": ""
+ },
+ "options_toolbar_10": {
+ "message": "La hauteur minimale est de 500 pixels.",
+ "description": ""
+ },
+ "popup_msg_10": {
+ "message": "Janvier",
+ "description": ""
+ },
+ "options_notifications_26": {
+ "message": "Toujours afficher la notification dans la zone de notification système (uniquement sous Windows)",
+ "description": ""
+ },
+ "label_3": {
+ "message": "Désactiver toutes les notifications",
+ "description": ""
+ },
+ "label_13": {
+ "message": "Pour une période de temps personnalisée",
+ "description": ""
+ },
+ "options_empty": {
+ "message": "non défini",
+ "description": ""
+ },
+ "options_notifications_3": {
+ "message": "Cette option peut ne pas fonctionner sur votre système d'exploitation.",
+ "description": ""
+ },
+ "options_timings": {
+ "message": "Temporisations",
+ "description": ""
+ },
+ "options_gmail_5": {
+ "message": "4ème compte (/mail/u/3/)",
+ "description": ""
+ },
+ "label_5": {
+ "message": "Pour 15 min",
+ "description": ""
+ },
+ "options_misc_9": {
+ "message": "Couleur rouge pour \"Tous lus\" et couleur gris pour \"Déconnecté\"",
+ "description": ""
+ },
+ "popup_msg_5": {
+ "message": "heures plus tôt",
+ "description": ""
+ },
+ "options_notifications_27": {
+ "message": "La notification dans la zone de notification système sera affichée même si tous les messages sont lus.",
+ "description": ""
+ },
+ "options_misc_1": {
+ "message": "Trier les comptes par ordre alphabétique",
+ "description": ""
+ },
+ "tooltip_1": {
+ "message": "Clic gauche : Ouvrir Gmail™ ou le panneau de prévisualisation d'e-mail",
+ "description": ""
+ },
+ "notification": {
+ "message": "De : [author_email][break]Objet : [title][break]Résumé : [summary]",
+ "description": ""
+ },
+ "popup_trash": {
+ "message": "Corbeille",
+ "description": ""
+ },
+ "options_tab": {
+ "message": "Ouverture d'onglet :",
+ "description": ""
+ },
+ "log_into_your_account": {
+ "message": "Veuillez vous connecter à votre compte",
+ "description": ""
+ },
+ "label_10": {
+ "message": "Activer les notifications",
+ "description": ""
+ },
+ "options_notifications_23": {
+ "message": "Le volume de la notification sonore est",
+ "description": ""
+ },
+ "options_timings_l2": {
+ "message": "La période minimum est de 10 secondes.",
+ "description": ""
+ },
+ "options_toolbar_11": {
+ "message": "Support des raccourcis clavier dans le panneau de la barre d'outils",
+ "description": ""
+ },
+ "options_gmail_9": {
+ "message": "Des libellés populaires : \"inbox\", \"important\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\", et \"^smartlabel_group\"",
+ "description": ""
+ },
+ "popup_msg_17": {
+ "message": "Août",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "Juin",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "sommaire de contenus d'e-mail",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Comptes connectés",
+ "description": ""
+ },
+ "options_misc_13": {
+ "message": "Par défaut, le notifieur met à jour la bulle textuelle du bouton de la barre d'outils avec des infos d'identifiant. En désactivant cette option, la bulle textuelle restera à sa valeur par défaut.",
+ "description": ""
+ },
+ "options_misc_6": {
+ "message": "Afficher une notification sur le bureau pour avertir que Gmail™ est déjà ouvert dans l'onglet actif",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Marquer comme lu",
+ "description": ""
+ },
+ "options_notifications_4": {
+ "message": "Format de notification",
+ "description": ""
+ },
+ "settings_open_title": {
+ "message": "Ouvrir la page des options (paramètres)",
+ "description": ""
+ },
+ "label_2": {
+ "message": "Paramètres",
+ "description": ""
+ },
+ "options_toolbar_14": {
+ "message": "Si vous préférez le rendu \"texte uniquement\" dans le mode \"contenu total\", décochez cette case.",
+ "description": ""
+ },
+ "options_notifications_18": {
+ "message": "Alerte sonore \"Ding\" de l'extension \"Checker Plus\" pour Google Chrome",
+ "description": ""
+ },
+ "options_tab_5": {
+ "message": "Ouvrir un compte Gmail™ dans un onglet d'arrière-plan",
+ "description": ""
+ },
+ "label_7": {
+ "message": "Pour 1 heure",
+ "description": ""
+ },
+ "popup_archive": {
+ "message": "Archive",
+ "description": ""
+ },
+ "msg_2": {
+ "message": "Le lien est copié dans le presse-papiers.",
+ "description": ""
+ },
+ "options_title": {
+ "message": "Options - Notifieur Gmail™",
+ "description": ""
+ },
+ "popup_msg_13": {
+ "message": "Avril",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "%d mois plus tôt",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "Février",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Ouvrir la boîte de réception",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "Lorsque cette option est décochée, le notifieur Gmail™ vérifie la fenêtre active ou l'ensemble des fenêtres ouvertes pour l'instance en cours de Gmail™ et passe à l'onglet suivant lorsque l'ouverture d'onglet est demandée.",
+ "description": ""
+ },
+ "gmail": {
+ "message": "Notifieur Gmail™",
+ "description": ""
+ },
+ "popup_msg_6": {
+ "message": "Hier",
+ "description": ""
+ },
+ "options_toolbar_8": {
+ "message": "La largeur minimale est de 500 pixels.",
+ "description": ""
+ },
+ "options_notifications_16": {
+ "message": "Alerte par défaut du Notifieur Gmail™",
+ "description": ""
+ },
+ "options_misc_14": {
+ "message": "Ne pas afficher le nombre badge exact quand le nombre d'e-mails non lus est supérieur à 999",
+ "description": ""
+ },
+ "popup_msg_18": {
+ "message": "Septembre",
+ "description": ""
+ },
+ "options_notifications_14": {
+ "message": "Cette fonctionnalité est hautement expérimentale et pourrait rendre instable votre navigateur Firefox. [Rédemarrage nécessaire].",
+ "description": ""
+ },
+ "options_gmail_3": {
+ "message": "2ème compte (/mail/u/1/)",
+ "description": ""
+ },
+ "options_notifications_11": {
+ "message": "Afficher la notification dans la barre de tâches Windows ou dans le dock Mac OS",
+ "description": ""
+ },
+ "options_notifications_2": {
+ "message": "Présenter la notification de bureau pendant (en secondes) :",
+ "description": ""
+ },
+ "log_in_to_your_account": {
+ "message": "Veuillez vous connecter à votre compte Gmail™",
+ "description": ""
+ },
+ "popup_of": {
+ "message": "sur",
+ "description": ""
+ },
+ "options_notifications_15": {
+ "message": "Default sound notification is",
+ "description": ""
+ },
+ "options_notifications_21": {
+ "message": "La notification sonore définie par l'utilisateur est",
+ "description": ""
+ },
+ "options_toolbar_9": {
+ "message": "La hauteur du panneau de la barre d'outils dans le mode \"contenu total\" est (en pixels) :",
+ "description": ""
+ },
+ "options_toolbar_1": {
+ "message": "Comportement du bouton de la barre d'outils",
+ "description": ""
+ },
+ "unknown": {
+ "message": "inconnu",
+ "description": ""
+ },
+ "popup_msg_21": {
+ "message": "Décembre",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Tout marquer comme lu",
+ "description": ""
+ },
+ "options_notifications_8": {
+ "message": "Pour ne pas tronquer avec des points de suspension, utiliser un nombre élevé.",
+ "description": ""
+ },
+ "options_donation": {
+ "message": "Faire un don",
+ "description": ""
+ },
+ "msg_3": {
+ "message": "Le texte sélectionné est copié dans le presse-papiers.",
+ "description": ""
+ },
+ "options_misc_7": {
+ "message": "Afficher la page de bienvenue après une mise à jour",
+ "description": ""
+ },
+ "options_gmail": {
+ "message": "Gmail™ :",
+ "description": ""
+ },
+ "label_1": {
+ "message": "Rafraîchir",
+ "description": ""
+ },
+ "options_notifications_5": {
+ "message": "Variables disponibles :",
+ "description": ""
+ },
+ "options_notifications_24": {
+ "message": "Le volume est un nombre entre 0 et 100 où 100 est le volume le plus fort (par défaut).",
+ "description": ""
+ },
+ "options_notifications_10": {
+ "message": "Remarque : pour les utilisateurs de Mac. Depuis la version 28.0 de Firefox, toutes les notifications de bureau sont gérées par le \"Centre de Notifications\" Mac qui provoque une alerte sonore supplémentaire. Vous devez désactiver soit cette notification sonore, soit celle générée par le \"Centre de Notifications\".",
+ "description": ""
+ },
+ "options_misc_2": {
+ "message": "Le type de tri par défaut respecte l'ordre de connexions.",
+ "description": ""
+ },
+ "options_toolbar_2": {
+ "message": "Toujours ouvrir le panneau de prévisualisation d'e-mail",
+ "description": ""
+ },
+ "popup_settings": {
+ "message": "paramètres",
+ "description": ""
+ },
+ "options_gmail_4": {
+ "message": "3ème compte (/mail/u/2/)",
+ "description": ""
+ },
+ "options_toolbar_5": {
+ "message": "Afficher le résumé uniquement",
+ "description": ""
+ },
+ "options_notifications_12": {
+ "message": "Les notifications dans la barre de tâches ne sont pas supportées sous Linux pour le moment.",
+ "description": ""
+ },
+ "options_notifications_35": {
+ "message": "Pour sélectionner un nouveau son personnalisé, sélectionnez d'abord un son intégré, puis modifiez l'option en son personnalisé",
+ "description": ""
+ },
+ "msg_1": {
+ "message": "Un onglet est déjà ouvert. Cliquez sur le bouton de la barre d'outils pour ouvrir Gmail™ dans un nouvel onglet, ou pour basculer sur un onglet Gmail™ existant.",
+ "description": ""
+ },
+ "popup_refresh": {
+ "message": "Rafraîchir",
+ "description": ""
+ },
+ "options_misc_5": {
+ "message": "Couleur bleu pour \"Tous lus\" et couleur gris pour \"Déconnecté\"",
+ "description": ""
+ },
+ "options_timings_l8": {
+ "message": "Positionner la valeur à zéro pour éviter le relevé d'e-mails jusqu'au premier rafraîchissement manuel [Non disponible sous Safari].",
+ "description": ""
+ },
+ "popup_msg_19": {
+ "message": "Octobre",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "titre des contenus d'e-mail",
+ "description": ""
+ },
+ "tooltip_3": {
+ "message": "Clic droit : sélections des comptes",
+ "description": ""
+ },
+ "popup_date_format": {
+ "message": "%dd %mm %yy",
+ "description": ""
+ },
+ "options_notifications": {
+ "message": "Notifications :",
+ "description": ""
+ },
+ "options_timings_l6": {
+ "message": "Une valeur non nulle déclenche une notification sur le bureau et une alerte sonore (similaire à l'arrivée d'un nouvel e-mail) de façon perpétuelle si vous avez un ou plusieurs e-mails non lus.",
+ "description": ""
+ },
+ "popup_msg_12": {
+ "message": "Mars",
+ "description": ""
+ },
+ "options_notifications_22": {
+ "message": "Si votre navigateur ne lit pas le son de notification personnalisé, essayez de le convertir en un format WAV simple à l'aide d'un outil de conversion en ligne.",
+ "description": ""
+ },
+ "options_tab_1": {
+ "message": "Chercher un compte Gmail™ ouvert seulement dans la fenêtre active",
+ "description": ""
+ },
+ "popup_msg_7_format": {
+ "message": "%d jours plus tôt",
+ "description": ""
+ },
+ "options_timings_l1": {
+ "message": "Relever les nouveaux e-mails tous les (en secondes) :",
+ "description": ""
+ },
+ "options_toolbar_4": {
+ "message": "Mode du panneau de la barre d'outils",
+ "description": ""
+ },
+ "toolbar_label": {
+ "message": "Notifieur Gmail™",
+ "description": ""
+ },
+ "popup_msg_1": {
+ "message": "à l'instant",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Ouvrir les paramètres",
+ "description": ""
+ },
+ "options_misc_3": {
+ "message": "La légende de la barre d'outils est",
+ "description": ""
+ },
+ "options_gmail_12": {
+ "message": "Séparer les flux par \",\" (virgule). Exemple de flux : https://mail.google.com/mail/u/0/feed/atom/inbox",
+ "description": ""
+ },
+ "options_toolbar_12": {
+ "message": "! : Signaler comme spam, # : Mettre à la corbeille, e : Archiver, Shift + i : Marquer comme lu.",
+ "description": ""
+ },
+ "options_px": {
+ "message": "pixel(s)",
+ "description": ""
+ },
+ "options_misc_11": {
+ "message": "En positionnant cette préférence à zéro, vous ne recevrez ni de notifications de bureau ni de notifications sonores ; néanmoins, vous recevrez toujours une notification de badge.",
+ "description": ""
+ },
+ "options_notifications_20": {
+ "message": "Son défini par l'utilisateur",
+ "description": ""
+ },
+ "and": {
+ "message": "et",
+ "description": ""
+ },
+ "options_tab_7": {
+ "message": "Toujours utiliser des onglets vierges au lieu d'ouvrir un nouvel onglet quand ouvrir dans un onglet est activé.",
+ "description": ""
+ },
+ "options_toolbar_3": {
+ "message": "Ouvrir un compte Gmail™ si un seul compte est connecté",
+ "description": ""
+ },
+ "options_gmail_7": {
+ "message": "6ème compte (/mail/u/5/)",
+ "description": ""
+ },
+ "popup_msg_8_format": {
+ "message": "%d semaines plus tôt",
+ "description": ""
+ },
+ "options_toolbar": {
+ "message": "Barre d'outils :",
+ "description": ""
+ },
+ "options_notifications_6": {
+ "message": "Tronquer les notifications plus longues que",
+ "description": ""
+ },
+ "popup_wait": {
+ "message": "Patientez...",
+ "description": ""
+ },
+ "tooltip_2": {
+ "message": "Clic milieu (ou Ctrl+clic gauche) : rafraîchir tous les comptes",
+ "description": ""
+ },
+ "options_notifications_29": {
+ "message": "Cette option est liée au menu contextuel sur le bouton de la barre d'outils -> désactiver toutes les notifications -> période de temps personnalisée.",
+ "description": ""
+ },
+ "options_tab_3": {
+ "message": "Ouvrir un nouveau compte Gmail™ à côté de l'onglet actif",
+ "description": ""
+ },
+ "options_gmail_8": {
+ "message": "Marquer le message comme lu en l'archivant",
+ "description": ""
+ },
+ "options_toolbar_17": {
+ "message": "Ouvrir le premier compte Gmail™",
+ "description": ""
+ },
+ "options_notifications_7": {
+ "message": "caractères pour les champs [objet] et [résumé].",
+ "description": ""
+ },
+ "options_misc_10": {
+ "message": "Déclencher uniquement les notifications sonores et de bureau quand un e-mail est arrivé depuis moins de (en minutes) :",
+ "description": ""
+ },
+ "options_tab_8": {
+ "message": "Ignorer les onglets Gmail™ ouverts",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(aucun objet)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Choisir un fichier son",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "1 minute plus tôt",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "Juillet",
+ "description": ""
+ },
+ "label_8": {
+ "message": "Pour 2 heures",
+ "description": ""
+ },
+ "msg_4": {
+ "message": "Remarque : pour que le notifieur fonctionne correctement, vous devez être connecté à votre compte Google.",
+ "description": ""
+ },
+ "popup_msg_20": {
+ "message": "Novembre",
+ "description": ""
+ },
+ "options_toolbar_6": {
+ "message": "Afficher la totalité du contenu",
+ "description": ""
+ },
+ "options_gmail_11": {
+ "message": "Flux personnalisés :",
+ "description": ""
+ },
+ "options_tab_2": {
+ "message": "Ne pas chercher les comptes Gmail™ ouverts dans les autres fenêtres du navigateur. Si Gmail™ n'est pas ouvert dans la fenêtre active, ouvrir un nouvel onglet.",
+ "description": ""
+ },
+ "label_11": {
+ "message": "Rédiger un e-mail",
+ "description": ""
+ },
+ "options_toolbar_7": {
+ "message": "La largeur du panneau de la barre d'outils dans le mode \"contenu total\" est (en pixels) :",
+ "description": ""
+ },
+ "options_notifications_31": {
+ "message": "Son de notification personnalisé",
+ "description": ""
+ },
+ "options_timings_l5": {
+ "message": "La période minimum est de 5 minutes.",
+ "description": ""
+ },
+ "options_misc": {
+ "message": "Divers :",
+ "description": ""
+ },
+ "options_gmail_2": {
+ "message": "Séparer les libellés par \",\" (virgule).",
+ "description": ""
+ },
+ "options_misc_4": {
+ "message": "Couleur gris pour \"Tous lus\" et couleur bleu pour \"Déconnecté\"",
+ "description": ""
+ },
+ "options_toolbar_13": {
+ "message": "Rendre les e-mails en HTML dans le mode \"contenu total\"",
+ "description": ""
+ },
+ "options_toolbar_16": {
+ "message": "Rafraîchir tous les comptes",
+ "description": ""
+ },
+ "options_gmail_6": {
+ "message": "5ème compte (/mail/u/4/)",
+ "description": ""
+ },
+ "popup_msg_14": {
+ "message": "Mai",
+ "description": ""
+ },
+ "options_inshort": {
+ "message": "Notifieur multi-comptes et multi-libellés pour Google Mail (Gmail™).",
+ "description": ""
+ },
+ "options_misc_12": {
+ "message": "Ne pas inclure de détails d'identifiant dans la bulle textuelle",
+ "description": ""
+ },
+ "options_tab_4": {
+ "message": "Ouvrir un compte Gmail™ dans l'onglet actif",
+ "description": ""
+ },
+ "popup_msg_3_format": {
+ "message": "%d minutes plus tôt",
+ "description": ""
+ },
+ "label_12": {
+ "message": "Ouvrir la FAQ",
+ "description": ""
+ },
+ "description": {
+ "message": "Notifieur multi-comptes et multi-libellés pour Google Mail (Gmail™)",
+ "description": ""
+ },
+ "popup_spam": {
+ "message": "Spam",
+ "description": ""
+ }
+}
diff --git a/v1/builds/unpacked/chrome/_locales/hu/messages.json b/v1/builds/unpacked/chrome/_locales/hu/messages.json
new file mode 100644
index 00000000..ce456f54
--- /dev/null
+++ b/v1/builds/unpacked/chrome/_locales/hu/messages.json
@@ -0,0 +1,690 @@
+{
+ "label_9": {
+ "message": "5 órára",
+ "description": ""
+ },
+ "options_notifications_19": {
+ "message": "Windows e-mail értesítés",
+ "description": ""
+ },
+ "options_notifications_17": {
+ "message": "Checker Plus bell értesítés",
+ "description": ""
+ },
+ "options_notifications_13": {
+ "message": "A tálcaértesítés ikonjára kattintás nyissa meg az eszközpanelt (Csak Windows, béta)",
+ "description": ""
+ },
+ "options_notifications_30": {
+ "message": "Az összes egyidejű asztali értesítés összevonása egy értesítéssé",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Beállítások megnyitása",
+ "description": ""
+ },
+ "options_timings_l7": {
+ "message": "Ne keressen új leveleket induláskor ennyi másodpercig:",
+ "description": ""
+ },
+ "label_4": {
+ "message": "5 percre",
+ "description": ""
+ },
+ "options_timings_l3": {
+ "message": "Emlékeztessen az összes olvasatlan levélre (percenként):",
+ "description": ""
+ },
+ "popup_msg_4": {
+ "message": "1 óra múlva",
+ "description": ""
+ },
+ "options_gmail_1": {
+ "message": "Elsődleges fiók(/mail/u/0/)",
+ "description": ""
+ },
+ "options_gmail_10": {
+ "message": "A következő címkék és fiókok esetén legyen értesítés:",
+ "description": ""
+ },
+ "options_notifications_1": {
+ "message": "Asztali értesítések megjelenítése új levelek érkezésekor",
+ "description": ""
+ },
+ "options_notifications_9": {
+ "message": "Hangjelzés lejátszása új levelek érkezésekor",
+ "description": ""
+ },
+ "label_6": {
+ "message": "30 percre",
+ "description": ""
+ },
+ "options_misc_8": {
+ "message": "Összes beállítás visszaállítása alapértelmezettre",
+ "description": ""
+ },
+ "options_notifications_28": {
+ "message": "Összes értesítés tiltása egyéni időhosszra (percben):",
+ "description": ""
+ },
+ "options_timings_l4": {
+ "message": "Állítsa az értéket 0-ra nem ismétlődő értesítésekhez.",
+ "description": ""
+ },
+ "options_notifications_32": {
+ "message": "név vagy levél tartalmazza",
+ "description": ""
+ },
+ "options_tab_6": {
+ "message": "Gmail-fiók megnyitása új ablakban",
+ "description": ""
+ },
+ "options_notifications_25": {
+ "message": "Gyakran az alapértelmezett hangértesítések nem jól kerülnek lejátszásra Safari-ban. Ebben az esetben állítson be egyéni hangfájlt.",
+ "description": ""
+ },
+ "options_toolbar_15": {
+ "message": "Az eszköztár gombjára a középső egérgombbal kattintás",
+ "description": ""
+ },
+ "options_toolbar_10": {
+ "message": "A legkisebb magasság is 500px.",
+ "description": ""
+ },
+ "popup_msg_10": {
+ "message": "Január",
+ "description": ""
+ },
+ "options_notifications_26": {
+ "message": "Mindig látszódjon a tálcaértesítő (Csak Windows)",
+ "description": ""
+ },
+ "label_3": {
+ "message": "Összes értesítés tiltása",
+ "description": ""
+ },
+ "label_13": {
+ "message": "Egyéni időhosszra",
+ "description": ""
+ },
+ "options_empty": {
+ "message": "nincs megadva",
+ "description": ""
+ },
+ "options_notifications_3": {
+ "message": "Ez a beállítás lehet, hogy nem működik ezen az operációs rendszeren.",
+ "description": ""
+ },
+ "options_timings": {
+ "message": "Időzítés:",
+ "description": ""
+ },
+ "options_gmail_5": {
+ "message": "Negyedik fiók (/mail/u/3/)",
+ "description": ""
+ },
+ "label_5": {
+ "message": "15 percre",
+ "description": ""
+ },
+ "options_misc_9": {
+ "message": "Piros szín a \"Nincs olvasatlan\" és szürke szín a \"Szétkapcsolva\"",
+ "description": ""
+ },
+ "popup_msg_5": {
+ "message": "órával ezelőtt",
+ "description": ""
+ },
+ "options_notifications_27": {
+ "message": "A tálcaértesítő akkor is látszódjon, amikor nincs olvasatlan üzenet. ",
+ "description": ""
+ },
+ "options_misc_1": {
+ "message": "Fiókok betűrendbe rendezése",
+ "description": ""
+ },
+ "tooltip_1": {
+ "message": "Jobb egér: Gmail vagy előnézeti panel megnyitása",
+ "description": ""
+ },
+ "notification": {
+ "message": "Feladó: [author_email][break]Tárgy: [title][break]Összegzés: [summary]",
+ "description": ""
+ },
+ "popup_trash": {
+ "message": "Kuka",
+ "description": ""
+ },
+ "options_tab": {
+ "message": "Lap megnyitása:",
+ "description": ""
+ },
+ "log_into_your_account": {
+ "message": "Jelentkezzen be fiókjába",
+ "description": ""
+ },
+ "label_10": {
+ "message": "Értesítések engedélyezése",
+ "description": ""
+ },
+ "options_notifications_23": {
+ "message": "A hangértesítés hangereje",
+ "description": ""
+ },
+ "options_timings_l2": {
+ "message": "A legkisebb időköz 10 másodperc.",
+ "description": ""
+ },
+ "options_toolbar_11": {
+ "message": "Gyorsbillentyű támogatása az eszköztár gombján",
+ "description": ""
+ },
+ "options_gmail_9": {
+ "message": "Néhány népszerű címke: \"beérkező\", \"fontos\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\", and \"^smartlabel_group\"",
+ "description": ""
+ },
+ "popup_msg_17": {
+ "message": "Augusztus",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "Június",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "levélösszegző tartalmazza",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Bejelentkezett fiókok",
+ "description": ""
+ },
+ "options_misc_13": {
+ "message": "Alapértelmezetten az értesítő frissíti az eszköztár gombjának buboréksúgóját a bejelentkezési információval. Ezen opció kikapcsolásával a buboréksúgó szövege az alapértelmezett szöveg marad.",
+ "description": ""
+ },
+ "options_misc_6": {
+ "message": "Asztali figyelmeztetés megjelenítése, hogy Gmail már az aktív fülön nyitva van ",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Megj. olvasottként",
+ "description": ""
+ },
+ "options_notifications_4": {
+ "message": "Értesítés formátuma",
+ "description": ""
+ },
+ "settings_open_title": {
+ "message": "Beállítások oldal megnyitása",
+ "description": ""
+ },
+ "label_2": {
+ "message": "Beállítások",
+ "description": ""
+ },
+ "options_toolbar_14": {
+ "message": "Amennyiben a levelet szövegként szeretné látni, nem jelölje be ezt a jelölőnégyzetet.",
+ "description": ""
+ },
+ "options_notifications_18": {
+ "message": "Checker Plus ding értesítés",
+ "description": ""
+ },
+ "options_tab_5": {
+ "message": "Gmail-fiók megnyitása egy háttér lapon",
+ "description": ""
+ },
+ "label_7": {
+ "message": "1 órára",
+ "description": ""
+ },
+ "popup_archive": {
+ "message": "Archív",
+ "description": ""
+ },
+ "msg_2": {
+ "message": "A link a vágólapra került.",
+ "description": ""
+ },
+ "options_title": {
+ "message": "Beállítások - Gmail™ Értesítő",
+ "description": ""
+ },
+ "popup_msg_13": {
+ "message": "Április",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "%d hónappal ezelőtt",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "Február",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Beérkező levelek megnyitása",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "Amikor nincs bepipálva, Gmail értesítő az összes megnyitott ablakot (az aktívat is) ellenőrzi nyitva lévő Gmail példányért és átvált a lapra, amikor lapnyitási kérelmet kap. ",
+ "description": ""
+ },
+ "gmail": {
+ "message": "Gmail™ értesítő",
+ "description": ""
+ },
+ "popup_msg_6": {
+ "message": "Tegnap",
+ "description": ""
+ },
+ "options_toolbar_8": {
+ "message": "A legkisebb szélesség 500px.",
+ "description": ""
+ },
+ "options_notifications_16": {
+ "message": "Gmail értesítő alapértelmezett jelzése",
+ "description": ""
+ },
+ "options_misc_14": {
+ "message": "Ne pontos szám jelenjen meg, amikor az olvasatlan levelek száma nagyobb, mint 999. ",
+ "description": ""
+ },
+ "popup_msg_18": {
+ "message": "Szeptember",
+ "description": ""
+ },
+ "options_notifications_14": {
+ "message": "Ez a tulajdonság jelenleg komoly fejlesztés alatt áll, így a Forefox-ot instabillá teheti. [Újraindítás szükséges].",
+ "description": ""
+ },
+ "options_gmail_3": {
+ "message": "Másodlagos fiók (/mail/u/1/)",
+ "description": ""
+ },
+ "options_notifications_11": {
+ "message": "\"Windows tálcaértesítés\" vagy \"Mac OS Dock értesítés\" megjelenítése",
+ "description": ""
+ },
+ "options_notifications_2": {
+ "message": "Asztali értesítés megjelenítése ennyi másodpercig:",
+ "description": ""
+ },
+ "log_in_to_your_account": {
+ "message": "Jelentkezzen be Gmail-fiókjába",
+ "description": ""
+ },
+ "popup_of": {
+ "message": "/",
+ "description": ""
+ },
+ "options_notifications_15": {
+ "message": "Alapértelmezett hangértesítés bekapcsolva",
+ "description": ""
+ },
+ "options_notifications_21": {
+ "message": "A felhasználó által megadott hang",
+ "description": ""
+ },
+ "options_toolbar_9": {
+ "message": "Teljes tartalom megjelenítésekor az eszköztár panel magassága pixelben:",
+ "description": ""
+ },
+ "options_toolbar_1": {
+ "message": "Eszköztárgomb viselkedése",
+ "description": ""
+ },
+ "unknown": {
+ "message": "ismeretlen",
+ "description": ""
+ },
+ "popup_msg_21": {
+ "message": "December",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Összes megjelölése olvasottként",
+ "description": ""
+ },
+ "options_notifications_8": {
+ "message": "Hogy ne lehessen szólevágás, nagy számot adjon meg.",
+ "description": ""
+ },
+ "options_donation": {
+ "message": "Támogasd munkánkat",
+ "description": ""
+ },
+ "msg_3": {
+ "message": "A kijelölt szöveg a vágólapra került.",
+ "description": ""
+ },
+ "options_misc_7": {
+ "message": "Üdvözlő oldal megjelenítése frissítéskor",
+ "description": ""
+ },
+ "options_gmail": {
+ "message": "Gmail:",
+ "description": ""
+ },
+ "label_1": {
+ "message": "Frissítés",
+ "description": ""
+ },
+ "options_notifications_5": {
+ "message": "Használható változók:",
+ "description": ""
+ },
+ "options_notifications_24": {
+ "message": "A hangerő 0 és 100 közötti szám, ahol 100 a leghangosabb (ez az alapértelmezett érték).",
+ "description": ""
+ },
+ "options_notifications_10": {
+ "message": "Megjegyzés Mac használóknak. A Firefox 28.0 verziójától az összes asztali értesítést a Mac Notification Center (Mac Üzenetközpont) kezeli, ami extra hangjelzést okoz. Ezért célszerű vagy ezt, vagy a Notification Center hangértesítését kikapcsolni.",
+ "description": ""
+ },
+ "options_misc_2": {
+ "message": "Az alapértelmezett rendezés a bejelentkezés sorrendje.",
+ "description": ""
+ },
+ "options_toolbar_2": {
+ "message": "Mindig nyissa meg a levél előnézetpanelét",
+ "description": ""
+ },
+ "popup_settings": {
+ "message": "beállítások",
+ "description": ""
+ },
+ "options_gmail_4": {
+ "message": "Harmadik fiók (/mail/u/2/)",
+ "description": ""
+ },
+ "options_toolbar_5": {
+ "message": "Csak az összegzés megjelenítése",
+ "description": ""
+ },
+ "options_notifications_12": {
+ "message": "Tálcaértesítések nem támogatottak jelenleg Linux alatt.",
+ "description": ""
+ },
+ "options_notifications_35": {
+ "message": "Új egyéni hang választásához először válassz egy beépített hangot, majd állítsd be az egyéni hangértesítés opciót. ",
+ "description": ""
+ },
+ "msg_1": {
+ "message": "Már megnyitotta a Gmail-t. Kattintson az eszköztár gombjára a Gmail megnyitásához új ablakban vagy már megnyitott Gmail lapra váltáshoz.",
+ "description": ""
+ },
+ "popup_refresh": {
+ "message": "Frissítés",
+ "description": ""
+ },
+ "options_misc_5": {
+ "message": "Kék szín a \"Nincs olvasatlan\" és szürke szín a \"Szétkapcsolva\"",
+ "description": ""
+ },
+ "options_timings_l8": {
+ "message": "Állítsa 0-ra az értéket, hogy ne legyen automatikus ellenőrzés az első kézi frissítésig [Safariban nem érhető el].",
+ "description": ""
+ },
+ "popup_msg_19": {
+ "message": "Október",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "levél címe tartalmazza",
+ "description": ""
+ },
+ "tooltip_3": {
+ "message": "Jobb egér: fiókválasztás",
+ "description": ""
+ },
+ "popup_date_format": {
+ "message": "%yy. %mm %dd.",
+ "description": ""
+ },
+ "options_notifications": {
+ "message": "Értesítések:",
+ "description": ""
+ },
+ "options_timings_l6": {
+ "message": "Nem 0 érték esetén addig él az asztali értesítő és a hangjelzés (hasonlóan, mint új levél érkezésél) míg van olvasatlan levele.",
+ "description": ""
+ },
+ "popup_msg_12": {
+ "message": "Március",
+ "description": ""
+ },
+ "options_notifications_22": {
+ "message": "Amennyiben böngésződ nem játssza le az egyéni hangot, próbáld a hangot online konvertáló segítségével egyszerű WAV formátumra átalakítani..",
+ "description": ""
+ },
+ "options_tab_1": {
+ "message": "Gmail-fiók keresése csak az aktív böngészőablakban",
+ "description": ""
+ },
+ "popup_msg_7_format": {
+ "message": "%d nappal ezelőtt",
+ "description": ""
+ },
+ "options_timings_l1": {
+ "message": "Új levelek ellenőrzése ennyi másodpercenként:",
+ "description": ""
+ },
+ "options_toolbar_4": {
+ "message": "Eszköztár panel mód",
+ "description": ""
+ },
+ "toolbar_label": {
+ "message": "Gmail™ értesítő",
+ "description": ""
+ },
+ "popup_msg_1": {
+ "message": "éppen most",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Beállítások megnyitása",
+ "description": ""
+ },
+ "options_misc_3": {
+ "message": "Eszköztár panel színmintája",
+ "description": ""
+ },
+ "options_gmail_12": {
+ "message": "A hírcsatornákat \",\"-vel (vesszővel) válassza el. Példa hírcsatornára: https://mail.google.com/mail/u/0/feed/atom/inbox",
+ "description": ""
+ },
+ "options_toolbar_12": {
+ "message": "!: Spam bejelentése, #: Kuka, e: Archiválás, Shift + i: Megjelölés olvasottként.",
+ "description": ""
+ },
+ "options_px": {
+ "message": "px",
+ "description": ""
+ },
+ "options_misc_11": {
+ "message": "Amennyiben nullára állítja ezt az értéket, nem kap sem asztali- sem hangértesítést, de az ikonértesítés továbbra is megmarad.",
+ "description": ""
+ },
+ "options_notifications_20": {
+ "message": "Felhasználó által megadott hang",
+ "description": ""
+ },
+ "and": {
+ "message": "és",
+ "description": ""
+ },
+ "options_tab_7": {
+ "message": "Minden esetben új lap nyitása helyett üres lapot használjon, amikor a lapon megnyitás be van kapcsolva",
+ "description": ""
+ },
+ "options_toolbar_3": {
+ "message": "Gmail-fiók megnyitása csak akkor, ha már egy fiókba bejelentkezett.",
+ "description": ""
+ },
+ "options_gmail_7": {
+ "message": "Hatodik fiók (/mail/u/5/)",
+ "description": ""
+ },
+ "popup_msg_8_format": {
+ "message": "%d héttel ezelőtt",
+ "description": ""
+ },
+ "options_toolbar": {
+ "message": "Eszköztár:",
+ "description": ""
+ },
+ "options_notifications_6": {
+ "message": "Értesítés levágása, ha hosszabb mint",
+ "description": ""
+ },
+ "popup_wait": {
+ "message": "Várj...",
+ "description": ""
+ },
+ "tooltip_2": {
+ "message": "Középső (vagy Ctrl+Bal) egér: Összes fiók frissítése",
+ "description": ""
+ },
+ "options_notifications_29": {
+ "message": "Ez az beállítás kapcsolatban van az eszköztáron lévő gombon jobb egérrel elérhető menü -> összes értesítés tiltása -> egyéni időhosszra beállítással.",
+ "description": ""
+ },
+ "options_tab_3": {
+ "message": "Gmail-fiók megnyitása az aktív lap mellett",
+ "description": ""
+ },
+ "options_gmail_8": {
+ "message": "Archiváláskor olvasottnak megjelölés",
+ "description": ""
+ },
+ "options_toolbar_17": {
+ "message": "Elsődleges Gmail-fiók megnyitása",
+ "description": ""
+ },
+ "options_notifications_7": {
+ "message": "karakternél a [cím] és az [összegzés] mező.",
+ "description": ""
+ },
+ "options_misc_10": {
+ "message": "Csak asztali- és hangértesítés jelezzen amikor levél érkezett kevesebb, mint ennyi percen belül:",
+ "description": ""
+ },
+ "options_tab_8": {
+ "message": "Már nyitva lévő Gmail lapok figyelmen kívül hagyása",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(nincs tárgy)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Válassz egy hangfájlt",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "1 perccel ezelőtt",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "Július",
+ "description": ""
+ },
+ "label_8": {
+ "message": "2 órára",
+ "description": ""
+ },
+ "msg_4": {
+ "message": "Megjegyzés: Az értesítő működéséhez szükséges, hogy Google-fiókjába bejelentkezzen.",
+ "description": ""
+ },
+ "popup_msg_20": {
+ "message": "November",
+ "description": ""
+ },
+ "options_toolbar_6": {
+ "message": "Teljes tartalom megjelenítése",
+ "description": ""
+ },
+ "options_gmail_11": {
+ "message": "Egyéni hírforrások:",
+ "description": ""
+ },
+ "options_tab_2": {
+ "message": "Ne keressen megnyitott Gmail-fiókokért más böngészőablakot. Ha a Gmail nincs megnyitva, új lapon nyissa meg.",
+ "description": ""
+ },
+ "label_11": {
+ "message": "Levél írása",
+ "description": ""
+ },
+ "options_toolbar_7": {
+ "message": "Teljes tartalom megjelenítésekor az eszköztár panel szélessége pixelben:",
+ "description": ""
+ },
+ "options_notifications_31": {
+ "message": "Egyéni hangértesítés",
+ "description": ""
+ },
+ "options_timings_l5": {
+ "message": "A legrövidebb időköz 5 perc.",
+ "description": ""
+ },
+ "options_misc": {
+ "message": "Egyebek:",
+ "description": ""
+ },
+ "options_gmail_2": {
+ "message": "A címkéket vesszővel (\",\"-vel) válassza el.",
+ "description": ""
+ },
+ "options_misc_4": {
+ "message": "Szürke szín a \"Nincs olvasatlan\" és kék szín a \"Szétkapcsolva\"",
+ "description": ""
+ },
+ "options_toolbar_13": {
+ "message": "Levél megjelenítése HTML-ként teljes tartalom módban",
+ "description": ""
+ },
+ "options_toolbar_16": {
+ "message": "Összes fiók frissítése",
+ "description": ""
+ },
+ "options_gmail_6": {
+ "message": "Ötödik fiók (/mail/u/4/)",
+ "description": ""
+ },
+ "popup_msg_14": {
+ "message": "Május",
+ "description": ""
+ },
+ "options_inshort": {
+ "message": "Egy vagy több Google Mail (Gmail) fiókhoz, illetve címkéhez értesítő.",
+ "description": ""
+ },
+ "options_misc_12": {
+ "message": "A buboréksúgó szövegébe ne helyezz bejelentkezési adatokat",
+ "description": ""
+ },
+ "options_tab_4": {
+ "message": "Gmail-fiók megnyitása az aktív lapon",
+ "description": ""
+ },
+ "popup_msg_3_format": {
+ "message": "%d perccel ezelőtt",
+ "description": ""
+ },
+ "label_12": {
+ "message": "GyÍK megnyitása",
+ "description": ""
+ },
+ "description": {
+ "message": "Egy vagy több Google Mail (Gmail) fiókhoz, illetve címkéhez értesítő",
+ "description": ""
+ },
+ "popup_spam": {
+ "message": "Spam",
+ "description": ""
+ }
+}
\ No newline at end of file
diff --git a/src/_locales/nl/messages.json b/v1/builds/unpacked/chrome/_locales/nl/messages.json
similarity index 74%
rename from src/_locales/nl/messages.json
rename to v1/builds/unpacked/chrome/_locales/nl/messages.json
index 63f29541..3bcae35e 100644
--- a/src/_locales/nl/messages.json
+++ b/v1/builds/unpacked/chrome/_locales/nl/messages.json
@@ -15,6 +15,14 @@
"message": "Werkbalkpaneel openen bij klikken op taakbalkmeldingspictogram (alleen op Windows - beta)",
"description": ""
},
+ "options_notifications_30": {
+ "message": "Alle bureaubladmeldingen samenvoegen in één melding",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Opties openen",
+ "description": ""
+ },
"options_timings_l7": {
"message": "Niet controleren op nieuwe e-mails bij opstarten voor de duur van (in seconden):",
"description": ""
@@ -27,6 +35,10 @@
"message": "Herinnering voor alle ongelezen e-mails, elke (in minuten):",
"description": ""
},
+ "popup_msg_4": {
+ "message": "1 uur geleden",
+ "description": ""
+ },
"options_gmail_1": {
"message": "Hoofdaccount (/mail/u/0/)",
"description": ""
@@ -51,10 +63,18 @@
"message": "Alle instellingen naar standaardwaarden herstellen",
"description": ""
},
+ "options_notifications_28": {
+ "message": "Schakelt alle meldingen uit voor een aangepaste tijdsperiode (in minuten):",
+ "description": ""
+ },
"options_timings_l4": {
"message": "Stel de waarde op nul in voor niet-periodieke herinneringen.",
"description": ""
},
+ "options_notifications_32": {
+ "message": "naam of e-mail bevat",
+ "description": ""
+ },
"options_tab_6": {
"message": "Gmail-account openen in een nieuw venster",
"description": ""
@@ -71,6 +91,10 @@
"message": "Minimale hoogte is 500px.",
"description": ""
},
+ "popup_msg_10": {
+ "message": "januari",
+ "description": ""
+ },
"options_notifications_26": {
"message": "Systeemvakmelding altijd weergeven (wordt alleen ondersteund op Windows)",
"description": ""
@@ -79,6 +103,10 @@
"message": "Alle meldingen uitschakelen",
"description": ""
},
+ "label_13": {
+ "message": "Voor een aangepaste tijdsperiode",
+ "description": ""
+ },
"options_empty": {
"message": "niet opgegeven",
"description": ""
@@ -103,6 +131,10 @@
"message": "Rode kleur voor \"Geen ongelezen berichten\" en grijze kleur voor \"Niet verbonden\"",
"description": ""
},
+ "popup_msg_5": {
+ "message": "uren geleden",
+ "description": ""
+ },
"options_notifications_27": {
"message": "Er zal een systeemvakmelding worden weergegeven zelfs als er geen ongelezen bericht is.",
"description": ""
@@ -119,6 +151,10 @@
"message": "Van: [author_email][break]Titel: [title][break]Samenvatting: [summary]",
"description": ""
},
+ "popup_trash": {
+ "message": "Prullenbak",
+ "description": ""
+ },
"options_tab": {
"message": "Tabblad openen:",
"description": ""
@@ -147,18 +183,42 @@
"message": "Enkele populaire labels: \"postvakIN\", \"belangrijk\", \"^slimlabel_persoonlijk\", \"^slimlabel_nieuwsbrief\", \"^slimlabel_melding\" en \"^slimlabel_groep\"",
"description": ""
},
+ "popup_msg_17": {
+ "message": "augustus",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "juni",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "e-mail-samenvatting bevat",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Ingelogde accounts",
+ "description": ""
+ },
"options_misc_13": {
"message": "Standaard weergeeft de melder inloggegevens op de tooltip van de werkbalkknop. Door deze optie uit te vinden zal de tekst op de standaardwaarde blijven.",
"description": ""
},
"options_misc_6": {
- "message": "Geen bureaubladmeldingen weergeven om te waarschuwen dat de Gmail-website al geopend is",
+ "message": "Bureaubladmeldingen weergeven als waarschuwing wanneer Gmail al geopend is op het actieve tabblad",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Als gelezen markeren",
"description": ""
},
"options_notifications_4": {
"message": "Meldingopmaak",
"description": ""
},
+ "settings_open_title": {
+ "message": "Open de opties-pagina (instellingen)",
+ "description": ""
+ },
"label_2": {
"message": "Instellingen",
"description": ""
@@ -179,6 +239,10 @@
"message": "Voor 1 uur",
"description": ""
},
+ "popup_archive": {
+ "message": "Archief",
+ "description": ""
+ },
"msg_2": {
"message": "Link is gekopieerd naar het klembord.",
"description": ""
@@ -187,10 +251,34 @@
"message": "Voorkeuren - Gmail™-melder",
"description": ""
},
+ "popup_msg_13": {
+ "message": "april",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "%d maand(en) geleden",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "februari",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Postvak IN openen",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "Als dit niet is aangevinkt zal Gmail Notifier óf het actieve venster controleren óf alle geopende vensters of Gmail al geopend is. Daarna zal naar het actieve tabblad worden overgeschakeld als dat is aangevraagd.",
+ "description": ""
+ },
"gmail": {
"message": "Gmail™-melder",
"description": ""
},
+ "popup_msg_6": {
+ "message": "Gisteren",
+ "description": ""
+ },
"options_toolbar_8": {
"message": "Minimale breedte is 500px.",
"description": ""
@@ -203,6 +291,10 @@
"message": "Geen exact badgenummer weergeven wanneer het aantal ongelezen e-mails hoger is dan 999",
"description": ""
},
+ "popup_msg_18": {
+ "message": "september",
+ "description": ""
+ },
"options_notifications_14": {
"message": "Deze optie is zeer experimenteel en kan mogelijk instabiliteit veroorzaken in Firefox. [Herstart vereist].",
"description": ""
@@ -223,8 +315,12 @@
"message": "Log alstublieft in op uw Gmail-account",
"description": ""
},
+ "popup_of": {
+ "message": "van",
+ "description": ""
+ },
"options_notifications_15": {
- "message": "Meldingsgeluid is",
+ "message": "Standaard meldingsgeluid is",
"description": ""
},
"options_notifications_21": {
@@ -243,6 +339,14 @@
"message": "onbekend",
"description": ""
},
+ "popup_msg_21": {
+ "message": "december",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Alles als gelezen markeren",
+ "description": ""
+ },
"options_notifications_8": {
"message": "Om te afbreking te voorkomen, vul hier een groot getal in.",
"description": ""
@@ -303,10 +407,18 @@
"message": "Taakbalkmeldingen worden momenteel niet ondersteund op Linux-besturingssystemen.",
"description": ""
},
+ "options_notifications_35": {
+ "message": "Om een nieuw aangepast geluid te selecteren moet u eerst een ingebouwd geluid selecteren en deze wijzigen naar een aangepast geluid",
+ "description": ""
+ },
"msg_1": {
"message": "Tabblad is al geopend. Klik op de werkbalkknop om Gmail in een nieuw tabblad te openen of om naar een bestaand Gmail-tabblad over te schakelen.",
"description": ""
},
+ "popup_refresh": {
+ "message": "Verversen",
+ "description": ""
+ },
"options_misc_5": {
"message": "Blauwe kleur voor \"Geen ongelezen berichten en grijze kleur voor \"Niet verbonden\"",
"description": ""
@@ -315,10 +427,22 @@
"message": "Stel de waarde op nul in om geen e-mailcontrole uit te voeren zolang er nog geen handmatige verversing is uitgevoerd [Niet beschikbaar in Safari].",
"description": ""
},
+ "popup_msg_19": {
+ "message": "oktober",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "e-mail-titel bevat",
+ "description": ""
+ },
"tooltip_3": {
"message": "Rechtsklik: Accountselectie",
"description": ""
},
+ "popup_date_format": {
+ "message": "%mm %dd, %yy",
+ "description": ""
+ },
"options_notifications": {
"message": "Meldingen:",
"description": ""
@@ -327,14 +451,22 @@
"message": "Een waarde hoger dan nul zorgt voor constante bureaubladmeldingen en waarschuwingsgeluiden (vergelijkbaar met het arriveren van een Nieuwe e-mail) wanneer u ongelezen e-mail(s) hebt.",
"description": ""
},
+ "popup_msg_12": {
+ "message": "maart",
+ "description": ""
+ },
"options_notifications_22": {
- "message": "Als uw browser geen meldingsgeluid afspeelt, probeer dan om het te converteren naar plat WAV-formaat middels een online converteerapplicatie.",
+ "message": "Als uw browser geen aangepast meldingsgeluid afspeelt, probeer dan om het te converteren naar plat WAV-formaat middels een online converteerapplicatie.",
"description": ""
},
"options_tab_1": {
"message": "Alleen op het actieve venster zoeken naar een openstaand Gmail-account",
"description": ""
},
+ "popup_msg_7_format": {
+ "message": "%d dagen geleden",
+ "description": ""
+ },
"options_timings_l1": {
"message": "Op nieuwe e-mails controleren, elke (in seconden):",
"description": ""
@@ -347,6 +479,14 @@
"message": "Gmail™-melder",
"description": ""
},
+ "popup_msg_1": {
+ "message": "zojuist",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Instellingen openen",
+ "description": ""
+ },
"options_misc_3": {
"message": "Kleurenpatroon van werkbalk is",
"description": ""
@@ -387,6 +527,10 @@
"message": "Zesde account (/mail/u/5)",
"description": ""
},
+ "popup_msg_8_format": {
+ "message": "%d we(e)k(en) geleden",
+ "description": ""
+ },
"options_toolbar": {
"message": "Werkbalk:",
"description": ""
@@ -395,10 +539,18 @@
"message": "Meldingen afbreken die langer zijn dan",
"description": ""
},
+ "popup_wait": {
+ "message": "Wachten...",
+ "description": ""
+ },
"tooltip_2": {
"message": "Middelklik (of Ctrl+Links): Alle accounts verversen",
"description": ""
},
+ "options_notifications_29": {
+ "message": "Deze optie is gerelateerd aan het rechtermuisknopmenu op de werkbalkknop -> Alle meldingen uitschakelen -> Aangepaste tijdsperiode.",
+ "description": ""
+ },
"options_tab_3": {
"message": "Nieuw Gmail-account openen op tabblad naast actief tabblad",
"description": ""
@@ -419,6 +571,26 @@
"message": "Alleen bureaublad- en geluidsmeldingen weergeven wanneer een e-mail binnen is ontvangen in minder dan (in minuten):",
"description": ""
},
+ "options_tab_8": {
+ "message": "Geopende Gmail-tabbladen negeren",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(geen onderwerp)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Selecteer een audiobestand",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "1 minuut geleden",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "juli",
+ "description": ""
+ },
"label_8": {
"message": "Voor 2 uur",
"description": ""
@@ -427,6 +599,10 @@
"message": "Let op: om de melder correct te laten werken moet u ingelogd zijn op uw Google-account.",
"description": ""
},
+ "popup_msg_20": {
+ "message": "november",
+ "description": ""
+ },
"options_toolbar_6": {
"message": "Volledige inhoud weergeven",
"description": ""
@@ -447,6 +623,10 @@
"message": "Breedte van werkbalkpaneel in volledige-inhoudsweergave is (in pixels):",
"description": ""
},
+ "options_notifications_31": {
+ "message": "Aangepaste geluidsmelding",
+ "description": ""
+ },
"options_timings_l5": {
"message": "Minimale tijdsduur is 5 minuten.",
"description": ""
@@ -475,6 +655,10 @@
"message": "Vijfde account (/mail/u/4)",
"description": ""
},
+ "popup_msg_14": {
+ "message": "mei",
+ "description": ""
+ },
"options_inshort": {
"message": "Labels- en accountsmelder voor Google Mail (Gmail)",
"description": ""
@@ -487,12 +671,20 @@
"message": "Gmail-account openen op actief tabblad",
"description": ""
},
+ "popup_msg_3_format": {
+ "message": "%d minuten geleden",
+ "description": ""
+ },
"label_12": {
- "message": "Website openen",
+ "message": "Veel gestelde vragen (FAQ) openen",
"description": ""
},
"description": {
"message": "Labels- en accountsmelder voor Google Mail (Gmail)",
"description": ""
+ },
+ "popup_spam": {
+ "message": "Spam",
+ "description": ""
}
}
\ No newline at end of file
diff --git a/src/_locales/pl/messages.json b/v1/builds/unpacked/chrome/_locales/pl/messages.json
similarity index 72%
rename from src/_locales/pl/messages.json
rename to v1/builds/unpacked/chrome/_locales/pl/messages.json
index 50ce245d..8395b883 100644
--- a/src/_locales/pl/messages.json
+++ b/v1/builds/unpacked/chrome/_locales/pl/messages.json
@@ -15,8 +15,16 @@
"message": "Otwórz panel paska narzędzi podczas kliknięcia na ikonkę powiadomień paska zadań (tylko Windows, beta)",
"description": ""
},
+ "options_notifications_30": {
+ "message": "Połącz wszystkie jednoczesne powiadomienia na pulpicie w pojedyncze",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Otwórz opcje",
+ "description": ""
+ },
"options_timings_l7": {
- "message": "Nie sprawdzaj nowych wiadomości przy starcie przez (sekundy):",
+ "message": "Sprawdzaj nowe wiadomości przy starcie po (sekundy):",
"description": ""
},
"label_4": {
@@ -27,6 +35,10 @@
"message": "Przypominaj o nieprzeczytanych wiadomościach co (minuty):",
"description": ""
},
+ "popup_msg_4": {
+ "message": "godzinę temu",
+ "description": ""
+ },
"options_gmail_1": {
"message": "Konto główne (/mail/u/0/)",
"description": ""
@@ -51,10 +63,18 @@
"message": "Przywróć wszystkie ustawienia do fabrycznych",
"description": ""
},
+ "options_notifications_28": {
+ "message": "Wyłącz wszystkie powiadomienia na własny odstęp czasowy (minuty):",
+ "description": ""
+ },
"options_timings_l4": {
"message": "Ustaw wartość na zero, aby nie otrzymywać przypomnień.",
"description": ""
},
+ "options_notifications_32": {
+ "message": "nazwa lub e-mail zawiera",
+ "description": ""
+ },
"options_tab_6": {
"message": "Otwórz konto Gmail w nowym oknie",
"description": ""
@@ -71,6 +91,10 @@
"message": "Minimalna wysokość to 500px.",
"description": ""
},
+ "popup_msg_10": {
+ "message": "stycznia",
+ "description": ""
+ },
"options_notifications_26": {
"message": "Zawsze pokazuj ikony powiadomień (tylko Windows)",
"description": ""
@@ -79,12 +103,16 @@
"message": "Wyłącz wszystkie powiadomienia",
"description": ""
},
+ "label_13": {
+ "message": "Na własny odstęp czasowy",
+ "description": ""
+ },
"options_empty": {
"message": "nie określono",
"description": ""
},
"options_notifications_3": {
- "message": "Ta opcja może nie działać na Twoim systemie operacyjnym.",
+ "message": "Ta opcja może nie działać na twoim systemie operacyjnym.",
"description": ""
},
"options_timings": {
@@ -103,6 +131,10 @@
"message": "Czerwony dla \"Nieprzeczytane\" i szary dla \"Rozłączony\"",
"description": ""
},
+ "popup_msg_5": {
+ "message": "godzin(y) temu",
+ "description": ""
+ },
"options_notifications_27": {
"message": "Ikony obszaru powiadomień będą zawsze wyświetlane, nawet gdy brak nieprzeczytanych wiadomości.",
"description": ""
@@ -119,6 +151,10 @@
"message": "Od: [author_email][break]Tytuł: [title][break]Streszczenie: [summary]",
"description": ""
},
+ "popup_trash": {
+ "message": "Usuń",
+ "description": ""
+ },
"options_tab": {
"message": "Otwieranie kart:",
"description": ""
@@ -136,7 +172,7 @@
"description": ""
},
"options_timings_l2": {
- "message": "Minimalny okres czasu to 10 sekund.",
+ "message": "Minimalny odstęp czasowy to 10 sekund.",
"description": ""
},
"options_toolbar_11": {
@@ -147,24 +183,48 @@
"message": "Popularne etykiety: \"inbox\", \"important\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\" oraz \"^smartlabel_group\"",
"description": ""
},
+ "popup_msg_17": {
+ "message": "sierpnia",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "czerwca",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "podsumowanie e-mail'a zawiera",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Zalogowane konta",
+ "description": ""
+ },
"options_misc_13": {
"message": "Rozszerzenie domyślnie aktualizuje treść okienka podpowiedzi na przycisku paska narzędzi informacjami o profilu. Odznaczenie tej opcji spowoduje zachowanie treści w domyślnej wartości.",
"description": ""
},
"options_misc_6": {
- "message": "Nie pokazuj powiadomień na pulpicie, jeśli strona Gmail jest już otworzona",
+ "message": "Pokazuj powiadomienia na pulpicie, aby powiadomić, że Gmail jest już otwarty w aktywnej karcie",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Przeczytane",
"description": ""
},
"options_notifications_4": {
"message": "Format powiadomienia",
"description": ""
},
+ "settings_open_title": {
+ "message": "Otwórz stronę opcji (ustawień)",
+ "description": ""
+ },
"label_2": {
"message": "Ustawienia",
"description": ""
},
"options_toolbar_14": {
- "message": "Jeżeli wolisz sam tekst w trybie pełnej zawartości, odznacz to pole.",
+ "message": "Jeżeli wolisz surowy tekst w trybie pełnej zawartości, odznacz to pole.",
"description": ""
},
"options_notifications_18": {
@@ -179,6 +239,10 @@
"message": "Przez godzinę",
"description": ""
},
+ "popup_archive": {
+ "message": "Archiwizuj",
+ "description": ""
+ },
"msg_2": {
"message": "Link został skopiowany do schowka.",
"description": ""
@@ -187,10 +251,34 @@
"message": "Opcje - Powiadomienia Gmail™",
"description": ""
},
+ "popup_msg_13": {
+ "message": "kwietnia",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "miesięcy temu: %d",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "lutego",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Otwórz skrzynkę",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "Jeżeli odznaczono, Powiadomienia Gmail sprawdzą wszystkie otwarte okna w poszukiwaniu karty z otwartym Gmail'em, a następnie otworzy ją na żądanie.",
+ "description": ""
+ },
"gmail": {
"message": "Powiadomienia Gmail™",
"description": ""
},
+ "popup_msg_6": {
+ "message": "wczoraj",
+ "description": ""
+ },
"options_toolbar_8": {
"message": "Minimalna szerokość to 500px.",
"description": ""
@@ -203,6 +291,10 @@
"message": "Nie wyświetlaj szczegółowej liczby na znaczku, gdy liczba nieprzeczytanych wiadomości jest większa niż 999",
"description": ""
},
+ "popup_msg_18": {
+ "message": "września",
+ "description": ""
+ },
"options_notifications_14": {
"message": "Ta funkcjonalność jest eksperymentalna i może uczynić Twoją przeglądarkę Firefox niestabilną [wymagany restart].",
"description": ""
@@ -223,8 +315,12 @@
"message": "Proszę się zalogować do konta Gmail",
"description": ""
},
+ "popup_of": {
+ "message": "z",
+ "description": ""
+ },
"options_notifications_15": {
- "message": "Dźwięk powiadomienia",
+ "message": "Domyślny dźwięk powiadomienia to",
"description": ""
},
"options_notifications_21": {
@@ -243,6 +339,14 @@
"message": "nieznane",
"description": ""
},
+ "popup_msg_21": {
+ "message": "grudnia",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Wszystkie przeczytane",
+ "description": ""
+ },
"options_notifications_8": {
"message": "Jeżeli nie chcesz skracać, wpisz dużą liczbę.",
"description": ""
@@ -303,10 +407,18 @@
"message": "Obecnie, powiadomienia paska zadań nie są wspierane na systemach Linuks.",
"description": ""
},
+ "options_notifications_35": {
+ "message": "Aby wybrać nowy własny dźwięk, najpierw wybierz wbudowany dźwięk, a następnie zmień wybór na Własny dźwięk",
+ "description": ""
+ },
"msg_1": {
"message": "Karta jest już otworzona. Naciśnij na przycisku paska narzędzi, aby otworzyć Gmail w nowej karcie lub aby przełączyć się na istniejącą kartę Gmail.",
"description": ""
},
+ "popup_refresh": {
+ "message": "Odśwież",
+ "description": ""
+ },
"options_misc_5": {
"message": "Niebieski dla \"Nieprzeczytane\" i szary dla \"Rozłączony\"",
"description": ""
@@ -315,26 +427,46 @@
"message": "Ustaw wartość na zero, aby nie sprawdzać nowych wiadomości przed pierwszym ręcznym odświeżeniem [niedostępne na Safari].",
"description": ""
},
+ "popup_msg_19": {
+ "message": "października",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "tytuł e-mail'a zawiera",
+ "description": ""
+ },
"tooltip_3": {
"message": "PPM: Wybór kont",
"description": ""
},
+ "popup_date_format": {
+ "message": "%dd %mm %yy",
+ "description": ""
+ },
"options_notifications": {
"message": "Powiadomienia:",
"description": ""
},
"options_timings_l6": {
- "message": "Wartości inne niż zero wyzwalają powiadomienia na pulpicie oraz dźwięk (podobnie jak otrzymanie nowej poczty), dopóki posiadasz nieprzeczytane wiadomości.",
+ "message": "Wartości inne niż zero wyzwalają powiadomienia na pulpicie oraz dźwięk, dopóki posiadasz nieprzeczytane wiadomości (podobnie jak otrzymanie nowej poczty).",
+ "description": ""
+ },
+ "popup_msg_12": {
+ "message": "marca",
"description": ""
},
"options_notifications_22": {
- "message": "Jeżeli Twoja przeglądarka nie odtwarza dźwięku powiadomienia, spróbuj go przekonwertować do zwykłego formatu WAV przy pomocy narzędzi konwersji online.",
+ "message": "Jeżeli Twoja przeglądarka nie odtwarza własnego dźwięku powiadomienia, spróbuj go przetworzyć na format WAV przy pomocy narzędzi konwersji w sieci.",
"description": ""
},
"options_tab_1": {
"message": "Szukaj w aktywnym oknie otwartej karty z kontem Gmail",
"description": ""
},
+ "popup_msg_7_format": {
+ "message": "%d dni temu",
+ "description": ""
+ },
"options_timings_l1": {
"message": "Sprawdzaj nowe wiadomości co (sekundy):",
"description": ""
@@ -347,6 +479,14 @@
"message": "Powiadomienia Gmail™",
"description": ""
},
+ "popup_msg_1": {
+ "message": "przed chwilą",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Otwórz ustawienia",
+ "description": ""
+ },
"options_misc_3": {
"message": "Kolor paska narzędzi:",
"description": ""
@@ -376,7 +516,7 @@
"description": ""
},
"options_tab_7": {
- "message": "Zawsze używaj pustych kart zamiast otwierania nowej karty przy aktywnej takiej opcji",
+ "message": "Zawsze używaj pustych kart zamiast otwierania nowej karty (gdy opcja otwierania na karcie jest aktywna)",
"description": ""
},
"options_toolbar_3": {
@@ -387,6 +527,10 @@
"message": "Szóste konto (/mail/u/5/)",
"description": ""
},
+ "popup_msg_8_format": {
+ "message": "%d tygodni(e) temu",
+ "description": ""
+ },
"options_toolbar": {
"message": "Pasek narzędzi:",
"description": ""
@@ -395,10 +539,18 @@
"message": "Skracaj powiadomienia dłuższe niż",
"description": ""
},
+ "popup_wait": {
+ "message": "Czekaj...",
+ "description": ""
+ },
"tooltip_2": {
"message": "Kółko myszy (lub Ctrl+LPM): Odśwież wszystkie konta",
"description": ""
},
+ "options_notifications_29": {
+ "message": "Ta opcja jest dostępna po naciśnięciu Prawym Przyciskiem Myszy na przycisk na pasku narzędzi -> Wyłącz wszystkie powiadomienia -> Własny odstęp czasowy.",
+ "description": ""
+ },
"options_tab_3": {
"message": "Otwórz kolejne konto Gmail za aktywną kartą",
"description": ""
@@ -419,6 +571,26 @@
"message": "Uruchom powiadomienia na pulpicie oraz dźwiękowe, gdy e-mail został otrzymany poniżej (minut):",
"description": ""
},
+ "options_tab_8": {
+ "message": "Ignoruj otwarte karty Gmail'a",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(brak tematu)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Wybierz plik z dźwiękiem audio",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "minutę temu",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "lipca",
+ "description": ""
+ },
"label_8": {
"message": "Przez 2 godziny",
"description": ""
@@ -427,6 +599,10 @@
"message": "Informacja: Aby powiadomienia działały poprawnie, musisz być zalogowany do swojego konta Google.",
"description": ""
},
+ "popup_msg_20": {
+ "message": "listopada",
+ "description": ""
+ },
"options_toolbar_6": {
"message": "Pokazuj pełną zawartość",
"description": ""
@@ -447,8 +623,12 @@
"message": "Szerokość panelu paska narzędzi w trybie pełnej zawartości (piksele):",
"description": ""
},
+ "options_notifications_31": {
+ "message": "Własny dźwięk powiadomienia",
+ "description": ""
+ },
"options_timings_l5": {
- "message": "Minimalny czas to 5 minut.",
+ "message": "Minimalny odstęp czasowy to 5 minut.",
"description": ""
},
"options_misc": {
@@ -475,6 +655,10 @@
"message": "Piąte konto (/mail/u/4)",
"description": ""
},
+ "popup_msg_14": {
+ "message": "maja",
+ "description": ""
+ },
"options_inshort": {
"message": "Etykiety i powiadomienia kont dla Poczty Google (Gmail).",
"description": ""
@@ -487,12 +671,20 @@
"message": "Otwórz konto Gmail w aktywnej karcie",
"description": ""
},
+ "popup_msg_3_format": {
+ "message": "%d minut(y) temu",
+ "description": ""
+ },
"label_12": {
- "message": "Otwórz stronę domową",
+ "message": "Otwórz FAQ",
"description": ""
},
"description": {
"message": "Etykiety i powiadomienia kont dla Poczty Google (Gmail)",
"description": ""
+ },
+ "popup_spam": {
+ "message": "Zgłoś spam",
+ "description": ""
}
}
\ No newline at end of file
diff --git a/src/_locales/ru/messages.json b/v1/builds/unpacked/chrome/_locales/ru/messages.json
similarity index 75%
rename from src/_locales/ru/messages.json
rename to v1/builds/unpacked/chrome/_locales/ru/messages.json
index 217ab94c..01dc075d 100644
--- a/src/_locales/ru/messages.json
+++ b/v1/builds/unpacked/chrome/_locales/ru/messages.json
@@ -15,6 +15,14 @@
"message": "При клике на значок в трее открывать окно предварительного просмотра (только для Windows, beta)",
"description": ""
},
+ "options_notifications_30": {
+ "message": "Объединять несколько параллельных уведомлений в одно",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Открыть настройки",
+ "description": ""
+ },
"options_timings_l7": {
"message": "Не проверять почту сразу после запуска в течении (в секундах):",
"description": ""
@@ -27,6 +35,10 @@
"message": "Напоминать о непрочитанных сообщениях каждые (в минутах):",
"description": ""
},
+ "popup_msg_4": {
+ "message": "1 час назад",
+ "description": ""
+ },
"options_gmail_1": {
"message": "Основной аккаунт (/mail/u/0/)",
"description": ""
@@ -51,10 +63,18 @@
"message": "Сбросить все настройки на начальные",
"description": ""
},
+ "options_notifications_28": {
+ "message": "Отключить все уведомления на определенный период времени Х (в минутах)",
+ "description": ""
+ },
"options_timings_l4": {
"message": "Установите ноль для отключения напоминаний.",
"description": ""
},
+ "options_notifications_32": {
+ "message": "имя или адрес содержит",
+ "description": ""
+ },
"options_tab_6": {
"message": "Открывать Gmail в новом окне",
"description": ""
@@ -71,6 +91,10 @@
"message": "Минимальная высота окна - 500px.",
"description": ""
},
+ "popup_msg_10": {
+ "message": "Январь",
+ "description": ""
+ },
"options_notifications_26": {
"message": "Всегда показывать значок уведомления в трее (Только Windows)",
"description": ""
@@ -79,6 +103,10 @@
"message": "Отключить все оповещения...",
"description": ""
},
+ "label_13": {
+ "message": "на Х минут",
+ "description": ""
+ },
"options_empty": {
"message": "не определен",
"description": ""
@@ -103,6 +131,10 @@
"message": "Красный для \"Нет непрочитанных\" и серый для \"Отключен\"",
"description": ""
},
+ "popup_msg_5": {
+ "message": "часов назад",
+ "description": ""
+ },
"options_notifications_27": {
"message": "Значок в трее будет показан даже если нет не прочитанных сообщений.",
"description": ""
@@ -119,6 +151,10 @@
"message": "От: [author_email][break]Тема: [title][break]Сводка: [summary]",
"description": ""
},
+ "popup_trash": {
+ "message": "Удалить",
+ "description": ""
+ },
"options_tab": {
"message": "Открытие вкладки Gmail:",
"description": ""
@@ -147,18 +183,42 @@
"message": "Некоторые популярные ярлыки: \"inbox\", \"important\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\", and \"^smartlabel_group\"",
"description": ""
},
+ "popup_msg_17": {
+ "message": "Август",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "Июнь",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "краткая сводка сообщения содержит",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Авторизованные аккаунты",
+ "description": ""
+ },
"options_misc_13": {
"message": "По умолчанию в тексте всплывающей подсказки значка на панели инструментов показывается название учетной записи.",
"description": ""
},
"options_misc_6": {
- "message": "Не показывать всплывающее уведомление о том, что вкладка Gmail уже открыта",
+ "message": "Показывать всплывающее уведомление о том, что Gmail уже открыт в активной вкладке",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Прочтено",
"description": ""
},
"options_notifications_4": {
"message": "Формат уведомления",
"description": ""
},
+ "settings_open_title": {
+ "message": "Открыть страницу настроек",
+ "description": ""
+ },
"label_2": {
"message": "Настройки",
"description": ""
@@ -179,6 +239,10 @@
"message": "на 1 час",
"description": ""
},
+ "popup_archive": {
+ "message": "Архивировать",
+ "description": ""
+ },
"msg_2": {
"message": "Ссылка скопирована в буфер обмена.",
"description": ""
@@ -187,22 +251,50 @@
"message": "Настройки",
"description": ""
},
+ "popup_msg_13": {
+ "message": "Апрель",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "%d месяца(ев) назад",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "Февраль",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Открыть входящие",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "Если активировано, аддон проверяет на наличие открытого уже Gmail и переключает фокус на него.",
+ "description": ""
+ },
"gmail": {
"message": "Оповещение для Gmail™",
"description": ""
},
+ "popup_msg_6": {
+ "message": "Вчера",
+ "description": ""
+ },
"options_toolbar_8": {
"message": "Минимальная ширина окна - 500px.",
"description": ""
},
"options_notifications_16": {
- "message": "Звук оповещения по умолчанию",
+ "message": "По умолчанию",
"description": ""
},
"options_misc_14": {
"message": "Не показывать точное количество непрочитанных сообщений на значке в панели инструментов, если оно превышает 999",
"description": ""
},
+ "popup_msg_18": {
+ "message": "Сентябрь",
+ "description": ""
+ },
"options_notifications_14": {
"message": "Эта экспериментальная функция и может вызвать нестабильность в работе Firefox. [Требуется перезапуск].",
"description": ""
@@ -223,8 +315,12 @@
"message": "Войдите, пожалуйста, в Ваш аккаунт Gmail",
"description": ""
},
+ "popup_of": {
+ "message": "из",
+ "description": ""
+ },
"options_notifications_15": {
- "message": "Звуковое оповещение:",
+ "message": "Звук оповещений по умолчанию",
"description": ""
},
"options_notifications_21": {
@@ -243,6 +339,14 @@
"message": "не определено",
"description": ""
},
+ "popup_msg_21": {
+ "message": "Декабрь",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Все прочтено",
+ "description": ""
+ },
"options_notifications_8": {
"message": "Чтобы избежать обрезания сообщений, используйте здесь большие значения.",
"description": ""
@@ -303,22 +407,42 @@
"message": "Оповещения на панели задач для Linux OS пока не поддерживаются.",
"description": ""
},
+ "options_notifications_35": {
+ "message": "Для выбора нового пользовательского звука сначала выберите встроенный звук, а затем измените опцию на пользовательский звук",
+ "description": ""
+ },
"msg_1": {
"message": "Вкладка уже открыта. Нажмите на кнопку на панели инструментов чтобы открыть Gmail в новой вкладке или перейти на уже открытую вкладку Gmail.",
"description": ""
},
+ "popup_refresh": {
+ "message": "Обновить",
+ "description": ""
+ },
"options_misc_5": {
"message": "Голубой для \"Нет непрочитанных\" и серый для \"Отключен\"",
"description": ""
},
"options_timings_l8": {
- "message": "При установке нуля автоматическая проверка почты начнется только после первого ручного обновления [Не доступно в Safari].",
+ "message": "При установке нуля автоматическая проверка почты начнется только после первого ручного обновления (Не доступно в Safari).",
+ "description": ""
+ },
+ "popup_msg_19": {
+ "message": "Октябрь",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "заголовок сообщения содержит",
"description": ""
},
"tooltip_3": {
"message": "Правый клик: Меню дополнения",
"description": ""
},
+ "popup_date_format": {
+ "message": "%mm %dd, %yy",
+ "description": ""
+ },
"options_notifications": {
"message": "Всплывающие уведомления:",
"description": ""
@@ -327,14 +451,22 @@
"message": "Ненулевое значение включает всплывающие уведомления и звуковое оповещение (как при получении нового сообщения).",
"description": ""
},
+ "popup_msg_12": {
+ "message": "Март",
+ "description": ""
+ },
"options_notifications_22": {
- "message": "Если Ваш браузер не проигрывает звук, попробуйте конвертировать звуковой файл в формат WAV.",
+ "message": "Если ваш браузер не воспроизводит звук оповещения, попробуйте конвертировать файл в формат WAV с помощью онлайн инструментов.",
"description": ""
},
"options_tab_1": {
"message": "Отслеживать открытую вкладку Gmail только в активном окне браузера",
"description": ""
},
+ "popup_msg_7_format": {
+ "message": "%d дней назад",
+ "description": ""
+ },
"options_timings_l1": {
"message": "Проверять почту каждые (в секундах):",
"description": ""
@@ -347,6 +479,14 @@
"message": "Оповещение для Gmail™",
"description": ""
},
+ "popup_msg_1": {
+ "message": "только сейчас",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Настройки",
+ "description": ""
+ },
"options_misc_3": {
"message": "Цвет значка на панели инструментов",
"description": ""
@@ -380,13 +520,17 @@
"description": ""
},
"options_toolbar_3": {
- "message": "Открывать Gmail только если залогинен один аккаунт",
+ "message": "Открывать Gmail только если авторизован один аккаунт",
"description": ""
},
"options_gmail_7": {
"message": "Шестой аккаунт (/mail/u/5/)",
"description": ""
},
+ "popup_msg_8_format": {
+ "message": "%d недель назад",
+ "description": ""
+ },
"options_toolbar": {
"message": "Окно предварительного просмотра:",
"description": ""
@@ -395,10 +539,18 @@
"message": "Обрезать текст уведомления длиннее чем",
"description": ""
},
+ "popup_wait": {
+ "message": "Ожидайте...",
+ "description": ""
+ },
"tooltip_2": {
"message": "Средний клик (или Ctrl+левый клик): Обновить все аккаунты",
"description": ""
},
+ "options_notifications_29": {
+ "message": "Эта настройка относится к меню кнопки на панели инструментов -> Отключить все уведомления -> на Х минут",
+ "description": ""
+ },
"options_tab_3": {
"message": "Открывать вкладку Gmail рядом с активной вкладкой",
"description": ""
@@ -419,6 +571,26 @@
"message": "Всплывающие уведомления и звуковое оповещение только для сообщений, полученных менее чем (в минутах):",
"description": ""
},
+ "options_tab_8": {
+ "message": "Игнорировать открытые с Gmail вкладки",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(без темы)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Выберите звуковой файл",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "1 минуту назад",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "Июль",
+ "description": ""
+ },
"label_8": {
"message": "на 2 часа",
"description": ""
@@ -427,6 +599,10 @@
"message": "Замечание: Чтобы оповещение работало правильно, вы должны быть залогинены в свой аккаунт Google.",
"description": ""
},
+ "popup_msg_20": {
+ "message": "Ноябрь",
+ "description": ""
+ },
"options_toolbar_6": {
"message": "Полный режим - показывать сообщение целиком",
"description": ""
@@ -447,6 +623,10 @@
"message": "Ширина окна просмотра в полном режиме (в пискелях):",
"description": ""
},
+ "options_notifications_31": {
+ "message": "Пользовательское звуковое оповещение",
+ "description": ""
+ },
"options_timings_l5": {
"message": "Минимальный период - 5 мин.",
"description": ""
@@ -475,6 +655,10 @@
"message": "Пятый аккаунт (/mail/u/4/)",
"description": ""
},
+ "popup_msg_14": {
+ "message": "Май",
+ "description": ""
+ },
"options_inshort": {
"message": "Оповещение для нескольких аккаунтов Google Mail (Gmail).",
"description": ""
@@ -487,12 +671,20 @@
"message": "Открывать Gmail в активной вкладке",
"description": ""
},
+ "popup_msg_3_format": {
+ "message": "%d минут назад",
+ "description": ""
+ },
"label_12": {
- "message": "Открыть домашнюю страницу",
+ "message": "Открыть FAQ",
"description": ""
},
"description": {
"message": "Оповещение для нескольких аккаунтов Google Mail (Gmail)",
"description": ""
+ },
+ "popup_spam": {
+ "message": "Спам",
+ "description": ""
}
}
\ No newline at end of file
diff --git a/v1/builds/unpacked/chrome/_locales/sr/messages.json b/v1/builds/unpacked/chrome/_locales/sr/messages.json
new file mode 100644
index 00000000..da56f8e0
--- /dev/null
+++ b/v1/builds/unpacked/chrome/_locales/sr/messages.json
@@ -0,0 +1,690 @@
+{
+ "label_9": {
+ "message": "На 5 сати",
+ "description": ""
+ },
+ "options_notifications_19": {
+ "message": "Windows email звук",
+ "description": ""
+ },
+ "options_notifications_17": {
+ "message": "Checker Plus bell",
+ "description": ""
+ },
+ "options_notifications_13": {
+ "message": "Отвори панел прегледа поште када кликнем на иконицу обавештења на траци задатака (само Windows, бета)",
+ "description": ""
+ },
+ "options_notifications_30": {
+ "message": "Споји сва истовремена десктоп обавештења у једно обавештење",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "Отвори опције",
+ "description": ""
+ },
+ "options_timings_l7": {
+ "message": "Не проверавај нову пошту при покретању у року од (у секундама):",
+ "description": ""
+ },
+ "label_4": {
+ "message": "На 5 минута",
+ "description": ""
+ },
+ "options_timings_l3": {
+ "message": "Подсети на сву непрочитану пошту сваких (у минутима):",
+ "description": ""
+ },
+ "popup_msg_4": {
+ "message": "пре 1 сат",
+ "description": ""
+ },
+ "options_gmail_1": {
+ "message": "Основни налог (/mail/u/0/)",
+ "description": ""
+ },
+ "options_gmail_10": {
+ "message": "Примај обавештења за следеће ознаке и налоге:",
+ "description": ""
+ },
+ "options_notifications_1": {
+ "message": "Прикажи десктоп обавештења о новој пошти",
+ "description": ""
+ },
+ "options_notifications_9": {
+ "message": "Пусти звучно обавештење о новој пошти",
+ "description": ""
+ },
+ "label_6": {
+ "message": "На 30 минута",
+ "description": ""
+ },
+ "options_misc_8": {
+ "message": "Врати сва подешавања на фабричка",
+ "description": ""
+ },
+ "options_notifications_28": {
+ "message": "Онемогући сва обавештења у прилагођеном временском периоду (у минутима)",
+ "description": ""
+ },
+ "options_timings_l4": {
+ "message": "Постави вредност на нула за искључивање подсетника.",
+ "description": ""
+ },
+ "options_notifications_32": {
+ "message": "име или е-пошта садржи",
+ "description": ""
+ },
+ "options_tab_6": {
+ "message": "Отвори Gmail налог у новом прозору",
+ "description": ""
+ },
+ "options_notifications_25": {
+ "message": "У Ѕafari прегледачу највероватније се подразумевани звук обавештења неће емитовати исправно, у том случају употребите прилагођени звук за обавештење.",
+ "description": ""
+ },
+ "options_toolbar_15": {
+ "message": "Средњи клик на дугме на алатној траци",
+ "description": ""
+ },
+ "options_toolbar_10": {
+ "message": "Минимална висина је 500 пиксела.",
+ "description": ""
+ },
+ "popup_msg_10": {
+ "message": "јануар",
+ "description": ""
+ },
+ "options_notifications_26": {
+ "message": "Увек прикажи иконицу обавештења у системској траци (само Windows)",
+ "description": ""
+ },
+ "label_3": {
+ "message": "Онемогући сва обавештења",
+ "description": ""
+ },
+ "label_13": {
+ "message": "У прилагођеном временском периоду",
+ "description": ""
+ },
+ "options_empty": {
+ "message": "недефинисано",
+ "description": ""
+ },
+ "options_notifications_3": {
+ "message": "Ова опција можда неће радити на Вашем оперативном систему.",
+ "description": ""
+ },
+ "options_timings": {
+ "message": "Подешавања времена",
+ "description": ""
+ },
+ "options_gmail_5": {
+ "message": "Четврти налог (/mail/u/3/)",
+ "description": ""
+ },
+ "label_5": {
+ "message": "На 15 минута",
+ "description": ""
+ },
+ "options_misc_9": {
+ "message": "Црвена боја за \"Нема непрочитаних\" и сива за \"Неповезан\"",
+ "description": ""
+ },
+ "popup_msg_5": {
+ "message": "сата/и раније",
+ "description": ""
+ },
+ "options_notifications_27": {
+ "message": "Иконица обавештења у системској траци ће бити приказана чак и ако нема непрочитаних порука.",
+ "description": ""
+ },
+ "options_misc_1": {
+ "message": "Поређај налоге по алфабету",
+ "description": ""
+ },
+ "tooltip_1": {
+ "message": "Леви клик: Отвори Gmail или панел прегледа поште",
+ "description": ""
+ },
+ "notification": {
+ "message": "Од: [author_email][break]Наслов: [title][break]Кратак преглед: [summary]",
+ "description": ""
+ },
+ "popup_trash": {
+ "message": "Избриши",
+ "description": ""
+ },
+ "options_tab": {
+ "message": "Отварање картица:",
+ "description": ""
+ },
+ "log_into_your_account": {
+ "message": "Пријавите се својим Gmail налогом",
+ "description": ""
+ },
+ "label_10": {
+ "message": "Омогући обавештења",
+ "description": ""
+ },
+ "options_notifications_23": {
+ "message": "Јачина звука обавештења је",
+ "description": ""
+ },
+ "options_timings_l2": {
+ "message": "Минимални период је 10 секунди.",
+ "description": ""
+ },
+ "options_toolbar_11": {
+ "message": "Омогући тастерске пречице у панелу",
+ "description": ""
+ },
+ "options_gmail_9": {
+ "message": "Неке популарне ознаке: \"inbox\", \"important\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\" и \"^smartlabel_group\"",
+ "description": ""
+ },
+ "popup_msg_17": {
+ "message": "август",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "јун",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "кратак преглед е-поште садржи",
+ "description": ""
+ },
+ "label_14": {
+ "message": "Пријављени налози",
+ "description": ""
+ },
+ "options_misc_13": {
+ "message": "Подразумевано, у опису алатке на дугмету на алатној траци се приказују информације о пријављивању. Одчекирањем ове опције, опис алатке остаје на подразумеваној вредности.",
+ "description": ""
+ },
+ "options_misc_6": {
+ "message": "Прикажи десктоп обавештење као упозорење да је Gmail већ отворен у активној картици",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "Озн. као прочитано",
+ "description": ""
+ },
+ "options_notifications_4": {
+ "message": "Формат обавештења",
+ "description": ""
+ },
+ "settings_open_title": {
+ "message": "Отвори страницу опција (подешавања)",
+ "description": ""
+ },
+ "label_2": {
+ "message": "Подешавања",
+ "description": ""
+ },
+ "options_toolbar_14": {
+ "message": "Одчекирајте ако више волите приказ само текста у режиму приказа пуног садржаја.",
+ "description": ""
+ },
+ "options_notifications_18": {
+ "message": "Checker Plus ding",
+ "description": ""
+ },
+ "options_tab_5": {
+ "message": "Отвори Gmail налог у позадинској картици",
+ "description": ""
+ },
+ "label_7": {
+ "message": "На 1 сат",
+ "description": ""
+ },
+ "popup_archive": {
+ "message": "Архивирај",
+ "description": ""
+ },
+ "msg_2": {
+ "message": "Линк је копиран у клипборд.",
+ "description": ""
+ },
+ "options_title": {
+ "message": "Gmail™ Notifier - Опције",
+ "description": ""
+ },
+ "popup_msg_13": {
+ "message": "април",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "пре %d месеца",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "фебруар",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "Отвори Примљене",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "Када је отчекирано, Gmail Notifier проверава у активном или свим отвореним прозорима да ли има отворених Gmail инстанци и пребацује на картицу када је отварање картице захтевано.",
+ "description": ""
+ },
+ "gmail": {
+ "message": "Gmail™ Notifier",
+ "description": ""
+ },
+ "popup_msg_6": {
+ "message": "јуче",
+ "description": ""
+ },
+ "options_toolbar_8": {
+ "message": "Минимална ширина је 500 пиксела.",
+ "description": ""
+ },
+ "options_notifications_16": {
+ "message": "Gmail Notifier подразумевани звук",
+ "description": ""
+ },
+ "options_misc_14": {
+ "message": "Не приказуј тачан број непрочитаних порука на иконици ако је већи од 999",
+ "description": ""
+ },
+ "popup_msg_18": {
+ "message": "септембар",
+ "description": ""
+ },
+ "options_notifications_14": {
+ "message": "Ово је експериментална функција и може изазвати нестабилност Firefox прегледача. [Неопходно је поновно покретање].",
+ "description": ""
+ },
+ "options_gmail_3": {
+ "message": "Други налог (/mail/u/1/)",
+ "description": ""
+ },
+ "options_notifications_11": {
+ "message": "Прикажи \"Windows обавештења на траци задатака\" или \"Mac OS Dock обавештења\"",
+ "description": ""
+ },
+ "options_notifications_2": {
+ "message": "Прикажи десктоп обавештења у трајању од (у секундама):",
+ "description": ""
+ },
+ "log_in_to_your_account": {
+ "message": "Пријавите се својим Gmail налогом",
+ "description": ""
+ },
+ "popup_of": {
+ "message": "од",
+ "description": ""
+ },
+ "options_notifications_15": {
+ "message": "Подразумевано звучно обавештење је",
+ "description": ""
+ },
+ "options_notifications_21": {
+ "message": "Кориснички дефинисани звук обавештења је",
+ "description": ""
+ },
+ "options_toolbar_9": {
+ "message": "Висина панела у режиму приказа пуног садржаја (у пикселима):",
+ "description": ""
+ },
+ "options_toolbar_1": {
+ "message": "Понашање дугмета на алатној картици",
+ "description": ""
+ },
+ "unknown": {
+ "message": "непознат",
+ "description": ""
+ },
+ "popup_msg_21": {
+ "message": "децембар",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "Означи све као прочитано",
+ "description": ""
+ },
+ "options_notifications_8": {
+ "message": "Да би се избегло сечење поруке, употребите велики број.",
+ "description": ""
+ },
+ "options_donation": {
+ "message": "Донирајте",
+ "description": ""
+ },
+ "msg_3": {
+ "message": "Одабрани текст је копиран у клипборд.",
+ "description": ""
+ },
+ "options_misc_7": {
+ "message": "Прикажи страницу добродошлице при надоградњи",
+ "description": ""
+ },
+ "options_gmail": {
+ "message": "Gmail:",
+ "description": ""
+ },
+ "label_1": {
+ "message": "Освежи",
+ "description": ""
+ },
+ "options_notifications_5": {
+ "message": "Доступне варијабле:",
+ "description": ""
+ },
+ "options_notifications_24": {
+ "message": "Јачина је број од 0 до 100 при чему је 100 најгласније (подразумевано).",
+ "description": ""
+ },
+ "options_notifications_10": {
+ "message": "Савет за кориснике Mac система. Од Firefox 28.0 верзије, свим десктоп обавештењима управља Mac Notification Center који емитује додатни звучни сигнал. Потребно је да одчекирате ово звучно обавештење или оно које је генерисано од стране Notification Center Mac система.",
+ "description": ""
+ },
+ "options_misc_2": {
+ "message": "Подразумевани редослед је по времену пријављивања.",
+ "description": ""
+ },
+ "options_toolbar_2": {
+ "message": "Увек отвори панел прегледа поште",
+ "description": ""
+ },
+ "popup_settings": {
+ "message": "подешавања",
+ "description": ""
+ },
+ "options_gmail_4": {
+ "message": "Трећи налог (/mail/u/2/)",
+ "description": ""
+ },
+ "options_toolbar_5": {
+ "message": "Прикажи кратак преглед",
+ "description": ""
+ },
+ "options_notifications_12": {
+ "message": "Обавештења на траци задатака нису подржана у Linux систему.",
+ "description": ""
+ },
+ "options_notifications_35": {
+ "message": "За избор новог прилагођеног звука, изаберите прво уграђени звук а затим промените опцију на прилагођени звук",
+ "description": ""
+ },
+ "msg_1": {
+ "message": "Картица је већ отворена. Кликните на дугме на алатној траци да отворите Gmail у новој картици или да се пребаците на постојећу Gmail картицу.",
+ "description": ""
+ },
+ "popup_refresh": {
+ "message": "Освежи",
+ "description": ""
+ },
+ "options_misc_5": {
+ "message": "Плава боја за \"Нема непрочитаних\" и сива за \"Неповезан\"",
+ "description": ""
+ },
+ "options_timings_l8": {
+ "message": "Постави вредност на нула за непроверавање поште до првог ручног ажурирања [није доступно у Safari прегледачу].",
+ "description": ""
+ },
+ "popup_msg_19": {
+ "message": "октобар",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "наслов е-поште садржи",
+ "description": ""
+ },
+ "tooltip_3": {
+ "message": "Десни клик: Избор налога",
+ "description": ""
+ },
+ "popup_date_format": {
+ "message": "%dd. %mm %yy.",
+ "description": ""
+ },
+ "options_notifications": {
+ "message": "Обавештења:",
+ "description": ""
+ },
+ "options_timings_l6": {
+ "message": "Све вредности осим нуле покрећу десктоп обавештење и звучни сигнал (као када пристигне нова пошта) у задатим временским периодима ако имате непрочитану пошту.",
+ "description": ""
+ },
+ "popup_msg_12": {
+ "message": "март",
+ "description": ""
+ },
+ "options_notifications_22": {
+ "message": "Ако ваш прегледач не емитује прилагођени звук обавештења, покушајте да га конвертујете у WAV формат користећи алат за конвертовање на мрежи.",
+ "description": ""
+ },
+ "options_tab_1": {
+ "message": "Потражи отворени Gmail налог само у активном прозору",
+ "description": ""
+ },
+ "popup_msg_7_format": {
+ "message": "пре %d дана",
+ "description": ""
+ },
+ "options_timings_l1": {
+ "message": "Провери нову пошту сваких (у секундама):",
+ "description": ""
+ },
+ "options_toolbar_4": {
+ "message": "Режим приказа панела",
+ "description": ""
+ },
+ "toolbar_label": {
+ "message": "Gmail™ Notifier",
+ "description": ""
+ },
+ "popup_msg_1": {
+ "message": "управо сада",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "Подешавања",
+ "description": ""
+ },
+ "options_misc_3": {
+ "message": "Боја иконице на алатној траци",
+ "description": ""
+ },
+ "options_gmail_12": {
+ "message": "Одвоји канале \",\" (зарезом). Пример канала: https://mail.google.com/mail/u/0/feed/atom/inbox",
+ "description": ""
+ },
+ "options_toolbar_12": {
+ "message": "!: Пријави непожељну поруку, #: Отпад, e: Архивирај, Shift + i: Означи као прочитано.",
+ "description": ""
+ },
+ "options_px": {
+ "message": "px",
+ "description": ""
+ },
+ "options_misc_11": {
+ "message": "Постављајући ову вредност на нула, нећете примати ни десктоп ни звучна обавештења; ипак, обавештење у виду ознаке на иконици ће бити приказано.",
+ "description": ""
+ },
+ "options_notifications_20": {
+ "message": "Кориснички дефинисани звук",
+ "description": ""
+ },
+ "and": {
+ "message": "и",
+ "description": ""
+ },
+ "options_tab_7": {
+ "message": "Увек употреби празну картицу уместо отварања нове картице (када је отварање у картици активирано)",
+ "description": ""
+ },
+ "options_toolbar_3": {
+ "message": "Отвори Gmail налог ако је само један налог пријављен",
+ "description": ""
+ },
+ "options_gmail_7": {
+ "message": "Шести налог (/mail/u/5/)",
+ "description": ""
+ },
+ "popup_msg_8_format": {
+ "message": "пре %d седмице/а",
+ "description": ""
+ },
+ "options_toolbar": {
+ "message": "Алатна трака:",
+ "description": ""
+ },
+ "options_notifications_6": {
+ "message": "Скрати обавештења дужа од",
+ "description": ""
+ },
+ "popup_wait": {
+ "message": "Сачекај...",
+ "description": ""
+ },
+ "tooltip_2": {
+ "message": "Средњи (или Ctrl+Леви) клик: Освежи све налоге",
+ "description": ""
+ },
+ "options_notifications_29": {
+ "message": "Ова опција се односи на мени на десном клику на дугмету на алатној траци -> онемогући сва обавештења -> прилагођени временски период",
+ "description": ""
+ },
+ "options_tab_3": {
+ "message": "Отвори нови Gmail налог поред активне картице",
+ "description": ""
+ },
+ "options_gmail_8": {
+ "message": "Означи поруке као прочитане при архивирању",
+ "description": ""
+ },
+ "options_toolbar_17": {
+ "message": "Отвара основни Gmail налог",
+ "description": ""
+ },
+ "options_notifications_7": {
+ "message": "карактера у пољима [title] и [summary].",
+ "description": ""
+ },
+ "options_misc_10": {
+ "message": "Покрени десктоп и звучна обавештења само за пошту пристиглу у последњих (у минутима): ",
+ "description": ""
+ },
+ "options_tab_8": {
+ "message": "Занемари отворене Gmail картице",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(без наслова)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "Изаберите датотеку звучног обавештења",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "пре 1 минут",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "јул",
+ "description": ""
+ },
+ "label_8": {
+ "message": "На 2 сата",
+ "description": ""
+ },
+ "msg_4": {
+ "message": "Напомена: Да би обавештења радила исправно, морате бити пријављени на свој Google налог.",
+ "description": ""
+ },
+ "popup_msg_20": {
+ "message": "новембар",
+ "description": ""
+ },
+ "options_toolbar_6": {
+ "message": "Прикажи пун садржај",
+ "description": ""
+ },
+ "options_gmail_11": {
+ "message": "Прилагођени канали:",
+ "description": ""
+ },
+ "options_tab_2": {
+ "message": "Не тражи у другим прозорима прегледача отворене Gmail налоге. Ако Gmail није отворен у активном прозору, отвориће се у новој картици.",
+ "description": ""
+ },
+ "label_11": {
+ "message": "Напиши нову поруку",
+ "description": ""
+ },
+ "options_toolbar_7": {
+ "message": "Ширина панела у режиму приказа пуног садржаја (у пикселима):",
+ "description": ""
+ },
+ "options_notifications_31": {
+ "message": "Прилагођени звук обавештења",
+ "description": ""
+ },
+ "options_timings_l5": {
+ "message": "Минимални период је 5 минута.",
+ "description": ""
+ },
+ "options_misc": {
+ "message": "Остало:",
+ "description": ""
+ },
+ "options_gmail_2": {
+ "message": "Одвоји ознаке \",\" (зарезом).",
+ "description": ""
+ },
+ "options_misc_4": {
+ "message": "Сива боја за \"Нема непрочитаних\" и плава за \"Неповезан\"",
+ "description": ""
+ },
+ "options_toolbar_13": {
+ "message": "Прикажи пошту као HTML у режиму приказа пуног садржаја",
+ "description": ""
+ },
+ "options_toolbar_16": {
+ "message": "Освежава све налоге",
+ "description": ""
+ },
+ "options_gmail_6": {
+ "message": "Пети налог (/mail/u/4/)",
+ "description": ""
+ },
+ "popup_msg_14": {
+ "message": "мај",
+ "description": ""
+ },
+ "options_inshort": {
+ "message": "Обавештења за више Google Mail (Gmail) налога.",
+ "description": ""
+ },
+ "options_misc_12": {
+ "message": "Не обухватај детаље о пријављивању у опису алатке",
+ "description": ""
+ },
+ "options_tab_4": {
+ "message": "Отвори Gmail налог у активној картици",
+ "description": ""
+ },
+ "popup_msg_3_format": {
+ "message": "пре %d минута",
+ "description": ""
+ },
+ "label_12": {
+ "message": "Отвори FAQ",
+ "description": ""
+ },
+ "description": {
+ "message": "Обавештења за више Google Mail (Gmail) налога",
+ "description": ""
+ },
+ "popup_spam": {
+ "message": "Пријави непожељну поруку",
+ "description": ""
+ }
+}
\ No newline at end of file
diff --git a/src/_locales/zh_CN/messages.json b/v1/builds/unpacked/chrome/_locales/zh_CN/messages.json
similarity index 74%
rename from src/_locales/zh_CN/messages.json
rename to v1/builds/unpacked/chrome/_locales/zh_CN/messages.json
index 08e9ffc3..13f52292 100644
--- a/src/_locales/zh_CN/messages.json
+++ b/v1/builds/unpacked/chrome/_locales/zh_CN/messages.json
@@ -15,6 +15,14 @@
"message": "在点击任务栏通知图标时打开工具栏面板(仅 Windows,测试版)",
"description": ""
},
+ "options_notifications_30": {
+ "message": "整合所有连续的桌面通知为单条通知",
+ "description": ""
+ },
+ "settings_open_label": {
+ "message": "打开选项",
+ "description": ""
+ },
"options_timings_l7": {
"message": "不检查新邮件,在刚启动的(秒):",
"description": ""
@@ -27,6 +35,10 @@
"message": "提醒有未读邮件,每隔(分钟):",
"description": ""
},
+ "popup_msg_4": {
+ "message": "1 小时前",
+ "description": ""
+ },
"options_gmail_1": {
"message": "主帐户 (/mail/u/0/)",
"description": ""
@@ -51,10 +63,18 @@
"message": "重置所有设置到出厂设置",
"description": ""
},
+ "options_notifications_28": {
+ "message": "指定时间内禁止所有通知 (分钟):",
+ "description": ""
+ },
"options_timings_l4": {
"message": "设置值为 0 可禁用定期提醒。",
"description": ""
},
+ "options_notifications_32": {
+ "message": "名称或电子邮件包含",
+ "description": ""
+ },
"options_tab_6": {
"message": "在新窗口打开 Gmail 帐户",
"description": ""
@@ -71,6 +91,10 @@
"message": "最小高度为 500px。",
"description": ""
},
+ "popup_msg_10": {
+ "message": "1月",
+ "description": ""
+ },
"options_notifications_26": {
"message": "始终显示托盘通知 (仅 Windows)",
"description": ""
@@ -79,6 +103,10 @@
"message": "禁用所有通知",
"description": ""
},
+ "label_13": {
+ "message": "自定义时间长度",
+ "description": ""
+ },
"options_empty": {
"message": "未定义",
"description": ""
@@ -103,6 +131,10 @@
"message": "红色表示“无未读邮件”,灰色表示“已断开”",
"description": ""
},
+ "popup_msg_5": {
+ "message": "小时前",
+ "description": ""
+ },
"options_notifications_27": {
"message": "托盘通知图标将始终显示,即使没有未读邮件。",
"description": ""
@@ -119,6 +151,10 @@
"message": "来自: [author_email][break]标题: [title][break]摘要: [summary]",
"description": ""
},
+ "popup_trash": {
+ "message": "删除",
+ "description": ""
+ },
"options_tab": {
"message": "打开标签页:",
"description": ""
@@ -147,18 +183,42 @@
"message": "部分常用标签: \"inbox\", \"important\", \"^smartlabel_personal\", \"^smartlabel_newsletter\", \"^smartlabel_notification\", \"^smartlabel_group\"",
"description": ""
},
+ "popup_msg_17": {
+ "message": "8月",
+ "description": ""
+ },
+ "popup_msg_15": {
+ "message": "6月",
+ "description": ""
+ },
+ "options_notifications_34": {
+ "message": "邮件摘要包含",
+ "description": ""
+ },
+ "label_14": {
+ "message": "已登录帐户",
+ "description": ""
+ },
"options_misc_13": {
"message": "默认情况下,本扩展的工具栏按钮的工具提示带有登录信息。取消此选项时,工具提示文本将恢复默认值。",
"description": ""
},
"options_misc_6": {
- "message": "不在 Gmail 网站已经打开时显示桌面通知",
+ "message": "Show desktop notification to warn that Gmail is already opened in the active tab",
+ "description": ""
+ },
+ "popup_read": {
+ "message": "标为已读",
"description": ""
},
"options_notifications_4": {
"message": "通知格式",
"description": ""
},
+ "settings_open_title": {
+ "message": "打开选项(设置)页面",
+ "description": ""
+ },
"label_2": {
"message": "设置",
"description": ""
@@ -179,6 +239,10 @@
"message": "禁用 1 小时",
"description": ""
},
+ "popup_archive": {
+ "message": "归档",
+ "description": ""
+ },
"msg_2": {
"message": "链接已复制到剪贴板。",
"description": ""
@@ -187,10 +251,34 @@
"message": "选项 - Gmail™ Notifier",
"description": ""
},
+ "popup_msg_13": {
+ "message": "4月",
+ "description": ""
+ },
+ "popup_msg_9_format": {
+ "message": "%d 个月前",
+ "description": ""
+ },
+ "popup_msg_11": {
+ "message": "2月",
+ "description": ""
+ },
+ "popup_open_inbox": {
+ "message": "打开收件箱",
+ "description": ""
+ },
+ "options_tab_9": {
+ "message": "When unchecked, Gmail Notifier checks either active window or all open windows for open instance of Gmail and switch to the tab when tab opening is requested.",
+ "description": ""
+ },
"gmail": {
"message": "Gmail™ Notifier",
"description": ""
},
+ "popup_msg_6": {
+ "message": "昨天",
+ "description": ""
+ },
"options_toolbar_8": {
"message": "最小宽度为 500px。",
"description": ""
@@ -203,6 +291,10 @@
"message": "未读邮件超过 999 封时,不在徽章上显示确切数字",
"description": ""
},
+ "popup_msg_18": {
+ "message": "9月",
+ "description": ""
+ },
"options_notifications_14": {
"message": "此功能是实验性的,并可能导致您的 Firefox 浏览器不稳定 [需要重启]。",
"description": ""
@@ -223,8 +315,12 @@
"message": "请登录您的 Gmail 帐户",
"description": ""
},
+ "popup_of": {
+ "message": "/",
+ "description": ""
+ },
"options_notifications_15": {
- "message": "声音通知为",
+ "message": "默认声音是",
"description": ""
},
"options_notifications_21": {
@@ -243,6 +339,14 @@
"message": "未知",
"description": ""
},
+ "popup_msg_21": {
+ "message": "12月",
+ "description": ""
+ },
+ "popup_read_all": {
+ "message": "全部标为已读",
+ "description": ""
+ },
"options_notifications_8": {
"message": "要想没有截断和省略号,在这里使用较大的数值。",
"description": ""
@@ -303,10 +407,18 @@
"message": "任务栏通知目前不支持 Linux 操作系统。",
"description": ""
},
+ "options_notifications_35": {
+ "message": "要选择一个新的自定义声音,选择一个内置声音,然后再更改此选项为自定义声音",
+ "description": ""
+ },
"msg_1": {
"message": "标签页已经打开。点击工具栏上的按钮在新标签页中打开 Gmail,或者切换到现有的 Gmail 标签页。",
"description": ""
},
+ "popup_refresh": {
+ "message": "刷新",
+ "description": ""
+ },
"options_misc_5": {
"message": "蓝色表示“无未读邮件”,灰色表示“已断开”",
"description": ""
@@ -315,10 +427,22 @@
"message": "设置值为 0 将禁用邮件检查,除非手动刷新 [Safari 上不可用]。",
"description": ""
},
+ "popup_msg_19": {
+ "message": "10月",
+ "description": ""
+ },
+ "options_notifications_33": {
+ "message": "邮件标题包含",
+ "description": ""
+ },
"tooltip_3": {
"message": "右键单击:选择帐户",
"description": ""
},
+ "popup_date_format": {
+ "message": "%yy-%mm-%dd",
+ "description": ""
+ },
"options_notifications": {
"message": "通知:",
"description": ""
@@ -327,14 +451,22 @@
"message": "非零的值将反复触发桌面通知和提醒声音(类似有新邮件到达),如果您有未读的邮件。",
"description": ""
},
+ "popup_msg_12": {
+ "message": "3月",
+ "description": ""
+ },
"options_notifications_22": {
- "message": "如果您的浏览器没有播放通知声音,尝试使用一种在线转换工具,将它转换为一个纯净的 WAV 格式。",
+ "message": "如果您的浏览器不能播放自定义的声音,请尝试用在线转换工具将它转换为纯 WAV 格式。",
"description": ""
},
"options_tab_1": {
"message": "只在活动窗口中搜索已打开的 Gmail 帐户",
"description": ""
},
+ "popup_msg_7_format": {
+ "message": "%d 天前",
+ "description": ""
+ },
"options_timings_l1": {
"message": "检查新邮件,每隔(秒):",
"description": ""
@@ -347,6 +479,14 @@
"message": "Gmail™ Notifier",
"description": ""
},
+ "popup_msg_1": {
+ "message": "刚刚",
+ "description": ""
+ },
+ "popup_open_settings": {
+ "message": "打开设置",
+ "description": ""
+ },
"options_misc_3": {
"message": "工具栏颜色模式",
"description": ""
@@ -387,6 +527,10 @@
"message": "第六帐户 (/mail/u/5/)",
"description": ""
},
+ "popup_msg_8_format": {
+ "message": "%d 周前",
+ "description": ""
+ },
"options_toolbar": {
"message": "工具栏:",
"description": ""
@@ -395,10 +539,18 @@
"message": "截断通知中超过",
"description": ""
},
+ "popup_wait": {
+ "message": "等待...",
+ "description": ""
+ },
"tooltip_2": {
"message": "中键 (或 Ctrl+左键) 单击:刷新所有帐户",
"description": ""
},
+ "options_notifications_29": {
+ "message": "此选项有关工具栏按钮的右键菜单 -> 禁止所有通知 -> 自定义时间长度。",
+ "description": ""
+ },
"options_tab_3": {
"message": "在当前标签页后面打开新的 Gmail 帐户",
"description": ""
@@ -419,6 +571,26 @@
"message": "仅在邮件抵达未超过x分钟时发出桌面和声音通知:",
"description": ""
},
+ "options_tab_8": {
+ "message": "Ignore opened Gmail tabs",
+ "description": ""
+ },
+ "popup_no_subject": {
+ "message": "(无主题)",
+ "description": ""
+ },
+ "msg_5": {
+ "message": "选择一个声音文件",
+ "description": ""
+ },
+ "popup_msg_2": {
+ "message": "1 分钟前",
+ "description": ""
+ },
+ "popup_msg_16": {
+ "message": "7月",
+ "description": ""
+ },
"label_8": {
"message": "禁用 2 小时",
"description": ""
@@ -427,6 +599,10 @@
"message": "注意:为了通知能正常工作,您需要先登录到您的 Google 帐户。",
"description": ""
},
+ "popup_msg_20": {
+ "message": "11月",
+ "description": ""
+ },
"options_toolbar_6": {
"message": "显示完整内容",
"description": ""
@@ -447,6 +623,10 @@
"message": "完整内容模式下的工具栏面板宽度为(像素):",
"description": ""
},
+ "options_notifications_31": {
+ "message": "自定义声音通知",
+ "description": ""
+ },
"options_timings_l5": {
"message": "最小周期为 5 分钟。",
"description": ""
@@ -475,6 +655,10 @@
"message": "第五帐户 (/mail/u/4/)",
"description": ""
},
+ "popup_msg_14": {
+ "message": "5月",
+ "description": ""
+ },
"options_inshort": {
"message": "支持多个标签和帐户的通知工具,适用于 Google Mail (Gmail)。",
"description": ""
@@ -487,12 +671,20 @@
"message": "在当前标签页打开 Gmail 帐户",
"description": ""
},
+ "popup_msg_3_format": {
+ "message": "%d 分钟前",
+ "description": ""
+ },
"label_12": {
- "message": "打开主页",
+ "message": "打开常见问题",
"description": ""
},
"description": {
"message": "支持多个标签和帐户的通知工具,适用于 Google Mail (Gmail)",
"description": ""
+ },
+ "popup_spam": {
+ "message": "垃圾",
+ "description": ""
}
}
\ No newline at end of file
diff --git a/builds/unpacked/firefox/data/icons/blue/16.png b/v1/builds/unpacked/chrome/data/icons/blue/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/blue/16.png
rename to v1/builds/unpacked/chrome/data/icons/blue/16.png
diff --git a/builds/unpacked/firefox/data/icons/blue/19.png b/v1/builds/unpacked/chrome/data/icons/blue/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/blue/19.png
rename to v1/builds/unpacked/chrome/data/icons/blue/19.png
diff --git a/builds/unpacked/firefox/data/icons/blue/32.png b/v1/builds/unpacked/chrome/data/icons/blue/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/blue/32.png
rename to v1/builds/unpacked/chrome/data/icons/blue/32.png
diff --git a/builds/unpacked/firefox/data/icons/browsers/chrome.png b/v1/builds/unpacked/chrome/data/icons/browsers/chrome.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/browsers/chrome.png
rename to v1/builds/unpacked/chrome/data/icons/browsers/chrome.png
diff --git a/builds/unpacked/firefox/data/icons/browsers/firefox.png b/v1/builds/unpacked/chrome/data/icons/browsers/firefox.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/browsers/firefox.png
rename to v1/builds/unpacked/chrome/data/icons/browsers/firefox.png
diff --git a/builds/unpacked/firefox/data/icons/browsers/opera.png b/v1/builds/unpacked/chrome/data/icons/browsers/opera.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/browsers/opera.png
rename to v1/builds/unpacked/chrome/data/icons/browsers/opera.png
diff --git a/builds/unpacked/firefox/data/icons/gray/16.png b/v1/builds/unpacked/chrome/data/icons/gray/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/gray/16.png
rename to v1/builds/unpacked/chrome/data/icons/gray/16.png
diff --git a/builds/unpacked/firefox/data/icons/gray/19.png b/v1/builds/unpacked/chrome/data/icons/gray/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/gray/19.png
rename to v1/builds/unpacked/chrome/data/icons/gray/19.png
diff --git a/builds/unpacked/firefox/data/icons/gray/32.png b/v1/builds/unpacked/chrome/data/icons/gray/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/gray/32.png
rename to v1/builds/unpacked/chrome/data/icons/gray/32.png
diff --git a/builds/unpacked/firefox/data/icons/load0/16.png b/v1/builds/unpacked/chrome/data/icons/load0/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load0/16.png
rename to v1/builds/unpacked/chrome/data/icons/load0/16.png
diff --git a/builds/unpacked/firefox/data/icons/load0/19.png b/v1/builds/unpacked/chrome/data/icons/load0/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load0/19.png
rename to v1/builds/unpacked/chrome/data/icons/load0/19.png
diff --git a/builds/unpacked/firefox/data/icons/load0/32.png b/v1/builds/unpacked/chrome/data/icons/load0/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load0/32.png
rename to v1/builds/unpacked/chrome/data/icons/load0/32.png
diff --git a/builds/unpacked/firefox/data/icons/load1/16.png b/v1/builds/unpacked/chrome/data/icons/load1/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load1/16.png
rename to v1/builds/unpacked/chrome/data/icons/load1/16.png
diff --git a/builds/unpacked/firefox/data/icons/load1/19.png b/v1/builds/unpacked/chrome/data/icons/load1/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load1/19.png
rename to v1/builds/unpacked/chrome/data/icons/load1/19.png
diff --git a/builds/unpacked/firefox/data/icons/load1/32.png b/v1/builds/unpacked/chrome/data/icons/load1/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load1/32.png
rename to v1/builds/unpacked/chrome/data/icons/load1/32.png
diff --git a/builds/unpacked/firefox/data/icons/load2/16.png b/v1/builds/unpacked/chrome/data/icons/load2/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load2/16.png
rename to v1/builds/unpacked/chrome/data/icons/load2/16.png
diff --git a/builds/unpacked/firefox/data/icons/load2/19.png b/v1/builds/unpacked/chrome/data/icons/load2/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load2/19.png
rename to v1/builds/unpacked/chrome/data/icons/load2/19.png
diff --git a/builds/unpacked/firefox/data/icons/load2/32.png b/v1/builds/unpacked/chrome/data/icons/load2/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load2/32.png
rename to v1/builds/unpacked/chrome/data/icons/load2/32.png
diff --git a/builds/unpacked/firefox/data/icons/load3/16.png b/v1/builds/unpacked/chrome/data/icons/load3/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load3/16.png
rename to v1/builds/unpacked/chrome/data/icons/load3/16.png
diff --git a/builds/unpacked/firefox/data/icons/load3/19.png b/v1/builds/unpacked/chrome/data/icons/load3/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load3/19.png
rename to v1/builds/unpacked/chrome/data/icons/load3/19.png
diff --git a/builds/unpacked/firefox/data/icons/load3/32.png b/v1/builds/unpacked/chrome/data/icons/load3/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/load3/32.png
rename to v1/builds/unpacked/chrome/data/icons/load3/32.png
diff --git a/builds/unpacked/firefox/data/icons/new/16.png b/v1/builds/unpacked/chrome/data/icons/new/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/new/16.png
rename to v1/builds/unpacked/chrome/data/icons/new/16.png
diff --git a/builds/unpacked/firefox/data/icons/new/19.png b/v1/builds/unpacked/chrome/data/icons/new/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/new/19.png
rename to v1/builds/unpacked/chrome/data/icons/new/19.png
diff --git a/builds/unpacked/firefox/data/icons/new/32.png b/v1/builds/unpacked/chrome/data/icons/new/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/new/32.png
rename to v1/builds/unpacked/chrome/data/icons/new/32.png
diff --git a/builds/unpacked/firefox/data/icons/notification/16.png b/v1/builds/unpacked/chrome/data/icons/notification/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/notification/16.png
rename to v1/builds/unpacked/chrome/data/icons/notification/16.png
diff --git a/builds/unpacked/firefox/data/icons/notification/32.png b/v1/builds/unpacked/chrome/data/icons/notification/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/notification/32.png
rename to v1/builds/unpacked/chrome/data/icons/notification/32.png
diff --git a/builds/unpacked/firefox/data/icons/notification/48.png b/v1/builds/unpacked/chrome/data/icons/notification/48.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/notification/48.png
rename to v1/builds/unpacked/chrome/data/icons/notification/48.png
diff --git a/builds/unpacked/firefox/data/icons/notification/64.png b/v1/builds/unpacked/chrome/data/icons/notification/64.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/notification/64.png
rename to v1/builds/unpacked/chrome/data/icons/notification/64.png
diff --git a/builds/unpacked/firefox/data/icons/options/16.png b/v1/builds/unpacked/chrome/data/icons/options/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/options/16.png
rename to v1/builds/unpacked/chrome/data/icons/options/16.png
diff --git a/builds/unpacked/firefox/data/icons/options/64.png b/v1/builds/unpacked/chrome/data/icons/options/64.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/options/64.png
rename to v1/builds/unpacked/chrome/data/icons/options/64.png
diff --git a/builds/unpacked/firefox/data/icons/red/128.png b/v1/builds/unpacked/chrome/data/icons/red/128.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/red/128.png
rename to v1/builds/unpacked/chrome/data/icons/red/128.png
diff --git a/builds/unpacked/firefox/data/icons/red/16.png b/v1/builds/unpacked/chrome/data/icons/red/16.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/red/16.png
rename to v1/builds/unpacked/chrome/data/icons/red/16.png
diff --git a/builds/unpacked/firefox/data/icons/red/19.png b/v1/builds/unpacked/chrome/data/icons/red/19.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/red/19.png
rename to v1/builds/unpacked/chrome/data/icons/red/19.png
diff --git a/builds/unpacked/firefox/data/icons/red/32.png b/v1/builds/unpacked/chrome/data/icons/red/32.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/red/32.png
rename to v1/builds/unpacked/chrome/data/icons/red/32.png
diff --git a/builds/unpacked/firefox/data/icons/red/48.png b/v1/builds/unpacked/chrome/data/icons/red/48.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/red/48.png
rename to v1/builds/unpacked/chrome/data/icons/red/48.png
diff --git a/builds/unpacked/firefox/data/icons/red/64.png b/v1/builds/unpacked/chrome/data/icons/red/64.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/red/64.png
rename to v1/builds/unpacked/chrome/data/icons/red/64.png
diff --git a/builds/unpacked/firefox/data/icons/tray/blue.png b/v1/builds/unpacked/chrome/data/icons/tray/blue.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/tray/blue.png
rename to v1/builds/unpacked/chrome/data/icons/tray/blue.png
diff --git a/builds/unpacked/firefox/data/icons/tray/gray.png b/v1/builds/unpacked/chrome/data/icons/tray/gray.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/tray/gray.png
rename to v1/builds/unpacked/chrome/data/icons/tray/gray.png
diff --git a/builds/unpacked/firefox/data/icons/tray/red.png b/v1/builds/unpacked/chrome/data/icons/tray/red.png
similarity index 100%
rename from builds/unpacked/firefox/data/icons/tray/red.png
rename to v1/builds/unpacked/chrome/data/icons/tray/red.png
diff --git a/src/data/options/chrome/chrome.js b/v1/builds/unpacked/chrome/data/options/chrome/chrome.js
similarity index 100%
rename from src/data/options/chrome/chrome.js
rename to v1/builds/unpacked/chrome/data/options/chrome/chrome.js
diff --git a/builds/unpacked/firefox/data/options/css_browser_selector.js b/v1/builds/unpacked/chrome/data/options/css_browser_selector.js
similarity index 100%
rename from builds/unpacked/firefox/data/options/css_browser_selector.js
rename to v1/builds/unpacked/chrome/data/options/css_browser_selector.js
diff --git a/builds/unpacked/firefox/data/options/index.css b/v1/builds/unpacked/chrome/data/options/index.css
similarity index 83%
rename from builds/unpacked/firefox/data/options/index.css
rename to v1/builds/unpacked/chrome/data/options/index.css
index 3cd40c39..b7dde699 100644
--- a/builds/unpacked/firefox/data/options/index.css
+++ b/v1/builds/unpacked/chrome/data/options/index.css
@@ -15,20 +15,28 @@
}
.box {
- width:100%;
- display: table;
-}
-.box label {
- display: table-cell;
- width: 1px;
- white-space: nowrap;
- padding-right: 5px;
+ display: flex;
+ align-items: center;
}
.box input,
.box select {
display: table-cell;
width:100%;
}
+.box div {
+ white-space: nowrap;
+ margin-right: 10px;
+}
+
+.browse {
+ display: none;
+ font-weight: bold;
+ padding: 0 5px;
+ cursor: pointer;
+}
+.browse input {
+ display: none;
+}
.spacer {
height: 18px;
@@ -57,6 +65,24 @@ table {
color: #222;
font-family: arial,sans-serif;
}
+select,
+input {
+ background-color: #fff;
+}
+input {
+ height: 24px;
+ border: 1px solid #C8C8C8;
+}
+select {
+ height: 22px;
+ border: 0;
+ outline: 1px solid #C8C8C8;
+}
+
+input[type=checkbox] {
+ width: 20px;
+ height: 20px;
+}
input[type=number] {
width: 55px;
diff --git a/builds/unpacked/firefox/data/options/index.html b/v1/builds/unpacked/chrome/data/options/index.html
similarity index 55%
rename from builds/unpacked/firefox/data/options/index.html
rename to v1/builds/unpacked/chrome/data/options/index.html
index 699bb47a..b1a3890b 100644
--- a/builds/unpacked/firefox/data/options/index.html
+++ b/v1/builds/unpacked/chrome/data/options/index.html
@@ -57,39 +57,39 @@
|
@@ -99,14 +99,14 @@
| |
[author_name], [author_email], [title] [summary].
@@ -115,76 +115,182 @@
-
-
- |
|
+
+
+
|
@@ -192,7 +298,7 @@
|
|