From 8a135321d423944e476f6f4b3a47bc1d8901dc1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Taro?= Date: Tue, 7 Jun 2016 19:26:36 +0200 Subject: [PATCH 1/6] Add character encoding meta tag and mime type for requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomáš Taro --- background.html | 1 + button/popup.html | 1 + js/adblock_start_chrome.js | 2 +- js/background.js | 3 +++ js/ytchannel.js | 2 ++ options/index.html | 1 + options/index.js | 3 ++- options/support.js | 1 + pages/adreport.html | 1 + pages/adreport.js | 1 + pages/resourceblock.html | 2 +- pages/subscribe.html | 1 + tools/tests/safari_test.html | 2 +- tools/tests/test.html | 2 +- 14 files changed, 18 insertions(+), 5 deletions(-) diff --git a/background.html b/background.html index 8e77e75c..ed0c43d1 100644 --- a/background.html +++ b/background.html @@ -1,6 +1,7 @@ + diff --git a/button/popup.html b/button/popup.html index 2acb56b8..26487773 100644 --- a/button/popup.html +++ b/button/popup.html @@ -1,6 +1,7 @@ + diff --git a/js/adblock_start_chrome.js b/js/adblock_start_chrome.js index bd25d2cb..d992907e 100644 --- a/js/adblock_start_chrome.js +++ b/js/adblock_start_chrome.js @@ -107,7 +107,7 @@ adblock_begin({ chrome.runtime.onMessage.removeListener(elementPurger.onPurgeRequest); }, handleHiding: function(data) { - if (data.hiding) + if (data && data.hiding) block_list_via_css(data.selectors); } }); diff --git a/js/background.js b/js/background.js index 8dabe111..1d84e56a 100644 --- a/js/background.js +++ b/js/background.js @@ -1349,6 +1349,9 @@ if (!SAFARI) { } chrome.tabs.onCreated.addListener(function(tab) { + if (chrome.runtime.lastError || !tab || !tab.id) { + return; + } chrome.tabs.get(tab.id, function(tabs) { if (tabs && tabs.url && tabs.id) { runChannelWhitelist(tabs.url, tabs.id); diff --git a/js/ytchannel.js b/js/ytchannel.js index 55a85c48..ec792c8c 100644 --- a/js/ytchannel.js +++ b/js/ytchannel.js @@ -8,6 +8,7 @@ if (!/ab_channel/.test(url)) { xhr.open("GET", "https://www.googleapis.com/youtube/v3/channels?part=snippet&id=" + getChannelId(url) + "&key=" + atob("QUl6YVN5QzJKMG5lbkhJZ083amZaUUYwaVdaN3BKd3dsMFczdUlz"), true); + xhr.overrideMimeType("application/json"); xhr.onload = function() { if (xhr.readyState === 4 && xhr.status === 200) { var json = JSON.parse(xhr.response); @@ -23,6 +24,7 @@ if (!/ab_channel/.test(url)) { xhr.open("GET", "https://www.googleapis.com/youtube/v3/videos?part=snippet&id=" + getVideoId(url) + "&key=" + atob("QUl6YVN5QzJKMG5lbkhJZ083amZaUUYwaVdaN3BKd3dsMFczdUlz"), true); + xhr.overrideMimeType("application/json"); xhr.onload = function() { if (xhr.readyState === 4 && xhr.status === 200) { var json = JSON.parse(xhr.response); diff --git a/options/index.html b/options/index.html index 7f68ee15..2f0c12ee 100644 --- a/options/index.html +++ b/options/index.html @@ -2,6 +2,7 @@ + diff --git a/options/index.js b/options/index.js index b99987b2..b629c916 100644 --- a/options/index.js +++ b/options/index.js @@ -75,7 +75,8 @@ function displayTranslationCredit() { if (navigator.language.substring(0, 2) != "en") { var translators = []; var xhr = new XMLHttpRequest(); - xhr.open("GET", chrome.runtime.getURL('translators.json'), true); + xhr.open("GET", chrome.runtime.getURL("translators.json"), true); + xhr.overrideMimeType("application/json"); xhr.onload = function() { var text = JSON.parse(this.responseText); var lang = navigator.language; diff --git a/options/support.js b/options/support.js index 7c8719f6..900aa234 100644 --- a/options/support.js +++ b/options/support.js @@ -59,6 +59,7 @@ $(document).ready(function() { $("#whatsnew a").click(function() { var xhr = new XMLHttpRequest(); xhr.open("GET", chrome.runtime.getURL("CHANGELOG.txt"), true); + xhr.overrideMimeType("text/plain"); xhr.onreadystatechange = function() { if (this.readyState === 4 && this.responseText !== "") { $("#changes").text(xhr.responseText).css({width: "670px", height: "200px"}).fadeIn(); diff --git a/pages/adreport.html b/pages/adreport.html index 17609e69..b6040a12 100644 --- a/pages/adreport.html +++ b/pages/adreport.html @@ -7,6 +7,7 @@ + diff --git a/pages/adreport.js b/pages/adreport.js index 8f69305a..42b79fea 100644 --- a/pages/adreport.js +++ b/pages/adreport.js @@ -485,6 +485,7 @@ var fetchMalware = function() { // The timestamp is add to the URL to prevent caching by the browser xhr.open("GET", "https://data.getadblock.com/filters/domains.json?timestamp=" + new Date() .getTime(), true); + xhr.overrideMimeType("application/json"); xhr.onload = function() { if (xhr.readyState === 4 && xhr.status === 200) { var parsedText = JSON.parse(xhr.responseText); diff --git a/pages/resourceblock.html b/pages/resourceblock.html index bbdc3c5f..aee48608 100644 --- a/pages/resourceblock.html +++ b/pages/resourceblock.html @@ -2,7 +2,7 @@ - + diff --git a/pages/subscribe.html b/pages/subscribe.html index 9709411b..1a5206a2 100644 --- a/pages/subscribe.html +++ b/pages/subscribe.html @@ -2,6 +2,7 @@ AdBlock + diff --git a/tools/tests/safari_test.html b/tools/tests/safari_test.html index 032e930e..3a4e17ff 100644 --- a/tools/tests/safari_test.html +++ b/tools/tests/safari_test.html @@ -40,7 +40,7 @@ see http://blanketjs.org/ for more information. --> - + AdBlock test cases diff --git a/tools/tests/test.html b/tools/tests/test.html index b69a93fa..94668b1b 100644 --- a/tools/tests/test.html +++ b/tools/tests/test.html @@ -38,7 +38,7 @@ see http://blanketjs.org/ for more information. --> - + AdBlock test cases From 61bc2082eaa097ddb840c5cca60c9d16034d58e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Taro?= Date: Tue, 7 Jun 2016 20:15:58 +0200 Subject: [PATCH 2/6] Various fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Set about:addons as an extensions page for Firefox - Adjusted steps for Firefox and Edge - Fixed detection of CatBlock - Fixed using chrome.permissions Signed-off-by: Tomáš Taro --- pages/adreport.js | 45 +++++++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/pages/adreport.js b/pages/adreport.js index 42b79fea..2cb2e494 100644 --- a/pages/adreport.js +++ b/pages/adreport.js @@ -14,6 +14,10 @@ $(function() { chrome.tabs.create({ url: 'opera://extensions/' }); + } else if (FIREFOX) { + chrome.tabs.create({ + url: 'about:addons' + }); } else { chrome.tabs.create({ url: 'chrome://extensions/' @@ -541,9 +545,17 @@ $("#step_update_filters_no").click(function() { $("#step_update_filters_yes").click(function() { $("#step_update_filters") .html("" + translate("yes") + ""); - $("#step_disable_extensions_DIV") + // TODO: Add support for Edge once it will have + // a page with installed extensions + if (!FIREFOX && !EDGE) { + $("#step_disable_extensions_DIV") + .fadeIn() + .css("display", "block"); + } else { + $("#step_language_DIV") .fadeIn() .css("display", "block"); + } }); @@ -583,9 +595,8 @@ $("#step_disable_extensions_yes").click(function() { //Automatically disable / enable other extensions $("#OtherExtensions").click(function() { - $("#OtherExtensions") - .prop("disabled", true); - if (!SAFARI) { + $("#OtherExtensions").prop("disabled", true); + if (chrome.permissions && chrome.permissions.request) { chrome.permissions.request({ permissions: ['management'] }, function(granted) { @@ -600,11 +611,12 @@ $("#OtherExtensions").click(function() { if (result[i].enabled && result[i].mayDisable && result[i].id !== "mdcgnhlfpnbeieiiccmebgkfdebafodo" && - result[i].id !== "aobdicepooefnbaeokijohmhjlleamfj") { // TODO: add opera id + result[i].id !== "pejeadkbfbppoaoinpmkeonebmngpnkk") { //if the extension is a developer version, continue, don't disable. if (result[i].installType === "development" && result[i].type === "extension" && - result[i].name === "AdBlock with CatBlock") { + (result[i].name === "AdBlock with CatBlock" || + result[i].name === "CatBlock")) { continue; } chrome.management.setEnabled(result[i].id, false); @@ -669,21 +681,18 @@ $("#step_language_lang") } contact = required_lists[required_lists.length - 1]; + $("#checkinfirefox1").html(translate("checkinfirefox_1")); + $("#checkinfirefox2").html(translate("checkinfirefox_2")); + $("#checkinfirefox").html(translate("checkinfirefoxtitle")); + + if (SAFARI || FIREFOX || EDGE) { + $("#chrome1, #chrome2").html(translate("orchrome")); + $("#adblockforchrome").html(translate("oradblockforchrome")); + } + $("#step_firefox_DIV") .fadeIn() .css("display", "block"); - $("#checkinfirefox1") - .html(translate("checkinfirefox_1")); - $("#checkinfirefox2") - .html(translate("checkinfirefox_2")); - $("#checkinfirefox") - .html(translate("checkinfirefoxtitle")); - if (SAFARI) { - $("#chrome1, #chrome2") - .html(translate("orchrome")); - $("#adblockforchrome") - .html(translate("oradblockforchrome")); - } }); // STEP 5: also in Firefox From 479352e1453100baea99efec9b109197dcff17a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Taro?= Date: Tue, 7 Jun 2016 20:20:32 +0200 Subject: [PATCH 3/6] Don't show how-to hide the extension button on Firefox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomáš Taro --- button/popup.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/button/popup.js b/button/popup.js index 9036b3af..9bf8b17d 100644 --- a/button/popup.js +++ b/button/popup.js @@ -102,6 +102,12 @@ $(function() { } } + // Currently there's no way, + // how to hide the extension button + if (FIREFOX) { + $("#div_help_hide_start").hide(); + } + }); if (SAFARI) { From d57f90b23bc16fb6737fffd115f80a0a41b78314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Taro?= Date: Tue, 7 Jun 2016 20:39:36 +0200 Subject: [PATCH 4/6] Add CB strings for yet untranslated AB strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomáš Taro --- button/popup.js | 4 +-- catblock/_locales/en/messages.json | 42 +++++++++++++++++++++++++++++- filtering/myfilters.js | 5 ++-- js/background.js | 2 +- js/functions.js | 2 +- manifest.json | 2 +- options/index.html | 2 +- pages/adreport.html | 2 +- uiscripts/top_open_whitelist_ui.js | 2 +- 9 files changed, 51 insertions(+), 12 deletions(-) diff --git a/button/popup.js b/button/popup.js index 9bf8b17d..754e97d4 100644 --- a/button/popup.js +++ b/button/popup.js @@ -199,7 +199,7 @@ $(function() { $("#div_pause_adblock").click(function() { if (BG.get_settings().safari_content_blocking) { - alert(translate('safaricontentblockingpausemessage')); + alert(translate('catblock_safaricontentblockingpausemessage')); } else { BG.adblock_is_paused(true); if (!SAFARI) { @@ -270,7 +270,7 @@ $(function() { if (OPERA) { $("#help_hide_explanation").text(translate("operabutton_how_to_hide2")).slideToggle(); } else if (SAFARI) { - $("#help_hide_explanation").text(translate("safaributton_how_to_hide2")). + $("#help_hide_explanation").text(translate("catblock_safaributton_how_to_hide2")). slideToggle(function() { var popupheight = $("body").outerHeight(); safari.extension.popovers[0].height = popupheight; diff --git a/catblock/_locales/en/messages.json b/catblock/_locales/en/messages.json index 4cbaabbe..b02be444 100644 --- a/catblock/_locales/en/messages.json +++ b/catblock/_locales/en/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." - } + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, } \ No newline at end of file diff --git a/filtering/myfilters.js b/filtering/myfilters.js index 3e138c1b..5b16f92e 100644 --- a/filtering/myfilters.js +++ b/filtering/myfilters.js @@ -743,12 +743,11 @@ MyFilters.prototype._make_subscription_options = function() { // When modifying a list, IDs mustn't change! return { "adblock_custom": { // AdBlock custom filters - url: "https://cdn.adblockcdn.com/filters/adblock_custom.txt", + url: "https://cdn.adblockcdn.com/filters/adblock_custom.txt" }, "easylist": { // EasyList url: "https://easylist-downloads.adblockplus.org/easylist.txt", - safariJSON_URL: "https://cdn.adblockcdn.com/filters/easylist.json", - safariJSON_URL_AA: "https://cdn.adblockcdn.com/filters/easylist_aa.json", + safariJSON_URL: "https://cdn.adblockcdn.com/filters/easylist.json" }, "easylist_plus_bulgarian": { // Additional Bulgarian filters url: "http://stanev.org/abp/adblock_bg.txt", diff --git a/js/background.js b/js/background.js index 1d84e56a..7af29ae8 100644 --- a/js/background.js +++ b/js/background.js @@ -1283,7 +1283,7 @@ createMalwareNotification = function() { iconUrl: chrome.runtime.getURL('img/icon48.png'), type: 'basic', priority: 2, - message: translate('malwarenotificationmessage'), + message: translate('catblock_malwarenotificationmessage'), buttons: [{title:translate('malwarenotificationlearnmore'), iconUrl:chrome.runtime.getURL('img/icon24.png')}, {title:translate('malwarenotificationdisablethesemessages'), diff --git a/js/functions.js b/js/functions.js index a55396bd..c5cde759 100644 --- a/js/functions.js +++ b/js/functions.js @@ -253,7 +253,7 @@ var createRuleLimitExceededSafariNotification = function() { if (SAFARI && ("Notification" in window)) { sessionstorage_set("contentblockingerror", translate("safaricontentblockinglimitexceeded")); chrome.runtime.sendMessage({command: "contentblockingmessageupdated"}); - var note = new Notification(translate("safarinotificationtitle") , { 'body' : translate("safarinotificationbody"), 'tag' : 1 }); + var note = new Notification(translate("safarinotificationtitle") , { 'body' : translate("catblock_safarinotificationbody"), 'tag' : 1 }); note.onclick = function() { openTab("options/index.html?tab=0"); }; diff --git a/manifest.json b/manifest.json index c19ec846..fcd866a7 100644 --- a/manifest.json +++ b/manifest.json @@ -20,7 +20,7 @@ "38": "img/icon38.png" }, "default_popup": "button/popup.html", - "default_title": "__MSG_adblock_click_for_details__" + "default_title": "__MSG_catblock_adblock_click_for_details__" }, "content_scripts": [ { diff --git a/options/index.html b/options/index.html index 2f0c12ee..d56885c2 100644 --- a/options/index.html +++ b/options/index.html @@ -333,7 +333,7 @@

-

+

diff --git a/pages/adreport.html b/pages/adreport.html index b6040a12..78cfbbb4 100644 --- a/pages/adreport.html +++ b/pages/adreport.html @@ -6,7 +6,7 @@ - + diff --git a/uiscripts/top_open_whitelist_ui.js b/uiscripts/top_open_whitelist_ui.js index bed982f0..b3e73200 100644 --- a/uiscripts/top_open_whitelist_ui.js +++ b/uiscripts/top_open_whitelist_ui.js @@ -54,7 +54,7 @@ function top_open_whitelist_ui() { btns[translate("buttoncancel")] = function() { page.dialog('close');} var page = $("

"). - append('' + translate('adblock_wont_run_on_pages_matching') + + append('' + translate('catblock_adblock_wont_run_on_pages_matching') + ''). append('

'). append('


' + From ca6456fb70889bb4390dc95890e22190fcc0e19d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Taro?= Date: Tue, 7 Jun 2016 20:45:21 +0200 Subject: [PATCH 5/6] Remove trailing space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomáš Taro --- catblock/_locales/en/messages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catblock/_locales/en/messages.json b/catblock/_locales/en/messages.json index b02be444..fb3552e8 100644 --- a/catblock/_locales/en/messages.json +++ b/catblock/_locales/en/messages.json @@ -190,5 +190,5 @@ "catblock_safaricontentblockingpausemessage":{ "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." - }, + } } \ No newline at end of file From a52d261c1db394a4c74952763770169f329ed73e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Taro?= Date: Tue, 7 Jun 2016 20:47:16 +0200 Subject: [PATCH 6/6] Update translations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomáš Taro --- _locales/ar/messages.json | 2224 ++++++++++++------------ _locales/bg/messages.json | 2314 ++++++++++++------------ _locales/ca/messages.json | 2318 +++++++++++++------------ _locales/cs/messages.json | 1874 ++++++++++---------- _locales/da/messages.json | 1768 ++++++++++--------- _locales/de/messages.json | 2264 ++++++++++++------------ _locales/el/messages.json | 2318 +++++++++++++------------ _locales/en/messages.json | 2318 +++++++++++++------------ _locales/es/messages.json | 1872 ++++++++++---------- _locales/fi/messages.json | 2294 ++++++++++++------------ _locales/fr/messages.json | 2318 +++++++++++++------------ _locales/gu/messages.json | 1824 +++++++++---------- _locales/hr/messages.json | 2318 +++++++++++++------------ _locales/hu/messages.json | 2006 ++++++++++----------- _locales/id/messages.json | 2006 ++++++++++----------- _locales/it/messages.json | 2294 ++++++++++++------------ _locales/ja/messages.json | 1710 +++++++++--------- _locales/ko/messages.json | 1712 +++++++++--------- _locales/nb/messages.json | 1866 ++++++++++---------- _locales/nl/messages.json | 2318 +++++++++++++------------ _locales/pl/messages.json | 2010 ++++++++++----------- _locales/pt_BR/messages.json | 2318 +++++++++++++------------ _locales/pt_PT/messages.json | 2290 ++++++++++++------------ _locales/ro/messages.json | 1868 ++++++++++---------- _locales/ru/messages.json | 2318 +++++++++++++------------ _locales/sk/messages.json | 1868 ++++++++++---------- _locales/sl/messages.json | 2208 +++++++++++------------ _locales/sr/messages.json | 2142 ++++++++++++----------- _locales/sv/messages.json | 1868 ++++++++++---------- _locales/tr/messages.json | 1868 ++++++++++---------- _locales/uk/messages.json | 2318 +++++++++++++------------ _locales/vi/messages.json | 2318 +++++++++++++------------ _locales/zh_CN/messages.json | 2318 +++++++++++++------------ _locales/zh_TW/messages.json | 1750 ++++++++++--------- catblock/_locales/af/messages.json | 40 + catblock/_locales/ar/messages.json | 40 + catblock/_locales/ca/messages.json | 40 + catblock/_locales/cs/messages.json | 40 + catblock/_locales/da/messages.json | 40 + catblock/_locales/de/messages.json | 40 + catblock/_locales/el/messages.json | 40 + catblock/_locales/en/messages.json | 6 +- catblock/_locales/es-ES/messages.json | 40 + catblock/_locales/fi/messages.json | 40 + catblock/_locales/fr/messages.json | 40 + catblock/_locales/he/messages.json | 40 + catblock/_locales/hu/messages.json | 40 + catblock/_locales/it/messages.json | 40 + catblock/_locales/ja/messages.json | 40 + catblock/_locales/ko/messages.json | 40 + catblock/_locales/ms/messages.json | 40 + catblock/_locales/nl/messages.json | 40 + catblock/_locales/no/messages.json | 40 + catblock/_locales/pl/messages.json | 40 + catblock/_locales/pt-BR/messages.json | 40 + catblock/_locales/pt-PT/messages.json | 40 + catblock/_locales/ro/messages.json | 40 + catblock/_locales/ru/messages.json | 40 + catblock/_locales/sk/messages.json | 40 + catblock/_locales/sr/messages.json | 40 + catblock/_locales/sv-SE/messages.json | 40 + catblock/_locales/tr/messages.json | 40 + catblock/_locales/uk/messages.json | 40 + catblock/_locales/vi/messages.json | 40 + catblock/_locales/zh-CN/messages.json | 40 + catblock/_locales/zh-TW/messages.json | 40 + 66 files changed, 37622 insertions(+), 35022 deletions(-) diff --git a/_locales/ar/messages.json b/_locales/ar/messages.json index 790618bf..4333ad90 100644 --- a/_locales/ar/messages.json +++ b/_locales/ar/messages.json @@ -1,1462 +1,1502 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"لم يتم العثور على malware معروف." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"في هذا المتصفح، اشترك في نفس قوائم عوامل التصفية كما لديك هنا." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"عندك سؤال أو فكرة جديدة؟" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"في هذا المستعرض تحميل الصفحة مع الإعلان." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"الخيارات" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"السويدية" + "message":"EasyList (مستحسن)" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"منع المزيد من الإعلانات:" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ على هذه الصفحة", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"الروسية" + "message":"البولندية" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"الغاء الاشتراك." + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"لمطابقة CSS" }, - "filterchinese":{ - "description":"language", - "message":"الصينية" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"استبعاد" }, - "filterantisocial":{ - "description":"A filter list", - "message":"قائمة عوامل ااتصفية المعادية للمجتمع (يزيل أزرار الوسائط الاجتماعية)" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"لا ترغب في التحقق من ذلك" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"وجدت إعلان على صفحة ويب؟ نحن سوف تساعدك على العثور على المكان المناسب لتقرير ذلك!" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"كن حذراً: إذا كنت تجعل من خطأ هنا الكثير من عوامل التصفية الأخرى، بما في ذلك عوامل التصفية الرسمية، يمكن الحصول على كسر جداً!
قراءة دروس بناء جملة عوامل التصفية لمعرفة كيفية إضافة خيارات متقدمة في عوامل التصفية القائمة السوداء و عوامل التصفية القائمة البيضاء ." }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"إظهار عدد إعلانات المحظورة على زر AdBlock" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"تظهر الإعلانات في هذا المتصفح أيضاً؟" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"شفرة المصدر متاحة بحرية!" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"إذا كنت لا تريد أن تري إعلانات مثل هذه، تحتاج إلي أغلاق قائمة عوامل التصفية \"مقبولة إعلان\"." }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"تحديث منذ 1 دقيقة" + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"الليتوانية" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"فشل في إحضار عامل التصفية !" + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"اشترك في قائمة عوامل التصفية هذه، ثم حاول مرة أخرى: $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } + }, + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"قد يكون كمبيوترك مصاب ببرامج ضارة. انقر here لمزيد من المعلومات." }, - "linkblockadbyurl":{ + "linkunblock":{ "description":"Link on the 'Customize' tab", - "message":"منع اعلان بواسطة عنوان URL الخاص به" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"إخفاء هذا الزر" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"أنا سوف أجلب التحديثات تلقائياً؛ يمكنك أيضا تحديث الآن" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"تنسيق: ~موقع1.com|~موقع2.com|~اخبار.موقع3.org" + "message":"عرض الإعلانات على صفحة ويب أو المجال" }, - "filtereasylist_plus_estonian":{ + "lang_slovak":{ "description":"language", - "message":"الأستونية" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"نوع" + "message":"السلوفاكية" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"هناك تحديث ل AdBlock! اذهب إلى $here$ لتحديث.
ملاحظة: إذا كنت ترغب في تلقي التحديثات تلقائياً، انقر فوق فقط في Safari > Preferences > Extensions > Updates
والاختيار الخيار 'تثبيت التحديثات تلقائياً'.", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"ثبت Adblock Plus لي Firefox $chrome$ اذا لم يكون لديك.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"ما هذا؟" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"لا تشترك على أكثر مما تحتاج --كل واحد يبطئ قليلاً جدا! الاعتمادات و القوائم كثيرة ويمكن الاطلاع عليها هنا." - }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"ميزات AdBlock لا تعمل على هذا الموقع لأنه يستخدم تكنولوجيا قديمة. يمكنك اضافة موارد إلي لقائمة السوداء أو البيضاء يدوياً في علامة التبويب 'تخصيص' من الصفحة خيارات." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"البولندية" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"معرفة المزيد حول برنامج \"إعلانات مقبولة\"." - }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"تحديث $seconds$ ثانية/ثواني مضت", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"ونحن ليس لدينا قائمة عوامل تصفية افتراضي لتلك اللغة.
الرجاء محاولة العثور على قائمة مناسبة بأن يدعم هذه اللغة $link$ أو منع هذا الإعلان لنفسك في علامة التبويب 'تخصيص'.", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"كائن-subrequest" - }, - "filterhungarian":{ - "description":"language", - "message":"الهنغارية" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"ملاحظة: التقرير الخاص بك قد تصبح متاحة للجمهور. أن تبقيه في الاعتبار قبل ضم أي شيء خاص." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"انقر فوق الإعلان، وسوف يسير لكم من خلال حظر عليه." }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"الرجاء تعطيل بعض قوائم عوامل التصفية. مزيد من المعلومات في خيارات ل AdBlock." + "topframe":{ + "description":"Resource list page: frame type", + "message":"الإطار العلوي" }, - "other":{ - "description":"Multiple choice option", - "message":"الأخرى" + "typestylesheet":{ + "description":"A resource type", + "message":"تعريف النمط" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"منشأ التصفية: $list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } + "typeunknown":{ + "description":"A resource type", + "message":"غير معروف" }, "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", "message":"عذراً، AdBlock معطلة على هذه الصفحة بواسطة أحد قوائم عامل التصفية الخاصة بك." }, - "filtericelandic":{ - "description":"language", - "message":"أيسلندي" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"تحذير: لا يوجد عامل التصفية محدد!" + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"الطرف الثالث" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock معطل في هذه الصفحة." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"لا يوجد عامل التصفية المحدد!" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"إذا كنت تشاهد أحد إعلانات، لا تقدم تقرير عن الأخطاء، قدم تقرير اعلاني!" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"اليونانية" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"وتظهر الإعلانات في كل مكان باستثناء هذه المجالات..." + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"الخيارات" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"أنك تستخدم نسخة قديمة من AdBlock. الرجاء الذهاب إلى صفحة الإضافات، تمكين 'وضع المطور' وانقر فوق 'تحديث ملحقات الآن'" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"عمل حول أشرطة الفيديو Hulu.com لا يعمل (يتطلب إعادة تشغيل المستعرض الخاص بك)" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "tabcustomize":{ + "description":"A tab on the options page", + "message":"تخصيص" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"الإعلانات المحظورة:" + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"وجدت إعلان على صفحة ويب؟ نحن سوف تساعدك على العثور على المكان المناسب لتقرير ذلك!" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"إضافة عوامل تصفية للغة أخرى: " + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"انقر فوق الإعلان، وسوف يسير لكم من خلال حظر عليه." + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"الأستونية" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"البلغارية" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"موارد اللائحة البيضاء" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"تم تجاوز حد قاعدة حظر المحتوى" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"عظيم! أنت جاهز." + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"لا تقم بتشغيل AdBlock..." }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"دعم AdBlock" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"منع عنوان URLs تحتوي على هذا النص" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"إغلاق" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"تحقق في Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"الخطوة الأخيرة: ما الذي يصنع هذا إعلان؟" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"تخصيص AdBlock" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"الرجاء كتابة عامل التصفية الصحيح أدناه واضغط موافق" - }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"الخطوة 1: معرفة ما يجب منع" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"لم يتم العثور على malware معروف." }, - "filterdanish":{ + "filtereasylist_plus_finnish":{ "description":"language", - "message":"الدانماركية" - }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ على هذه الصفحة", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "message":"الفنلندية" }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"الإطار المتوسط" + "typescript":{ + "description":"A resource type", + "message":"البرنامج النصي" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"تحديث منذ 1 ساعة" + "lang_ukranian":{ + "description":"language", + "message":"الأوكرانية" }, "filtereasylist_plun_korean":{ "description":"language", "message":"الكورية" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"أو الكروم" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"الأضافة الأكثر شعبية في Chrome، مع ما يزيد على 40 مليون مستخدم! تمنع الأعلانات في جميع أنحاء شبكة الإنترنت." - }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"إظهار جميع الطلبات" - }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"لا ترغب في التحقق من ذلك" - }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" - }, - "yes":{ - "description":"A positive response to a question", - "message":"نعم" - }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"التراجع عن المنع الذي وضعته في هذا المجال" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"الرجاء تعطيل بعض قوائم عوامل التصفية. مزيد من المعلومات في خيارات ل AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"تخصيص" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"لقد حصلنا على الصفحة لمساعدتك على معرفة الناس وراء AdBlock، جيدا!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"وقفه AdBlock" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"هنا" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"هل أنت متأكد من أنك تريد الاشتراك في قائمة تصفية $title$؟", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "typepopup":{ + "description":"A resource type", + "message":"منبثقة" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"إذا كنت تشاهد أحد إعلانات، لا تقدم تقرير عن الأخطاء، قدم تقرير اعلاني!" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"أو AdBlock لكروم" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"تحديث الصفحة." }, - "typestylesheet":{ - "description":"A resource type", - "message":"تعريف النمط" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"ما هي لغة المكتوبة في تلك الصفحة؟" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock متوقفة مؤقتاً." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"الإصدار التجريبي" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"تم تجاوز حد قاعدة حظر المحتوى" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"إلغاء الإيقاف المؤقت ل AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"العثور على إعلانات...

فقط هذا سوف يستغرق بعض الوقت." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"المجال أو عنوان url AdBlock حيث لا ينبغي أن تمنع أي شيء" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock معطل في هذه الصفحة." }, - "typescript":{ - "description":"A resource type", - "message":"البرنامج النصي" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"في هذا المتصفح، اشترك في نفس قوائم عوامل التصفية كما لديك هنا." }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ في إجمالي", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"منع الأعلان" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"تحذير: في جميع المواقع الأخرى سوف تشاهد الإعلانات!
هذا يلغي كافة عوامل التصفية الأخرى لتلك المواقع." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"تم إعادة تمكين الملحقات التي تم تعطيل مسبقاً." }, - "no":{ - "description":"A negative response to a question", - "message":"لا" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"انتهى!" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"حدث خطأ ما. ولم يتم إرسال أي موارد. سيتم الآن إغلاق هذه الصفحة. حاول إعادة تحميل الموقع." + "filteradblock_custom":{ + "description":"A filter list", + "message":"عوامل التصفية المخصص لي AdBlock (مستحسن)" }, - "lang_ukranian":{ + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"نوع" + }, + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"ما هذا؟" + }, + "filterjapanese":{ "description":"language", - "message":"الأوكرانية" + "message":"اليابانية" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"حدثت $minutes$ دقائق مضت", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"منشأ التصفية: $list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"أنت لم تعد مشترك في قائمة عوامل تصفية \"الإعلانات مقبولة\"." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"الاشتراك في قوائم عامل التصفية" }, - "filtermalware":{ - "description":"A filter list", - "message":"الحماية من البرامج الضارة" - }, - "savebutton":{ - "description":"Save button", - "message":"حفظ" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"تحذير: في جميع المواقع الأخرى سوف تشاهد الإعلانات!
هذا يلغي كافة عوامل التصفية الأخرى لتلك المواقع." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"قم بتعطيل هذه الإعلامات" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"الاشتراك في قائمة عامل التصفية..." - }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"أنك تستخدم نسخة قديمة من AdBlock. الرجاء الذهاب إلى صفحة الإضافات، تمكين 'وضع المطور' وانقر فوق 'تحديث ملحقات الآن'" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"الموقع:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"خيارات AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"إضافة عوامل تصفية للغة أخرى: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"تطابق عوامل التصفية" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"التحقق من البرامج الضارة التي يمكن تكون عن طريق الحقن الإعلانات:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"قوائم عامل التصفية منع معظم الإعلانات على شبكة الإنترنت. يمكنك أيضا:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"إظهار بيانات التصحيح في \"سجل وحدة التحكم\" (الذي يبطئ AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"لإخفاء الزر،انقر على شريط الأدوات في Safari واختر \"تخصيص شريط الأدوات\"، ثم اسحب الزر AdBlock خارج شريط الأدوات . يمكنك إظهاره مرة أخرى عن طريق سحبه إلى شريط الأدوات." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"لقد تجاوزت الحجم المسموح به في Dropbox. رجاء أزالة بعض الأدخالات من عوامل التصفية المخصصة او عوامل التصفية المعطلة، و حاول مرة أخري " }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"إلغاء الإيقاف المؤقت ل AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"عمل حول أشرطة الفيديو Hulu.com لا يعمل (يتطلب إعادة تشغيل المستعرض الخاص بك)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"استبعاد" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"تعطيل كافة ملحقات باستثناء AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"الائتمان للترجمة يذهب إلى:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"تحميل..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"الزر الأيمن على الأعلانات في الصغحة لمنعها--أو منعها من هنا يدوياً." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"اشتراك" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"ملاحظة: Whitelisting (السماح بالإعلانات على) صفحة أو موقع لا تعمل مع تمكين حظر المحتوى في safari." }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"تعديل عوامل التصفية المعطلة:" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" - }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"تمكين منع المحتوى Safari" - }, - "disableaa":{ - "description":"Section header on the ad report page", - "message":"تحقق من عوامل تصفية \"الإعلانات المقبولة\":" - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"لإخفاء الزر،انقر على شريط الأدوات في Safari واختر \"تخصيص شريط الأدوات\"، ثم اسحب الزر AdBlock خارج شريط الأدوات . يمكنك إظهاره مرة أخرى عن طريق سحبه إلى شريط الأدوات." - }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"عنصر المحظورة:" }, - "typemain_frame":{ + "typepage":{ "description":"A resource type", "message":"الصفحة" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "typeother":{ + "description":"A resource type", + "message":"الأخرى" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"تم! لقد تم إعادة تحميل الصفحة مع الإعلان. الرجاء التحقق من تلك الصفحة لمعرفة إذا ما كان الإعلان قد انتهى أم لا. ثم العودة إلى هذه الصفحة، والإجابة على هذا السؤال أدناه." + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"انقر فوق هذا الخيار: تحديث عوامل تصفيتي!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"أو قم بإدخال عنوان URL:" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"أنك تستخدم نسخة قديمة من Safari. الحصول على أحدث إصدار من أجل استخدام زر شريط الأدوات \"AdBlock\" إلى وقفه AdBlock والمواقع القائمة البيضاء، وإعلان التقرير. الترقية الآن." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"عنصر المخفي" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"انقر فوق القائمة Safari → تفضيلات → ملحقات." + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"لأخفاء الزر, أذهب إلي opera://extensions و علم علي \"إخفاء من شريط الأدوات\". يمكنك إظهاره مرة اخري بأغلاء تحديد هذا الخيار." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"إيقاف منع الإعلانات:" + "typeobject_subrequest":{ + "description":"A resource type", + "message":"كائن-subrequest" + }, + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"الصفحة:" }, "buttonblockit":{ "description":"Block button", "message":"منع ذلك!" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"هل لا زال الأعلان يظهر ؟" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"السماح لقنوات يوتيوب معينة" }, - "filtereasylist_plus_bulgarian":{ + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" + }, + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"نحن لا يمكن منع الإعلانات داخل الفلاش والإضافات الأخرى حتى الآن. نحن في انتظار الدعم من المستعرض WebKit." + }, + "filterhungarian":{ "description":"language", - "message":"البلغارية" + "message":"الهنغارية" }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"عظيم! الآن دعنا نكتشف أي ملحق هو السبب. من خلال الذهاب وتمكين كل ملحق واحداً تلو الآخر. الملحق الذي يعيد مستحق هو الذي تحتاج إلى إلغاء تثبيت للتخلص من الإعلانات." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"منع هذا الإعلان" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." + }, + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"تمكين AdBlock على هذه الصفحة" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"إظهار عدد إعلانات المحظورة على زر AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"فشل!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"تحرير عوامل التصفية الخاصة بك يدوياً:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"وقفه AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"الإيطالية" + "message":"الإنجليزية" }, - "typepopup":{ - "description":"A resource type", - "message":"منبثقة" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"إضافة عناصر إلى القائمة الزر اليمين" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"نوع" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"إزالة تحذير Adblock (يزيل تحذيرات حول استخدام مانعات الاعلانات)" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"كن حذراً: إذا كنت تجعل من خطأ هنا الكثير من عوامل التصفية الأخرى، بما في ذلك عوامل التصفية الرسمية، يمكن الحصول على كسر جداً!
قراءة دروس بناء جملة عوامل التصفية لمعرفة كيفية إضافة خيارات متقدمة في عوامل التصفية القائمة السوداء و عوامل التصفية القائمة البيضاء ." + "typemain_frame":{ + "description":"A resource type", + "message":"الصفحة" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"الاشتراك في قوائم عامل التصفية" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"هل أنت متأكد من أنك تريد إزالة $count$ المنع الذي قمت بإنشائه في $host$؟", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"يمكنك تشغيل هذا مرة أخرى ودعم المواقع التي تحب عن طريق تحديد \"السماح لبعض الإعلانات غير تدخلية\" أدناه." + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"شرح: " }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"تظهر الإعلانات في هذا المتصفح أيضاً؟" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"لا تقم بتشغيل على هذه الصفحة" + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "filtereasylist_plus_lithuania":{ + "filtereasylist_plus_romanian":{ "description":"language", - "message":"الليتوانية" - }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"اسمحوا لنا أن نعرف في الموقعنا!" + "message":"الرومانية" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock متوقفة مؤقتاً." - }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"نحن لا يمكن منع الإعلانات داخل الفلاش والإضافات الأخرى حتى الآن. نحن في انتظار الدعم من المستعرض WebKit." - }, - "buttonok":{ - "description":"OK button", - "message":"موافق!" - }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"ما هو الجديد في الإصدار الأخير؟ راجع سجل التحديثات!" - }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"إذا كنت لا تريد أن تري إعلانات مثل هذه، تحتاج إلي أغلاق قائمة عوامل التصفية \"مقبولة إعلان\"." - }, - "typeother":{ - "description":"A resource type", - "message":"الأخرى" - }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"لا يوجد عامل التصفية المحدد!" - }, - "typeunknown":{ - "description":"A resource type", - "message":"غير معروف" - }, - "typemedia":{ - "description":"A resource type", - "message":"الصوت/الفيديو" - }, - "filterjapanese":{ - "description":"language", - "message":"اليابانية" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"تعديل عوامل التصفية المعطلة:" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"السماح لبعض الإعلانات الغير متطفّلة" + "subframe":{ + "description":"Resource list page: frame type", + "message":"الإطار المتوسط" }, - "buttoncancel":{ - "description":"Cancel button", - "message":"إلغاء" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"يمكنك الانزلاق أدناه لتغيير بالضبط ما هي الصفحات التي لن يتم تشغيل AdBlock." + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"تمكين منع المحتوى Safari" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"تحقق في Firefox $chrome$", + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"تثبيت Firefox $chrome$ إذا لم يكن لديك ذلك.", "placeholders":{ "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } - }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"لتقديم تقرير مختصص، يجب الاتصال بالإنترنت." - }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (مستحسن)" - }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock-الإبلاغ عن الإعلان" - }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"قوائم عوامل تصفية حظر الإعلان" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"قوائم عامل التصفية" }, - "allow_whitelisting_youtube_channels":{ + "advanced_options2":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"السماح لقنوات يوتيوب معينة" - }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"الطرف الثالث" - }, - "filterannoyances":{ - "description":"A filter list", - "message":"مضايقات Fanboy's (يزيل مضايقات على شبكة الإنترنت)" + "message":"أنا مستخدم متقدم، إظهار لي الخيارات المتقدمة" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock-اضغط للتفاصيل" + "filterchinese":{ + "description":"language", + "message":"الصينية" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"حدثت $hours$ ساعات مضت", + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"عامل التصفية غير صالحة: $exception$", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"الروسية والأوكرانية" - }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"السماح لـ AdBlock بجمع بيانات واستخدام مجهولة الهوية عن قائمة التصفية" - }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"تم إعادة تمكين الملحقات التي تم تعطيل مسبقاً." - }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"اليونانية" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"الاشتراك في قائمة عامل التصفية..." }, - "lang_slovak":{ - "description":"language", - "message":"السلوفاكية" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"افتح صفحة الملحقات لتشغيل الملحقات التي تم تعطيل مسبقاً." }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"أشرطة الفيديو وفلاش" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"قم بتعطيل هذه الإعلامات" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"ما رأيك سوف يكون صحيحاً حول هذا الإعلان في كل مرة تقوم بزيارة هذه الصفحة؟" + "filterturkish":{ + "description":"A filter list", + "message":"التركية" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"تمكين AdBlock على هذه الصفحة" + "updatedhourago":{ + "description":"Label for subscription", + "message":"تحديث منذ 1 ساعة" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"رجوع" + "typesubdocument":{ + "description":"A resource type", + "message":"الإطار" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"قوائم عامل التصفية منع معظم الإعلانات على شبكة الإنترنت. يمكنك أيضا:" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"الإندونيسية" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "typeimage":{ + "description":"A resource type", + "message":"الصورة" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ في إجمالي", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"عرض الإعلانات على صفحة ويب أو المجال" + "buttoncancel":{ + "description":"Cancel button", + "message":"إلغاء" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"يطابق العنصر 1 في هذه الصفحة." + "savereminder":{ + "description":"Reminder to press save", + "message":"لا تنسى حفظ!" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"إخفاء قسم من صفحة ويب" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"اضافة قناة $name$ لل القائمة البيضاء", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "typeselector":{ + "description":"A resource type", + "message":"محدد" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"خيارات عامة" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"لن يتم تشغيل AdBlock على أي صفحة مطابقة:" + "filtericelandic":{ + "description":"language", + "message":"أيسلندي" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"ونحن ليس لدينا قائمة عوامل تصفية افتراضي لتلك اللغة.
الرجاء محاولة العثور على قائمة مناسبة بأن يدعم هذه اللغة $link$ أو منع هذا الإعلان لنفسك في علامة التبويب 'تخصيص'.", + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"هل أنت متأكد من أنك تريد الاشتراك في قائمة تصفية $title$؟", "placeholders":{ - "link":{ - "example":"here", - "content":"" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"اشتراك" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"أنا مستخدم متقدم، إظهار لي الخيارات المتقدمة" - }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"الإسبانية" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"فقط منع الإعلانات في هذه المواقع:" }, "resourcedomain":{ "description":"Resource list page: text shown when hovering over an item in the third-party column", "message":"محملة علي الصفحة مع المجال: $domain$", "placeholders":{ "domain":{ - "example":"example.com", - "content":"$1" + "content":"$1", + "example":"example.com" } } }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"انقر فوق هذا الخيار: تحديث عوامل تصفيتي!" - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"كثيرة تصفية القوائم التي تستخدمها، تبطأ عمل AdBlock. استخدام قوائم كثيرة جداً يمكن أن تحطم حتى المتصفح في بعض المواقع. اضغط موافق الاشتراك في هذه القائمة على أي حال." - }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"الخطوة الأخيرة: ما الذي يصنع هذا إعلان؟" - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"يطابق $matchcount$ البنود المدرجة في هذه الصفحة.", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"هناك تحديث ل AdBlock! اذهب إلى $here$ لتحديث.
ملاحظة: إذا كنت ترغب في تلقي التحديثات تلقائياً، انقر فوق فقط في Safari > Preferences > Extensions > Updates
والاختيار الخيار 'تثبيت التحديثات تلقائياً'.", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"لقد حصلنا على الصفحة لمساعدتك على معرفة الناس وراء AdBlock، جيدا!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"الإندونيسية" - }, - "filterturkish":{ - "description":"A filter list", - "message":"التركية" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"منع الأعلان" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"تنظيف هذه القائمة" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"قوائم عامل التصفية مخصصة" + "spread_the_word":{ + "description":"Text of a share link", + "message":"المساعدة في نشر الكلمة!" }, - "frameurl":{ - "description":"Resource list page: full URL of the frame", - "message":"عنوان الإطار: " + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"والغرض من هذا السؤال لتحديد الذين ينبغي أن تلقي التقرير الخاص بك. إذا كان يمكنك الإجابة على هذا السؤال بشكل غير صحيح، سيتم إرسال التقرير إلى الأشخاص الخطأ، حيث أنها قد تحصل على تجاهلها." + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"إضافة عناصر إلى القائمة الزر اليمين" + "optionstitle":{ + "description":"Title for the options page", + "message":"خيارات AdBlock" }, - "typeselector":{ - "description":"A resource type", - "message":"محدد" + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"منع هذا الإعلان" + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"لا تشترك على أكثر مما تحتاج --كل واحد يبطئ قليلاً جدا! الاعتمادات و القوائم كثيرة ويمكن الاطلاع عليها هنا." }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"هل طلب فريقنا بعض معلومات التصحيح؟ انقر هنا للحصول على ذلك!" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"التحقق من وجود تحديثات (ينبغي أن يستغرق بضع ثوان فقط)..." }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"لا تقم بتشغيل AdBlock..." + "updatedrightnow":{ + "description":"Label for subscription", + "message":"تحديث الآن" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"الإبلاغ عن إعلان هو عمل تطوعي. فهو يساعد الناس الآخرين عن طريق تمكين مشرفي قائمة عامل التصفية لمنع الإعلان للجميع. إذا كنت لا تشعر بمساعدة الاخرين الآن، لا مشكلة. إغلاق هذه الصفحة و أمنع الاعلاناتلنفسك فقط." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"الزر الأيمن على الأعلانات في الصغحة لمنعها--أو منعها من هنا يدوياً." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"عنصر المخفي" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"التحقق من البرامج الضارة التي يمكن تكون عن طريق الحقن الإعلانات:" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"تحديث الصفحة." + "adblocksupport":{ + "description":"Title of the support tab", + "message":"دعم AdBlock" }, - "typepage":{ - "description":"A resource type", - "message":"الصفحة" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"نوع" }, - "filterdutch":{ - "description":"language", - "message":"الهولندية" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"حرك مربع التمرير حتى يتم حظر الإعلان بشكل صحيح على الصفحة، ومنع العناصر تبدو غير مفيدة." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"لا تنسى حفظ!" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"تحديث منذ 1 دقيقة" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"التحقق من وجود تحديثات (ينبغي أن يستغرق بضع ثوان فقط)..." + "typesub_frame":{ + "description":"A resource type", + "message":"الإطار" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"اعدادات عامة" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"الموارد الممنوعة" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"اشترك في قائمة عوامل التصفية هذه، ثم حاول مرة أخرى: $list_title$", - "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" - } - } + "filterdanish":{ + "description":"language", + "message":"الدانماركية" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"هل ينبغي علي AdBlock إعلامك عند الكشف عن البرامج الضارة؟" + "disableaa":{ + "description":"Section header on the ad report page", + "message":"تحقق من عوامل تصفية \"الإعلانات المقبولة\":" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"يمكنك تشغيل هذا مرة أخرى ودعم المواقع التي تحب عن طريق تحديد \"السماح لبعض الإعلانات غير تدخلية\" أدناه." }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"إظهار عدد إعلانات المحظورو على قائمة AdBlock" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"الموقع:" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"عوامل التصفية المخصص لي AdBlock (مستحسن)" + "fetchinglabel":{ + "description":"Status label", + "message":"جلب ... يرجا الأنتضار." }, - "filterlatvian":{ - "description":"A filter list", - "message":"اللاتفية" + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"عنوان URL غير صالح من القائمة. سوف يتم حذفه." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"تأكد من أنك تستخدم قوائم اللغة الصحيحة:" + "generaloptions":{ + "description":"Title of first tab page", + "message":"خيارات عامة" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"لمطابقة CSS" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"لأخفاء الزر, أذهب إلي opera://extensions و علم علي \"إخفاء من شريط الأدوات\". يمكنك إظهاره مرة اخري بأغلاء تحديد هذا الخيار." + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"قم بإلغاء تحديد خانة الاختيار 'تمكين' بجوار كل ملحق باستثناء ل AdBlock. تمكين ترك AdBlock." }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"غير متأكد؟ فقط اضغط على 'منع ذلك!' أدناه." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"في هذا المستعرض تحميل الصفحة مع الإعلان." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"تطابق عوامل التصفية" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"وتظهر الإعلانات في كل مكان باستثناء هذه المجالات..." }, - "fetchinglabel":{ - "description":"Status label", - "message":"جلب ... يرجا الأنتضار." + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"جميع الموارد" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock متحدث!" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"لإخفاء الزر، انقر على الزر الأيمن عليه واختر \"زر إخفاء\". يمكنك إظهار ذلك مرة أخرى في chrome://chrome/extensions." }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"لا تقم بتشغيل على الصفحات الموجودة في هذا المجال" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, "filterisraeli":{ "description":"language", "message":"العبرية" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"حرك مربع التمرير حتى يتم حظر الإعلان بشكل صحيح على الصفحة، ومنع العناصر تبدو غير مفيدة." + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"ميزات AdBlock لا تعمل على هذا الموقع لأنه يستخدم تكنولوجيا قديمة. يمكنك اضافة موارد إلي لقائمة السوداء أو البيضاء يدوياً في علامة التبويب 'تخصيص' من الصفحة خيارات." }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"منع عنوان URLs تحتوي على هذا النص" + "filterczech":{ + "description":"Language names for a filter list", + "message":"التشيكية والسلوفاكية" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"لقد عطلنا كافة الملحقات الأخرى. وسوف نقوم بإعادة تحميل الصفحة مع الإعلان. ثانية واحدة، من فضلك." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"عدد قواعد قائمة عامل التصفية يتجاوز حد 50,000، وقد خفضت تلقائياً. الرجاء إلغاء الاشتراك من بعض قوائم عوامل تصفية أو تعطيل \"حظر المحتوى سفاري\"!" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"قوائم عامل التصفية الأخرى" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"تحديث منذ 1 يوم" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"أنا سوف أجلب التحديثات تلقائياً؛ يمكنك أيضا تحديث الآن" }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"إعلانات مقبولة (مستحسن)" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"إظهار جميع الطلبات" }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"انقر فوق هذا: تعطيل إعلان المقبولة" + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "optionsversion":{ - "description":"Version number", - "message":"النسخة $version$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"كثيرة تصفية القوائم التي تستخدمها، تبطأ عمل AdBlock. استخدام قوائم كثيرة جداً يمكن أن تحطم حتى المتصفح في بعض المواقع. اضغط موافق الاشتراك في هذه القائمة على أي حال." + }, + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"عظيم! أنت جاهز." + }, + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"الإصدار التجريبي" + }, + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"تحديثات AdBlock" + }, + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"معرفة المزيد حول برنامج \"إعلانات مقبولة\"." + }, + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"هل ينبغي علي AdBlock إعلامك عند الكشف عن البرامج الضارة؟" + }, + "updateddayago":{ + "description":"Label for subscription", + "message":"تحديث منذ 1 يوم" + }, + "frameurl":{ + "description":"Resource list page: full URL of the frame", + "message":"عنوان الإطار: " + }, + "filtereasylist_plus_german":{ + "description":"language", + "message":"الألمانية" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"تحديث $seconds$ ثانية/ثواني مضت", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"حذف من القائمه" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"لا تقم بتشغيل على هذه الصفحة" }, - "typehiding":{ - "description":"A resource type", - "message":"إخفاء" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"اسمحوا لنا أن نعرف في الموقعنا!" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"قوائم عامل التصفية" + "filterrussian":{ + "description":"Language names for a filter list", + "message":"الروسية والأوكرانية" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"مجال الإطار: " + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"الإطار العلوي" + "buttonok":{ + "description":"OK button", + "message":"موافق!" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"انتهى!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"تم! لقد تم إعادة تحميل الصفحة مع الإعلان. الرجاء التحقق من تلك الصفحة لمعرفة إذا ما كان الإعلان قد انتهى أم لا. ثم العودة إلى هذه الصفحة، والإجابة على هذا السؤال أدناه." + }, + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"جميع الموارد" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"اضافة قناة $name$ لل القائمة البيضاء", + "placeholders":{ + "name":{ + "content":"$1", + "example":"Name of channel" + } + } }, "headerresource":{ "description":"Resource list page: title of a column", "message":"المورد" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"منع الأعلانات على هذه الصفحة" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"إظهار عدد إعلانات المحظورو على قائمة AdBlock" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"تأكد من قوائم عوامل التصفية الخاصة محدثة:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock-الإبلاغ عن الإعلان" }, - "lang_english":{ + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"لا تقم بتشغيل على الصفحات الموجودة في هذا المجال" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"قوائم عامل التصفية مخصصة" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"منع المزيد من الإعلانات:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"المجال أو عنوان url AdBlock حيث لا ينبغي أن تمنع أي شيء" + }, + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"أنت لم تعد مشترك في قائمة عوامل تصفية \"الإعلانات مقبولة\"." + }, + "filterannoyances":{ + "description":"A filter list", + "message":"مضايقات Fanboy's (يزيل مضايقات على شبكة الإنترنت)" + }, + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"قد حظر AdBlock تنزيل من موقع معروف باحتوائه على برامج ضارة." + }, + "savebutton":{ + "description":"Save button", + "message":"حفظ" + }, + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"غير متأكد؟ فقط اضغط على 'منع ذلك!' أدناه." + }, + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "buttonlooksgood":{ + "description":"Looks good button", + "message":"يبدو جيد" + }, + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" + }, + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"السماح لـ AdBlock بجمع بيانات واستخدام مجهولة الهوية عن قائمة التصفية" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"لتقديم تقرير مختصص، يجب الاتصال بالإنترنت." + }, + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"قوائم عوامل تصفية حظر الإعلان" + }, + "updateddaysago":{ + "description":"Label for subscription", + "message":"حدثت $days$ أيام مضت", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } + }, + "typeobject":{ + "description":"A resource type", + "message":"كائن تفاعلي" + }, + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"ما رأيك سوف يكون صحيحاً حول هذا الإعلان في كل مرة تقوم بزيارة هذه الصفحة؟" + }, + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"الإعلانات المحظورة:" + }, + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" + }, + "filtereasylist_plus_arabic":{ "description":"language", - "message":"الإنجليزية" + "message":"العربيّة" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"افتح صفحة الملحقات لتشغيل الملحقات التي تم تعطيل مسبقاً." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"التراجع عن المنع الذي وضعته في هذا المجال" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"المجال للصفحة تطبيق على" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"تحرير عوامل التصفية الخاصة بك يدوياً:" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"الصفحة:" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"الخطوة 1: معرفة ما يجب منع" }, - "foundbug":{ + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"الرجاء كتابة عامل التصفية الصحيح أدناه واضغط موافق" + }, + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"الائتمان للترجمة يذهب إلى:" + }, + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock متحدث!" + }, + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"الإنجليزية فقط" + }, + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"أو، فقط انقر فوق هذا الزر لتمكيننا من القيام بكل ما ورد أعلاه: تعطيل كافة ملحقات أخرى" + }, + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"ما هو الجديد في الإصدار الأخير؟ راجع سجل التحديثات!" + }, + "filterantisocial":{ + "description":"A filter list", + "message":"قائمة عوامل ااتصفية المعادية للمجتمع (يزيل أزرار الوسائط الاجتماعية)" + }, + "filtermalware":{ + "description":"A filter list", + "message":"الحماية من البرامج الضارة" + }, + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"لن يتم تشغيل AdBlock على أي صفحة مطابقة:" + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"يمكنك تجاوز كمية التخزين يمكن استخدام AdBlock. يرجى إلغاء الاشتراك من قوائم عوامل تصفية بعض!" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"العثور على خطأ؟" + "message":"تريد أن ترى ما الذي يجعل AdBlock جميل؟" + }, + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." + }, + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"إخفاء قسم من صفحة ويب" + }, + "tabgeneral":{ + "description":"A tab on the options page", + "message":"اعدادات عامة" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"أو AdBlock لكروم" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"أشرطة الفيديو وفلاش" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"عظيم! الآن دعنا نكتشف أي ملحق هو السبب. من خلال الذهاب وتمكين كل ملحق واحداً تلو الآخر. الملحق الذي يعيد مستحق هو الذي تحتاج إلى إلغاء تثبيت للتخلص من الإعلانات." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"العربيّة" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"أو الكروم" }, - "lang_czech":{ - "description":"language", - "message":"التشيكية" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"تنسيق: ~موقع1.com|~موقع2.com|~اخبار.موقع3.org" }, "pwyw":{ "description":"Text of a payment request link", "message":"ادفع ما تريد!" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"تريد أن ترى ما الذي يجعل AdBlock جميل؟" - }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"عنوان URL غير صالح من القائمة. سوف يتم حذفه." - }, - "typesub_frame":{ - "description":"A resource type", - "message":"الإطار" - }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"تعديل" - }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"عندك سؤال أو فكرة جديدة؟" - }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"أو، فقط انقر فوق هذا الزر لتمكيننا من القيام بكل ما ورد أعلاه: تعطيل كافة ملحقات أخرى" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"هذه مشكلة قائمة عامل التصفية. تقرير من هنا: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"معرفة المزيد حول البرامج الضارة" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"ملاحظة: التقرير الخاص بك قد تصبح متاحة للجمهور. أن تبقيه في الاعتبار قبل ضم أي شيء خاص." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"إعادة تحميل الصفحة مع الإعلان." + "filteritalian":{ + "description":"language", + "message":"الإيطالية" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"تثبيت Firefox $chrome$ إذا لم يكن لديك ذلك.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"تحديثات AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"هل لا زال الأعلان يظهر ؟" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"إزالة تحذير Adblock (يزيل تحذيرات حول استخدام مانعات الاعلانات)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"تأكد من أنك تستخدم قوائم اللغة الصحيحة:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"قوائم عامل التصفية الأخرى" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"تأكد من قوائم عوامل التصفية الخاصة محدثة:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"الفرنسية" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"حدث خطأ أثناء التحقق من وجود تحديثات." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"عنصر المحظورة:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"انقر فوق القائمة Safari → تفضيلات → ملحقات." }, - "typeobject":{ - "description":"A resource type", - "message":"كائن تفاعلي" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"تأكيد" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"تحديث الآن" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"حدثت $days$ أيام مضت", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"الغاء الاشتراك." + }, + "typemedia":{ "description":"A resource type", - "message":"الإطار" + "message":"الصوت/الفيديو" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (حماية الخصوصية)" - }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"تقرير مخصص في هذه الصفحة" + "message":"اللاتفية" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"تنظيف هذه القائمة" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"منع الأعلانات على هذه الصفحة" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"الألمانية" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"إيقاف منع الإعلانات:" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"كن حذراً: عامل التصفية هذا بحظر جميع عناصر $elementtype$ على الصفحة!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"يطابق $matchcount$ البنود المدرجة في هذه الصفحة.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"هنا" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"ما هي لغة المكتوبة في تلك الصفحة؟" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"فشل في إحضار عامل التصفية !" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"هل أنت متأكد من أنك تريد إزالة $count$ المنع الذي قمت بإنشائه في $host$؟", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"يمكنك الانزلاق أدناه لتغيير بالضبط ما هي الصفحات التي لن يتم تشغيل AdBlock." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"الصورة" + "message":"إخفاء" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"لإخفاء الزر، انقر على الزر الأيمن عليه واختر \"زر إخفاء\". يمكنك إظهار ذلك مرة أخرى في chrome://chrome/extensions." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"تظهر الإعلانات في أو قبل فيلم أو أي البرنامج المساعد الأخرى مثل لعبة فلاش؟" }, - "filtereasylist_plus_romanian":{ + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"حدث خطأ ما. ولم يتم إرسال أي موارد. سيتم الآن إغلاق هذه الصفحة. حاول إعادة تحميل الموقع." + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"الرومانية" + "message":"الإسبانية" }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"حدث خطأ أثناء التحقق من وجود تحديثات." + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"كن حذراً: عامل التصفية هذا بحظر جميع عناصر $elementtype$ على الصفحة!", + "placeholders":{ + "elementtype":{ + "content":"$1", + "example":"DIV" + } + } }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"لقد عطلنا كافة الملحقات الأخرى. وسوف نقوم بإعادة تحميل الصفحة مع الإعلان. ثانية واحدة، من فضلك." + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"تمكين وضع التوفق مع ClickToFlash" }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"موارد اللائحة البيضاء" + "no":{ + "description":"A negative response to a question", + "message":"لا" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"عامل التصفية، التي يمكن أن تتغير في صفحة خيارات:" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", - "placeholders":{ - "here":{ - "content":"", - "example":"here" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"إخفاء هذا الزر" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"التشيكية والسلوفاكية" + "other":{ + "description":"Multiple choice option", + "message":"الأخرى" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"نوع الإطار: " + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"حسنا، يمكنك لا يزال حظر هذا الإعلان لنفسك في صفحة خيارات. شكرا!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" --حدد اللغة -- " + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"تعطيل كافة ملحقات باستثناء AdBlock:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"ثبت Adblock Plus لي Firefox $chrome$ اذا لم يكون لديك.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "lang_russian":{ + "description":"language", + "message":"الروسية" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"الموارد الممنوعة" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"أنك تستخدم نسخة قديمة من Safari. الحصول على أحدث إصدار من أجل استخدام زر شريط الأدوات \"AdBlock\" إلى وقفه AdBlock والمواقع القائمة البيضاء، وإعلان التقرير. الترقية الآن." }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"تظهر الإعلانات في أو قبل فيلم أو أي البرنامج المساعد الأخرى مثل لعبة فلاش؟" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (حماية الخصوصية)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$وسوف يكون $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"عامل التصفية، التي يمكن أن تتغير في صفحة خيارات:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"أو قم بإدخال عنوان URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"عامل التصفية التالية:
$filter$
يحتوي علي خطأ:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"نوع الإطار: " }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"إغلاق" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"تحميل..." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"فقط منع الإعلانات في هذه المواقع:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"هل طلب فريقنا بعض معلومات التصحيح؟ انقر هنا للحصول على ذلك!" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"يمكنك تجاوز كمية التخزين يمكن استخدام AdBlock. يرجى إلغاء الاشتراك من قوائم عوامل تصفية بعض!" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"عامل التصفية غير صالحة: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"عدد قواعد قائمة عامل التصفية يتجاوز حد 50,000، وقد خفضت تلقائياً. الرجاء إلغاء الاشتراك من بعض قوائم عوامل تصفية أو تعطيل \"حظر المحتوى سفاري\"!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"حسنا، يمكنك لا يزال حظر هذا الإعلان لنفسك في صفحة خيارات. شكرا!" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"تقرير مخصص في هذه الصفحة" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"إظهار بيانات التصحيح في \"سجل وحدة التحكم\" (الذي يبطئ AdBlock)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"مجال الإطار: " }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"تأكيد" + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"الأضافة الأكثر شعبية في Chrome، مع ما يزيد على 40 مليون مستخدم! تمنع الأعلانات في جميع أنحاء شبكة الإنترنت." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"العثور على خطأ؟" }, - "filtereasylist_plus_finnish":{ + "lang_czech":{ "description":"language", - "message":"الفنلندية" + "message":"التشيكية" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"هذه مشكلة قائمة عامل التصفية. تقرير من هنا: $link$", - "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" - } - } + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"إعادة تحميل الصفحة مع الإعلان." }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"قم بإلغاء تحديد خانة الاختيار 'تمكين' بجوار كل ملحق باستثناء ل AdBlock. تمكين ترك AdBlock." + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, "showlinkstolists2":{ "description":"Option on the 'Filter lists' tab of the Options page", "message":"إظهار الرابط لقوائم عوامل التصفية" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"الإنجليزية فقط" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"السماح لبعض الإعلانات الغير متطفّلة" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"المساعدة في نشر الكلمة!" + "filterswedish":{ + "description":"A filter list", + "message":"السويدية" }, - "malwarenotificationmessage":{ - "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"قد حظر AdBlock تنزيل من موقع معروف باحتوائه على برامج ضارة." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"حذف من القائمه" }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"شرح: " + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"تمكين وضع التوفق مع ClickToFlash" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" --حدد اللغة -- " + }, + "filtereasylist_plus_french":{ + "description":"language", + "message":"الفرنسية" + }, + "buttonedit":{ + "description":"Edit filter manually button", + "message":"تعديل" }, "tabsupport":{ "description":"A tab on the options page", "message":"الدعم" }, + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"منع اعلان بواسطة عنوان URL الخاص به" + }, + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"النسخة $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } + }, + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"والغرض من هذا السؤال لتحديد الذين ينبغي أن تلقي التقرير الخاص بك. إذا كان يمكنك الإجابة على هذا السؤال بشكل غير صحيح، سيتم إرسال التقرير إلى الأشخاص الخطأ، حيث أنها قد تحصل على تجاهلها." + }, + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"الإبلاغ عن إعلان هو عمل تطوعي. فهو يساعد الناس الآخرين عن طريق تمكين مشرفي قائمة عامل التصفية لمنع الإعلان للجميع. إذا كنت لا تشعر بمساعدة الاخرين الآن، لا مشكلة. إغلاق هذه الصفحة و أمنع الاعلاناتلنفسك فقط." + }, + "yes":{ + "description":"A positive response to a question", + "message":"نعم" + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"شفرة المصدر متاحة بحرية!" + }, + "filterdutch":{ + "description":"language", + "message":"الهولندية" + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"يطابق العنصر 1 في هذه الصفحة." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"حدثت $hours$ ساعات مضت", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"رجوع" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"انقر فوق هذا: تعطيل إعلان المقبولة" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"المجال للصفحة تطبيق على" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"حدثت $minutes$ دقائق مضت", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"معرفة المزيد حول البرامج الضارة" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"إعلانات مقبولة (مستحسن)" + }, "safaricontentblockingpausemessage":{ "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", "message":"لإيقاف AdBlock مع \"حظر المحتوى\" تمكين، الرجاء تحديد سفاري (في شريط القوائم) > تفضيلات > ملحقات > AdBlock، وقم بإلغاء تحديد 'تمكين AdBlock'." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock-اضغط للتفاصيل" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"يبدو جيد" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"تحذير: لا يوجد عامل التصفية محدد!" } } \ No newline at end of file diff --git a/_locales/bg/messages.json b/_locales/bg/messages.json index 827bf1c6..c4259c84 100644 --- a/_locales/bg/messages.json +++ b/_locales/bg/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Прикачи снимка на екрана:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Няма намерен злонамерен софтуер." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Абонирайте се за същите филтри и в този браузър." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Имате въпрос или идея?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Заредете страницата с рекламата в браузъра." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Настройки" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"шведски" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Да блокирате още реклами:" - }, - "lang_russian":{ - "description":"language", - "message":"руски" + "message":"Разреши EasyList (препоръчително)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Без абонамент." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ — в страницата", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"китайски" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"В случай на създаден от вас филтър чрез съветника за блокиране на реклама, моля, поставете го в полето по-долу:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Разреши противосоциалния филтър (чисти бутоните на социални мрежи)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Открихте реклама в страницата? Нека ви помогнем да я докладвате на правилното място!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Показвай броя на блокираните реклами върху бутона на AdBlock" + "message":"полски" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Изходният код е свободно достъпен!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"Съвпадащ каскаден лист със стилове [CSS]:" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"обновен преди 1 минута" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Изключи" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Провалено извличане на филтъра!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Не желая такава проверка" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Моля, пуснете повторно Safari, за да завърши изключването на блокирането на съдържание." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Блокиране на реклама по адрес" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Скрий бутона" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Внимание: ако допуснете грешка много от останалите филтри, в т.ч. официалните, могат също да спрат да работят!
Прочетете ръководството Синтаксис на филтрите за разширено добавяне на позволяващи и изключващи филтри." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Обновяванията се извличат автоматично, но бихте могли да ги обновите и сега" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Продължавате ли да я виждате в браузъра?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Формат: ~сайт1.бг|~сайт2.бг|~новини.сайт3.бг" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Ако не желаете да виждате реклами като тази, вероятно ще оставите филтър Приемливи реклами изключен." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"естонски" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Вид" + "message":"литовски" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Има обновяване за AdBlock! Щракнете $here$ за обновяване.
Забележка: в случай че желаете това да става автоматично, изберете Safari > Настройки > Разширения > Обновявания
и отметнете „Инсталирай автоматично обновяванията“.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Абонирайте се за филтри, след което опитайте отново: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Какво е това?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Не се абонирайте за повече, отколкото са ви необходими — всеки нов ще ви забавя малко повече! Признания и допълнителни филтри можете да намерите тук." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Функцията на AdBlock няма да работи тук, защото сайтът ползва остаряла технология. Можете да забраните или да изключите ресурсите наръка от преградка „Нагласяване“ в страницата с настройки." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"полски" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Повече за програмата Приемливи реклами" + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"обновен преди $seconds$ секунди", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Компютърът може да e заразен със злонамерен софтуер. Щракнете за повече информация." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"заявка object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Показване на реклами в страница или домейн" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"унгарски" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Забележка: достъпът до доклада може да бъде публичен. Имайте го предвид, ако включвате лични данни." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Моля, забранете някои от филтрите. За повече вж. Настройки на AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"словашки" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Филтърът е част от:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Инсталирайте Adblock Plus за Firefox$chrome$, ако го нямате.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"За съжаление, AdBlock е забранен за страницата в някой от вашите филтри." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Недействителен филтър: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Не разполагаме с филтър по подразбиране за езика.
Моля, опитайте да намерите подходящия за езика $link$, или блокирайте рекламата самостоятелно от преградка „Нагласяване“.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Внимание: няма указан филтър!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock е забранен за страницата." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Щракнете по реклама, за да изминете пътя до нейното блокиране." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Показване на реклами навсякъде без домейна" + "topframe":{ + "description":"Resource list page: frame type", + "message":"горна рамка" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Настройки" + "typestylesheet":{ + "description":"A resource type", + "message":"определение за стил" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"заявка xmlhttprequest" + "message":"неизвестно" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"За съжаление, AdBlock е забранен за страницата в някой от вашите филтри." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Блокирани реклами:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Добави филтри за друг език: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Трета страна" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Щракнете по реклама, за да изминете пътя до нейното блокиране." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Няма указан филтър!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"гръцки" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Ако видите реклама, попълнете доклад за реклама, а не доклад за грешка!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Ползвате стара версия на AdBlock. Моля, отворете страницата за разширения, разрешете „Режим за програмисти“ и натиснете „Актуализирайте разширенията сега“." }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Чудесно! Всичко е настроено." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Вашето име?" }, - "other":{ - "description":"Multiple choice option", - "message":"друг" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Ползвай заобиколен начин за нетръгващи клипове от Hulu.com (след повторен пуск на браузъра)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Поддръжка" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Внимание: няма указан филтър!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Нагласяване" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Открихте реклама в страницата? Нека ви помогнем да я докладвате на правилното място!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"естонски" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Нагласяване на AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Важни сведения липсват или са непълни. Моля, отговорете на въпросите, оградени в червено." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"български" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Грешка при записване на качения файл." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"изключен ресурс" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Моля, въведете правилния филтър по-долу и натиснете ДА:" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Надхвърлена квота към блокиране на съдържание" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Първа стъпка: решете какво блокирате" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"датски" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Изключване на AdBlock…" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ — в страницата", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Блокиране на адреси, съдържащи текста:" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Затвори" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Проверете с Firefox$chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"подрамка" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Последна стъпка: кое превръща елемента в реклама?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"обновен преди 1 час" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Ако видите реклама, попълнете доклад за реклама, а не доклад за грешка!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"корейски" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":" или Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Вашето име?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Най-популярното разширение за Chrome с над 40 милиона потребители! Блокира реклами в световната мрежа." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Ползвате стара версия на Safari. Осигурете си най-новата, за да използвате бутона на AdBlock в лентата на браузъра за задържане на AdBlock, за изключване на сайт от филтриране и за докладване на реклама. Обнови браузъра." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Покажи заявките" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"фински" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Не желая такава проверка" + "typescript":{ + "description":"A resource type", + "message":"скрипт" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"украински" }, - "yes":{ - "description":"A positive response to a question", - "message":"Да" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Няма намерен злонамерен софтуер." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Отмени блокираните за домейна" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Моля, забранете някои от филтрите. За повече вж. Настройки на AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Нагласяване" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Абонаментът за Приемливи реклами е прекратен, защото включихте блокиране на съдържание в Safari. По едно и също време можете да разрешите или едното, или другото. (Защо?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Задръж AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"А на тази страница ще откриете хората, които стоят зад AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Сигурен ли сте, че се абонирате за филтъра „$title$“?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"тук" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Къде точно е рекламата в страницата? И как изглежда?" + "typepopup":{ + "description":"A resource type", + "message":"изскачащ обект" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"заявка xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"или AdBlock за Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Презареди страницата" }, - "typestylesheet":{ - "description":"A resource type", - "message":"определение за стил" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Какъв е езикът на страницата?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"Задържан AdBlock." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"(бета)" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Надхвърлена квота към блокиране на съдържание" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Освободи AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Намиране на реклами…

Това ще отнеме известно време." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock е забранен за страницата." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Домейн или адрес, за които AdBlock не блокира нищо:" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Абонирайте се за същите филтри и в този браузър." }, - "typescript":{ - "description":"A resource type", - "message":"скрипт" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Блокиране на реклама" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ — общо", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Внимание: във всички други сайтове ще виждате реклами!
Настройката заобикаля всички останали филтри за сайтовете." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Има обновяване за AdBlock! Щракнете $here$ за обновяване.
Забележка: в случай че желаете това да става автоматично, изберете Safari > Настройки > Разширения > Обновявания
и отметнете „Инсталирай автоматично обновяванията“.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Готово! Ще се свържем с вас скоро, най-вероятно до ден или два, ако следват почивни. Проверете междувременно за писмо от AdBlock с препратка към вашия билет в помощния сайт, за да следите случая през е-поща, ако така предпочитате!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Готово!" }, - "no":{ - "description":"A negative response to a question", - "message":"Не" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Разреши фабричния филтър на AdBlock (препоръчително)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Нещо се обърка. Не са изпращани никакви ресурси. Сега страницата ще се затвори. Опитайте да презаредите сайта." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Вид" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Какво е това?" + }, + "filterjapanese":{ "description":"language", - "message":"украински" + "message":"японски" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"обновен преди $minutes$ минути", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Филтърът е част от:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Абонаментът за Приемливи реклами е прекратен, защото включихте блокиране на съдържание в Safari. По едно и също време можете да разрешите или едното, или другото. (Защо?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Абонаментът ви за Приемливи реклами е прекратен." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Разреши защитата от злонамерен софтуер" - }, - "savebutton":{ - "description":"Save button", - "message":"Запиши" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Внимание: във всички други сайтове ще виждате реклами!
Настройката заобикаля всички останали филтри за сайтовете." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Забрани уведомяването" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", + "filterstabtitle":{ + "description":"Title of the filter list tab", "message":"Абониране за филтри" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Ползвате стара версия на AdBlock. Моля, отворете страницата за разширения, разрешете „Режим за програмисти“ и натиснете „Актуализирайте разширенията сега“." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Вид на рамката: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Настройки на AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Добави филтри за друг език: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Съвпадащ филтър" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Проверете за злонамерен софтуер, инжектиращ реклами:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Филтрите блокират повечето реклами в мрежата. Можете също така:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Показвай предпроверочните декларации в дневника на Конзола (води до забавяне на AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"За да го скриете, щракнете с десен бутон по лентата на Safari, изберете „Нагласи лентата“ и го изхвърлете с влачене от нея. Можете да го покажете повторно с влачене към лентата." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Надхвърляте ограничението за размер на файла в Dropbox. Моля, премахнете някои записи от потребителските или от изключващите филтри и опитайте отново." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Освободи AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Ползвай заобиколен начин за нетръгващи клипове от Hulu.com (след повторен пуск на браузъра)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Изключи" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Забранете другите разширения без AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Превод на български език:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"ЗАРЕЖДАНЕ…" - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Щракнете с десен по реклама в страницата, за да я блокирате или я блокирайте тук наръка." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Абонирай" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Забележка: позволяването на изключения в страница или сайт (за реклами) не се поддържа при разрешено блокиране на съдържание вSafari." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Ще я използваме, само ако трябва да се свържем с вас за повече информация." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Да редактирате забранените филтри:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Блокиран елемент:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"страница" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Разреши блокиране на съдържание в Safari" + "typeother":{ + "description":"A resource type", + "message":"друг обект" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Вашата е-поща?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Щракнете по: Обнови филтрите!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"За да го скриете, щракнете с десен бутон по лентата на Safari, изберете „Нагласи лентата“ и го изхвърлете с влачене от нея. Можете да го покажете повторно с влачене към лентата." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Възникна грешка при обработване на вашата заявка." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"скрит елемент" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"За да го скриете, отворете opera://extensions и отметнете „Скрий от лентата“. Можете да го покажете повторно като я снемете." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"страница" + "message":"заявка object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Страница:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Готово! Страницата с рекламата е презаредена. Моля, прегледайте я дали е изчезнала. После се върнете тук и отговорете на въпроса по-долу." + "buttonblockit":{ + "description":"Block button", + "message":"Блокирай!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Добави от адрес:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Позволи изключения за определени канали в YouTube" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Ползвате стара версия на Safari. Осигурете си най-новата, за да използвате бутона на AdBlock в лентата на браузъра за задържане на AdBlock, за изключване на сайт от филтриране и за докладване на реклама. Обнови браузъра." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Натиснете Safari → Настройки → Разширения." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Да спрете блокирането на реклами:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Все още не блокираме реклами, съдържащи се във флаш или в други плъгини. Чакаме такава поддръжка да се появи в браузъра и в WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Блокирай!" + "filterhungarian":{ + "description":"language", + "message":"унгарски" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Продължавате ли да я виждате?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Блокирай рекламата" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"български" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Чудесно! А сега нека определим разширението, което я допуска. Проверете всяко, разрешавайки само по едно от тях. Това, което я върне, е това, което трябва да бъде премахнато, за да се отървете от рекламите." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Разреши AdBlock за страницата" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Показвай броя на блокираните реклами върху бутона на AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Провалено!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Да редактирате филтрите наръка:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Задръж AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"италиански" + "message":"английски" }, - "typepopup":{ - "description":"A resource type", - "message":"изскачащ обект" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Добави елементи към контекстното меню (щракване с десен бутон)" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Вид" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Моля, преминете в нашия сайт за поддръжка." }, - "lang_slovak":{ - "description":"language", - "message":"словашки" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Разреши противоадблоковия филтър (чисти предупрежденията за блокери на реклами)" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Абониране за филтри" + "typemain_frame":{ + "description":"A resource type", + "message":"страница" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Можете да го включите в подкрепа на любимите си сайтовете пак, като по-долу изберете „Позволи определени ненатрапчиви реклами“." + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Сигурен ли сте, че премахвате $count$ от блокираните елементи за $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Продължавате ли да я виждате в браузъра?" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Легенда: " }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Не изпълнявай за страницата" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "filtereasylist_plus_lithuania":{ + "updatedminutesago":{ + "description":"Label for subscription", + "message":"обновен преди $minutes$ минути", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Прикачи снимка на екрана:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"литовски" + "message":"румънски" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Споделете ги в нашия сайт за поддръжка!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Да редактирате забранените филтри:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"Задържан AdBlock." + "subframe":{ + "description":"Resource list page: frame type", + "message":"подрамка" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Все още не блокираме реклами, съдържащи се във флаш или в други плъгини. Чакаме такава поддръжка да се появи в браузъра и в WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Презаредете страницата с рекламата." }, - "buttonok":{ - "description":"OK button", - "message":"ДА!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Разреши блокиране на съдържание в Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Инсталирайте Firefox$chrome$, ако го нямате.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Общи" + "message":"Филтри" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Ако не желаете да виждате реклами като тази, вероятно ще оставите филтър Приемливи реклами изключен." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"В случай на създаден от вас филтър чрез съветника за блокиране на реклама, моля, поставете го в полето по-долу:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Компютърът може да e заразен със злонамерен софтуер. Щракнете за повече информация." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Твърде голям файл. Моля, уверете се, че вашият файл е под 10 МБ." }, - "typeother":{ - "description":"A resource type", - "message":"друг обект" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock няма да се изпълнява в страници, съвпадащи с:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Няма указан филтър!" + "filterchinese":{ + "description":"language", + "message":"китайски" }, - "typeunknown":{ - "description":"A resource type", - "message":"неизвестно" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Недействителен филтър: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Абониране за филтри" + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Отворете страницата за разширения и разрешете забранените досега разширения." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Забрани уведомяването" + }, + "filterturkish":{ + "description":"A filter list", + "message":"турски" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Не се абонирайте за повече, отколкото са ви необходими — всеки нов ще ви забавя малко повече! Признания и допълнителни филтри можете да намерите тук." + }, + "typesubdocument":{ "description":"A resource type", - "message":"звук/видео" + "message":"рамка" }, - "filterjapanese":{ - "description":"language", - "message":"японски" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"индонезийски" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Позволи определени ненатрапчиви реклами" + "typeimage":{ + "description":"A resource type", + "message":"картина" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ — общо", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Отказ" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Движете плъзгача до включване на страниците, за които AdBlock няма да се изпълнява." + "savereminder":{ + "description":"Reminder to press save", + "message":"Не забравяйте да запишете!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"селектор" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Блокирането на съдържание в Safari изключи, защото избрахте ненатрапчиви реклами. По едно и също време можете да разрешите или едното, или другото. (Защо?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Последна стъпка: докладвайте я на нас." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Проверете с Firefox$chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"исландски" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Докладването на реклама изисква да сте свързан с интернет." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Блокиращи филтри" }, - "filtereasylist":{ - "description":"A filter list", - "message":"Разреши EasyList (препоръчително)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Блокиране на реклами само за сайтовете:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Зареден от домейн:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"Докладване на реклама пред AdBlock" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Забранените досега разширения са повторно разрешени." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Блокиращи филтри" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Как става?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Оптимизирай филтрите" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Позволи изключения за определени канали в YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Нека и другите чуят!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Трета страна" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Разреши Fanboy Annoyances (премахва досадните неща)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"Натиснете бутона на AdBlock за подробности" + "optionstitle":{ + "description":"Title for the options page", + "message":"Настройки на AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Възникна грешка при обработване на вашата заявка." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"обновен преди $hours$ часа", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"обновен преди 1 час" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"руски и украински" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Проверка за обновяване (ще отнеме само няколко секунди)… " }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Какво е новото в изданието — вижте списъка с изменения!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"обновен току-що" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Забранените досега разширения са повторно разрешени." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Щракнете с десен по реклама в страницата, за да я блокирате или я блокирайте тук наръка." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"гръцки" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Проверете за злонамерен софтуер, инжектиращ реклами:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Скриване на раздел в страница" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Поддръжка" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Клипове и флаш" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Вид" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Смятате ли, че всеки път когато посещавате страницата, следното ще бъде вярно за рекламата?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Движете плъзгача до пълно блокиране на рекламата в страницата и добра ползваемост на блокирания елемент." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Разреши AdBlock за страницата" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"обновен преди 1 минута" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Назад" + "typesub_frame":{ + "description":"A resource type", + "message":"рамка" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Филтрите блокират повечето реклами в мрежата. Можете също така:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"блокиран ресурс" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Следните сведения ще бъдат включени към доклада за реклама." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"датски" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Да проверите филтъра Приемливи реклами:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Показване на реклами в страница или домейн" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Можете да го включите в подкрепа на любимите си сайтовете пак, като по-долу изберете „Позволи определени ненатрапчиви реклами“." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Извличане… моля, изчакайте." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Недействителен адрес на филтъра. Той ще бъде изтрит." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Общи настройки" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Снемете отметките пред разширенията без тази пред AdBlock. Оставете AdBlock разрешено." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Заредете страницата с рекламата в браузъра." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Показване на реклами навсякъде без домейна" + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Забравихте да прикачите снимка на екрана! Няма да сме в състояние да ви помогнем, без да видим докладваната реклама." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Съвпада с 1 елемент в страницата." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"И там наръка създайте билет, като копирате сведенията и ги поставите в полето под „Fill in any details you think will help us understand your issue“." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Внимание: ако допуснете грешка много от останалите филтри, в т.ч. официалните, могат също да спрат да работят!
Прочетете ръководството Синтаксис на филтрите за разширено добавяне на позволяващи и изключващи филтри." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Изключи канал $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"За да го скриете, щракнете с десен бутон по него и посочете „Скрий бутона“. Можете да го покажете от chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Общи настройки" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock няма да се изпълнява в страници, съвпадащи с:" + "filterisraeli":{ + "description":"language", + "message":"еврейски" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Не разполагаме с филтър по подразбиране за езика.
Моля, опитайте да намерите подходящия за езика $link$, или блокирайте рекламата самостоятелно от преградка „Нагласяване“.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Функцията на AdBlock няма да работи тук, защото сайтът ползва остаряла технология. Можете да забраните или да изключите ресурсите наръка от преградка „Нагласяване“ в страницата с настройки." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Абонирай" + "filterczech":{ + "description":"Language names for a filter list", + "message":"чешки и словашки" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Показвай разширените настройки (аз съм опитен потребител)" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Всички други разширения са забранени. Предстои презареждане на страницата с рекламата. Само секунда, моля." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"испански" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Други филтри" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Зареден от домейн:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Обновяванията се извличат автоматично, но бихте могли да ги обновите и сега" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Щракнете по: Обнови филтрите!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Покажи заявките" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Колкото повече филтри ползвате, толкова по-бавно ще работи AdBlock. Ползването на твърде много може да предизвика забиване на браузъра в определени сайтове. Натиснете ДА за абониране въпреки всичко." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Последна стъпка: кое превръща елемента в реклама?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Чудесно! Всичко е настроено." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Съвпада с $matchcount$ елемента в страницата.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"(бета)" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"А на тази страница ще откриете хората, които стоят зад AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Отворете страницата за разширения." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"индонезийски" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Готово! Ще се свържем с вас скоро, най-вероятно до ден или два, ако следват почивни. Проверете междувременно за писмо от AdBlock с препратка към вашия билет в помощния сайт, за да следите случая през е-поща, ако така предпочитате!" }, - "filterturkish":{ - "description":"A filter list", - "message":"турски" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Повече за програмата Приемливи реклами" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Блокиране на реклама" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Уведомявай за установен от AdBlock злонамерен софтуер" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Потребителски филтри" + "updateddayago":{ + "description":"Label for subscription", + "message":"обновен преди 1 ден" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"Адрес на рамката: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Въпросът определя кой трябва да получи вашия доклад. Ако отговорите неправилно, докладът ви ще получат неподходящите хора и може да не бъде взет под внимание." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Добави елементи към контекстното меню (щракване с десен бутон)" - }, - "typeselector":{ - "description":"A resource type", - "message":"селектор" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Блокирай рекламата" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Изискват се предпроверочни данни? Щракнете тук, за да ги предадете!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"немски" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Изключване на AdBlock…" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Докладването е доброволно. Така помагате и на другите, защото позволявате доброволецът, поддържащ конкретния филтър, да я блокира за всички. Но ако не сте настроен алтруистично, всичко е наред. Затворете тази страница и блокирайте рекламата само за себе си." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Твърде дълго име на файл. Моля, дайте по-късо име на вашия файл." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"скрит елемент" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"обновен преди $seconds$ секунди", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Презареди страницата" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Не изпълнявай за страницата" }, - "typepage":{ - "description":"A resource type", - "message":"страница" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Споделете ги в нашия сайт за поддръжка!" }, - "filterdutch":{ - "description":"language", - "message":"холандски" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Твърде дълго име на файл. Моля, дайте по-късо име на вашия файл." + "buttonok":{ + "description":"OK button", + "message":"ДА!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Не забравяйте да запишете!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Готово! Страницата с рекламата е презаредена. Моля, прегледайте я дали е изчезнала. После се върнете тук и отговорете на въпроса по-долу." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Проверка за обновяване (ще отнеме само няколко секунди)… " + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Всички ресурси" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Абонирайте се за филтри, след което опитайте отново: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Изключи канал $name$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Уведомявай за установен от AdBlock злонамерен софтуер" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Ресурс" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Показвай броя на блокираните реклами в менюто на AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Сайт:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"Докладване на реклама пред AdBlock" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Разреши фабричния филтър на AdBlock (препоръчително)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Как става?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Не изпълнявай за домейна" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Потребителски филтри" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Да блокирате още реклами:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Важни сведения липсват или са непълни. Моля, отговорете на въпросите, оградени в червено." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Домейн или адрес, за които AdBlock не блокира нищо:" }, - "filterlatvian":{ - "description":"A filter list", - "message":"латвийски" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Абонаментът ви за Приемливи реклами е прекратен." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Уверете се, че ползвате правилния филтър за езика:" + "filterannoyances":{ + "description":"A filter list", + "message":"Разреши Fanboy Annoyances (премахва досадните неща)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"Съвпадащ каскаден лист със стилове [CSS]:" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock блокира изтегляне от сайт, за който се знае, че хоства злонамерен софтуер." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"За да го скриете, отворете opera://extensions и отметнете „Скрий от лентата“. Можете да го покажете повторно като я снемете." + "savebutton":{ + "description":"Save button", + "message":"Запиши" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Не сте сигурен? — натиснете „Блокирай!“ по-долу." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Съвпадащ филтър" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Извличане… моля, изчакайте." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Всички ресурси" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Последна стъпка: докладвайте я на нас." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock e обновен!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Не изпълнявай за домейна" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Къде точно е рекламата в страницата? И как изглежда?" }, - "filterisraeli":{ - "description":"language", - "message":"еврейски" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Става" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Движете плъзгача до пълно блокиране на рекламата в страницата и добра ползваемост на блокирания елемент." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Блокиране на адреси, съдържащи текста:" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Позволи анонимно събиране на данни за ползваните филтри в AdBlock" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Докладването на реклама изисква да сте свързан с интернет." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Надхвърляте ограничението от 50 000 правила и броят им автоматично беше намален. Моля, прекратете абонамента си за някои от филтрите или забранете блокиране на съдържание в Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Сигурен ли сте, че се абонирате за филтъра „$title$“?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"обновен преди 1 ден" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Разреши Приемливи реклами (препоръчително)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Щракнете по: Забрани Приемливи реклами" - }, - "optionsversion":{ - "description":"Version number", - "message":"Версия $version$", + "message":"обновен преди $days$ дни", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Премахни филтъра" + "typeobject":{ + "description":"A resource type", + "message":"интерактивен обект" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Файлът не е изображение. Моля, качете .png, .gif или .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Смятате ли, че всеки път когато посещавате страницата, следното ще бъде вярно за рекламата?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Бихте ли ни изпратили доклад за грешка?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Блокирани реклами:" }, - "typehiding":{ - "description":"A resource type", - "message":"скрит обект" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Филтри" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"арабски" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Домейн на рамката: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Отмени блокираните за домейна" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"горна рамка" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Да редактирате филтрите наръка:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Готово!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Първа стъпка: решете какво блокирате" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Ресурс" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Моля, въведете правилния филтър по-долу и натиснете ДА:" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Блокирай реклама в страницата" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Превод на български език:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Уверете се, че филтрите са обновени:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock e обновен!" }, - "lang_english":{ - "description":"language", - "message":"английски" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"само на английски" }, - "filtericelandic":{ - "description":"language", - "message":"исландски" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ИЛИ щракнете по: Забрани другите разширения" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Отворете страницата за разширения и разрешете забранените досега разширения." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Какво е новото в изданието — вижте списъка с изменения!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Домейн на страницата:" + "filterantisocial":{ + "description":"A filter list", + "message":"Разреши противосоциалния филтър (чисти бутоните на социални мрежи)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Страница:" + "filtermalware":{ + "description":"A filter list", + "message":"Разреши защитата от злонамерен софтуер" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Открихте грешка?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Показвай разширените настройки (аз съм опитен потребител)" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"арабски" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Надхвърляте квотата, която AdBlock ползва за съхраняване на данни. Моля, прекратете абонамента си за някои от филтрите!" }, - "lang_czech":{ - "description":"language", - "message":"чешки" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Кой колкото даде!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Вашата е-поща?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Интересува ви какво движи AdBlock?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Недействителен адрес на филтъра. Той ще бъде изтрит." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Скриване на раздел в страница" }, - "typesub_frame":{ - "description":"A resource type", - "message":"рамка" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Общи" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"или AdBlock за Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Клипове и флаш" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Чудесно! А сега нека определим разширението, което я допуска. Проверете всяко, разрешавайки само по едно от тях. Това, което я върне, е това, което трябва да бъде премахнато, за да се отървете от рекламите." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Редактирай" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":" или Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Имате въпрос или идея?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Формат: ~сайт1.бг|~сайт2.бг|~новини.сайт3.бг" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Забравихте да прикачите снимка на екрана! Няма да сме в състояние да ви помогнем, без да видим докладваната реклама." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Кой колкото даде!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ИЛИ щракнете по: Забрани другите разширения" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Това е неизправност на филтъра. Докладвайте я на: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Повече за злонамерения софтуер" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Забележка: достъпът до доклада може да бъде публичен. Имайте го предвид, ако включвате лични данни." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Презаредете страницата с рекламата." + "filteritalian":{ + "description":"language", + "message":"италиански" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Инсталирайте Firefox$chrome$, ако го нямате.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Обновяване на AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Продължавате ли да я виждате?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Разреши противоадблоковия филтър (чисти предупрежденията за блокери на реклами)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Уверете се, че ползвате правилния филтър за езика:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Други филтри" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Уверете се, че филтрите са обновени:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"френски" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Нещо се обърка при проверката за обновяване." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Блокиран елемент:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Натиснете Safari → Настройки → Разширения." }, - "typeobject":{ - "description":"A resource type", - "message":"интерактивен обект" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Предай" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"обновен току-що" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"обновен преди $days$ дни", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Без абонамент." + }, + "typemedia":{ "description":"A resource type", - "message":"рамка" + "message":"звук/видео" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"Разреши EasyPrivacy (защитава личната неприкосновеност)" + "message":"латвийски" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Докладвай реклама в страницата" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Блокирай реклама в страницата" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Оптимизирай филтрите" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Да спрете блокирането на реклами:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"немски" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Грешка при записване на качения файл." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Внимание: филтърът блокира всички елементи $elementtype$ в страницата!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Съвпада с $matchcount$ елемента в страницата.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"тук" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Какъв е езикът на страницата?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Провалено извличане на филтъра!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Сигурен ли сте, че премахвате $count$ от блокираните елементи за $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Движете плъзгача до включване на страниците, за които AdBlock няма да се изпълнява." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"картина" + "message":"скрит обект" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"И там наръка създайте билет, като копирате сведенията и ги поставите в полето под „Fill in any details you think will help us understand your issue“." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Показва ли се рекламата във или преди филм или друг плъгин, като флаш игра?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"За да го скриете, щракнете с десен бутон по него и посочете „Скрий бутона“. Можете да го покажете от chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"руски и украински" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"румънски" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Нещо се обърка при проверката за обновяване." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Всички други разширения са забранени. Предстои презареждане на страницата с рекламата. Само секунда, моля." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"изключен ресурс" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"испански" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Внимание: филтърът блокира всички елементи $elementtype$ в страницата!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"чешки и словашки" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Разреши режим на съвместимост с ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Вид на рамката: " + "no":{ + "description":"A negative response to a question", + "message":"Не" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"— избор на език —" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Филтър, който може да бъде променен от страницата с настройки:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Инсталирайте Adblock Plus за Firefox$chrome$, ако го нямате.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Скрий бутона" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"блокиран ресурс" + "other":{ + "description":"Multiple choice option", + "message":"друг" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"ДОБРЕ, можете да я блокирате самостоятелно в страницата с настройки. Благодарим!" + }, + "lang_russian":{ + "description":"language", + "message":"руски" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Показва ли се рекламата във или преди филм или друг плъгин, като флаш игра?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Бихте ли ни изпратили доклад за грешка?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"Разреши EasyPrivacy (защитава личната неприкосновеност)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ ще бъде $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Филтър, който може да бъде променен от страницата с настройки:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Добави от адрес:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Филтърът:
$filter$
съдържа грешка:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"ЗАРЕЖДАНЕ…" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Затвори" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Изискват се предпроверочни данни? Щракнете тук, за да ги предадете!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Блокиране на реклами само за сайтовете:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Надхвърляте квотата, която AdBlock ползва за съхраняване на данни. Моля, прекратете абонамента си за някои от филтрите!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Надхвърляте ограничението от 50 000 правила и броят им автоматично беше намален. Моля, прекратете абонамента си за някои от филтрите или забранете блокиране на съдържание в Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Докладвай реклама в страницата" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Позволи анонимно събиране на данни за ползваните филтри в AdBlock" + "message":"Показвай предпроверочните декларации в дневника на Конзола (води до забавяне на AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"ДОБРЕ, можете да я блокирате самостоятелно в страницата с настройки. Благодарим!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Домейн на рамката: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Най-популярното разширение за Chrome с над 40 милиона потребители! Блокира реклами в световната мрежа." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Открихте грешка?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Предай" + "lang_czech":{ + "description":"language", + "message":"чешки" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Файлът не е изображение. Моля, качете .png, .gif или .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Показвай препратки към филтрите" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Позволи определени ненатрапчиви реклами" + }, + "filterswedish":{ + "description":"A filter list", + "message":"шведски" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Премахни филтъра" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"— избор на език —" + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"фински" + "message":"френски" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Редактирай" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Твърде голям файл. Моля, уверете се, че вашият файл е под 10 МБ." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Поддръжка" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Следните сведения ще бъдат включени към доклада за реклама." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Блокиране на реклама по адрес" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Това е неизправност на филтъра. Докладвайте я на: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Версия $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Снемете отметките пред разширенията без тази пред AdBlock. Оставете AdBlock разрешено." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Въпросът определя кой трябва да получи вашия доклад. Ако отговорите неправилно, докладът ви ще получат неподходящите хора и може да не бъде взет под внимание." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Показвай препратки към филтрите" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Докладването е доброволно. Така помагате и на другите, защото позволявате доброволецът, поддържащ конкретния филтър, да я блокира за всички. Но ако не сте настроен алтруистично, всичко е наред. Затворете тази страница и блокирайте рекламата само за себе си." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"само на английски" + "yes":{ + "description":"A positive response to a question", + "message":"Да" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Нека и другите чуят!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Изходният код е свободно достъпен!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"холандски" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Ще я използваме, само ако трябва да се свържем с вас за повече информация." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Съвпада с 1 елемент в страницата." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"обновен преди $hours$ часа", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Назад" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock блокира изтегляне от сайт, за който се знае, че хоства злонамерен софтуер." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Легенда: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Щракнете по: Забрани Приемливи реклами" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Разреши режим на съвместимост с ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Домейн на страницата:" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Поддръжка" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Обновяване на AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Моля, преминете в нашия сайт за поддръжка." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"За задържане на AdBlock при разрешено блокиране на съдържание, моля, изберете Safari (от менюто) > Настройки > Разширения > AdBlock и снемете отметката пред „Разреши AdBlock“." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Нещо се обърка. Не са изпращани никакви ресурси. Сега страницата ще се затвори. Опитайте да презаредите сайта." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Повече за злонамерения софтуер" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Сайт:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Разреши Приемливи реклами (препоръчително)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Става" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"За задържане на AdBlock при разрешено блокиране на съдържание, моля, изберете Safari (от менюто) > Настройки > Разширения > AdBlock и снемете отметката пред „Разреши AdBlock“." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Отворете страницата за разширения." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"Натиснете бутона на AdBlock за подробности" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Забранете другите разширения без AdBlock:" } } \ No newline at end of file diff --git a/_locales/ca/messages.json b/_locales/ca/messages.json index 9b43f2e5..b8db0f04 100644 --- a/_locales/ca/messages.json +++ b/_locales/ca/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Adjunta una captura de pantalla:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"No s'ha trobat programari maliciós conegut." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"En aquell navegador, subscriviu-vos a les mateixes listes de filtres que teniu aquí." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Teniu alguna pregunta i/o suggeriment?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"En aquell navegador, carregueu la pàgina amb l'anunci." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opcions" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Suec" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Bloquejar més anuncis:" - }, - "lang_russian":{ - "description":"language", - "message":"Rus" + "message":"EasyList (recomanat)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Subscripció cancel·lada." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ en aquesta pàgina", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Xinès" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Si has creat un filtre de treball mitjançant l'assistent \"bloqueja un anunci\", enganxeu-lo al següent quadre:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Llista de filtres antisocials (suprimeix els botons de les xarxes socials)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Has trobat un anunci en una pàgina web? T'ajudarem a trobar el lloc idoni per informar-ne!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Mostrar el nombre d'anuncis blocats al botó" + "message":"Polonès" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"El codi font està totalment disponible!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS a relacionar" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"actualitzat fa 1 minut" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Excloure" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"S'ha produït un error al obtenir aquest filtre!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"No vull comprovar això" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Reinicieu Safari per acabar de desactivar el bloqueig de contingut." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Bloquejar un anunci mitjançant la seva URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Amagar aquest botó" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Aneu amb compte: Si cometeu un error aquí molts filtres, incloent els oficials, es podrien malmetre!
Llegiu-vos el tutorial de sintaxi per a filtres per aprendre com afegir filtres avançats de restricció o permissió." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Obtindré les actualitzacions automàticament; si voleu podeu actualitzar ara" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"L'anunci també apareix en aquell navegador?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~lloc1.com|~lloc2.com|~notícies.lloc3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Si no t'agrada veure anuncis com aquest, potser voldries desactivar el filtre d'Anucis Acceptables." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Estonià" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tipus" + "message":"Lituà" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Hi ha una actualització disponible per a AdBlock! Dirigiu-vos $here$ per dur-la a terme.
Atenció: si voleu rebre actualitzacions automàticament, cliqueu a Safari > Preferències > Ampliacions > Actualitzacions
i marqueu l'opció ' Instal·lar actualitzacions automàticament'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Subscriviu-vos a aquesta llista de filtres, llavors torneu-ho a intentar: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Què és això?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"No us subscrigueu més del que necessiteu –– cada llista us fa anar una mica més lent! Els crèdits i més llistes es poden trobar aquí." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Aquesta característica de l'AdBlock no s'executa en aquest lloc perquè utilitza tecnologia obsoleta. Podeu prohibir o permetre recursos manualment a la pestanya 'personalitzar' de la pàgina d'opcions." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polonès" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Saber-ne més sobre el programa d'anuncis acceptables." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"actualitzat fa $seconds$ segons", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"El vostre ordinador potser està infectat per programari maliciós. Cliqueu aquí per obtenir més informació." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Mostrar els anuncis en una pàgina web o domini" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Hongarès" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Nota: el vostre informe pot ser que esdevingui públic. Recordeu això abans d'incloure quelcom privat." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Desactiveu algunes llistes de filtres. Més informació a les opcions d'AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Eslovac" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Origen del filtre:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Instal·leu-vos l'Adblock Plus per a Firefox $chrome$ si no el teniu.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Ho sentim, l'AdBlock està deshabilitat en aquesta pàgina per una de les seves llistes de filtres." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"El filtre no és vàlid: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"No tenim una llista de filtres per a aquest idioma.
Intenteu trobar una llista que sigui compatible amb aquest idioma $link$ o bé bloquegi aquest anunci vostè mateix a la pestanya 'Personalitzar'.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Alerta: no s'ha especificat cap filtre!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"L'AdBlock està desactivat en aquesta pàgina." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Cliqueu l'anunci, i us guiaré a tavés del seu blocatje." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Mostrar els anuncis a tot arreu excepte en aquests dominis..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Marc superior" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opcions" + "typestylesheet":{ + "description":"A resource type", + "message":"definició d'estil" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"desconegut" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Ho sentim, l'AdBlock està deshabilitat en aquesta pàgina per una de les seves llistes de filtres." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Anuncis bloquejats:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Afegir filtres per a un altre idioma: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"de tercers" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Cliqueu l'anunci, i us guiaré a tavés del seu blocatje." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"No s'ha especificat cap filtre!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grec" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Si veieu un anunci, no feu un informe d'errors, feu un Informe d'anunci!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Esteu utilitzant una versió antiga d'AdBlock. Aneu a la pàgina d'extensions, activeu el 'mode de desenvolupador' i cliqueu 'actualitza les extensions ara'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Fantàstic! Esteu a punt." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Com et dius?" }, - "other":{ - "description":"Multiple choice option", - "message":"Altres" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Treballar amb els vídeos de Hulu.com que no es reprodueixin (requereix el reinici del navegador)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Suport d'AdBlock" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Alerta: no s'ha especificat cap filtre!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personalitzar" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Has trobat un anunci en una pàgina web? T'ajudarem a trobar el lloc idoni per informar-ne!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estonià" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Personalitzar l'AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Falta informació requerida o aquesta no es vàlida. Si us plau, respongui les preguntes que tenen la vora vermella." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Búlgar" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Error en desar l'arxiu carregat." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Recurs permès" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Escriviu el filtre correcte a continuació i premeu 'D'acord'" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Límit de normes de bloqueig sobrepassat" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Pas 1: Identifiqueu el que s'ha de bloquejar" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Danès" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"No executar l'AdBlock a..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ en aquesta pàgina", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Bloquejar les URL que continguin aquest text" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Tancar" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Comproveu-ho al Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Premarc" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Pas final: què fa això un anunci?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"actualitzat fa 1 hora" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Si veieu un anunci, no feu un informe d'errors, feu un Informe d'anunci!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Coreà" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"o bé Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Com et dius?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"L'extensió més popular de Chrome, amb més de 40 milions d'usuaris! Bloqueja els anuncis de tota la xarxa." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Esteu fent servir una versió antiga de Safari. Obteniu l'última versió per tal de fer servir el botó d'AdBlock de la barra d'eines per pausar l'AdBlock, permetre anuncis a llocs webs, o bé informar sobre algun anunci. Actualitzeu-vos ara." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Mostra totes les sol·licituds" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finès" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"No vull comprovar això" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Ucraïnès" }, - "yes":{ - "description":"A positive response to a question", - "message":"Sí" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"No s'ha trobat programari maliciós conegut." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Desfer els meus blocatges en aquest domini" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Desactiveu algunes llistes de filtres. Més informació a les opcions d'AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personalitzar" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Hem cancel·lat la seva subscripció dels anuncis acceptables, ja que heu activat el bloqueig de contingut de Safari. Només en podeu seleccionar un a la vegada. ( Per què? )" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pausar l'AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Tenim una pàgina per tal que descobriu les persones que fan possible l'AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Segur que us voleu subscriure a la llista de filtres $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"aquí" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Exactament, on es troba l'anunci? Quin aspecte té?" + "typepopup":{ + "description":"A resource type", + "message":"element emergent" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"o bé AdBlock per a Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Recarregar la pàgina." }, - "typestylesheet":{ - "description":"A resource type", - "message":"definició d'estil" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"En quin idioma està escrita la pàgina web?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"L'AdBlock està en pausa." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Límit de normes de bloqueig sobrepassat" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Reactivar l'AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Trobant els anuncis…

Això només tardarà uns instants." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"L'AdBlock està desactivat en aquesta pàgina." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"El domini o URL en el qual l'AdBlock no hauria de bloquejar res" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"En aquell navegador, subscriviu-vos a les mateixes listes de filtres que teniu aquí." }, - "typescript":{ - "description":"A resource type", - "message":"script" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Bloquejar un anunci" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ en total", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Alerta: a tots els altres llocs veureu anuncis!
Això es salta les normes de tots els altres filtres per a aquests llocs." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Hi ha una actualització disponible per a AdBlock! Dirigiu-vos $here$ per dur-la a terme.
Atenció: si voleu rebre actualitzacions automàticament, cliqueu a Safari > Preferències > Ampliacions > Actualitzacions
i marqueu l'opció ' Instal·lar actualitzacions automàticament'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Tot a punt! Estarem en contacte aviat, molt probablement en un dia, dos si és festa. Mentrestant, cerqueu un correu electrònic de l'AdBlock. Trobareu un enllaç al vostre tiquet a la nostra pàgina de suport. Si preferiu seguir el correu electrònic, també ho podeu fer!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Acabat!" }, - "no":{ - "description":"A negative response to a question", - "message":"No" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Filtres personalitzats d'AdBlock (recomanat)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Alguna cosa no ha anat bé. No s'ha enviat cap recurs. Aquesta pàgina ara es tancarà. Intenteu tornar a carregar la pàgina web." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tipus" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Què és això?" + }, + "filterjapanese":{ "description":"language", - "message":"Ucraïnès" + "message":"Japonès" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"actualitzat fa $minutes$ minuts", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Origen del filtre:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Hem cancel·lat la seva subscripció dels anuncis acceptables, ja que heu activat el bloqueig de contingut de Safari. Només en podeu seleccionar un a la vegada. ( Per què? )" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Ja no esteu subscrits a la llista de filtres dels Anuncis Acceptables." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Protecció contra el programari maliciós" - }, - "savebutton":{ - "description":"Save button", - "message":"Desar" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Alerta: a tots els altres llocs veureu anuncis!
Això es salta les normes de tots els altres filtres per a aquests llocs." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Desactivar aquestes notificacions" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Subscrivint-se a la llista de filtres..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Subscriure's a llistes de filtres" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Esteu utilitzant una versió antiga d'AdBlock. Aneu a la pàgina d'extensions, activeu el 'mode de desenvolupador' i cliqueu 'actualitza les extensions ara'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Tipus de marc: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opcions d'AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Afegir filtres per a un altre idioma: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Filtre relacionat" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Comprova l'existència de programari maliciós sospitós d'injectar anuncis:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Les llistes de filtres bloquejen la majoria d'anuncis de la xarxa. També podeu:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Mostrar les dades de depuració al registre de la consola (això alentirà l'AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Per ocultar el botó, feu clic dret a la barra d'eines de Safari i escolliu Personalitzar la barra d'eines, a continuació arrosegueu el botó d'AdBlock fora de la barra d'eines. El podeu fer tornar a aparèixer arrosegant-lo cap a la barra d'eines." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Heu excedit el límit de mida de Dropbox. Elimineu algunes entrades dels vostres filtres personalitzats o desactivats i torneu-ho a intentar." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Reactivar l'AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Treballar amb els vídeos de Hulu.com que no es reprodueixin (requereix el reinici del navegador)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Excloure" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Desactiveu totes les extensions excepte l'AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Traducció al català feta per:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"CARREGANT..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Feu clic dret a un anunci en una pàgina per bloquejar-lo –– o bé bloquejeu-lo aquí manualment." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Subscriure's" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Avís: La permissivitat (permetre anuncis) a una pàgina o lloc no és compatible tenint activat el bloqueig de continguts de Safari." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Només la farem servir per contactar-te si necessitem més informació." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editar els filtres desactivats:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Element bloquejat:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"pàgina" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Activar el bloqueig de contingut de Safari" + "typeother":{ + "description":"A resource type", + "message":"altres" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Quina és la teva adreça de correu?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Feu clic aquí: Actualitzar els meus filtres!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Per ocultar el botó, feu clic dret a la barra d'eines de Safari i escolliu Personalitzar la barra d'eines, a continuació arrosegueu el botó d'AdBlock fora de la barra d'eines. El podeu fer tornar a aparèixer arrosegant-lo cap a la barra d'eines." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"S'ha produït un error en processar la vostra sol·licitud." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Element ocult" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Per ocultar el botó, dirigiu-vos a opera://extensions i seleccioneu l'opció 'Ocultar de la barra d'eines'. El podeu fer tornar a aperèixer desmarcant aquella opció." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"pàgina" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Pàgina:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Fet! Hem recarregat la pàgina amb l'anunci. Aneu a la pàgina per comprovar si l'anunci ha marxat. Llavors torneu a aquesta pàgina i responeu la pregunta que es formula a continuació." + "buttonblockit":{ + "description":"Block button", + "message":"Bloquejar-ho!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Introduïu una URL:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permeteu la permissió d'anuncis en canals específics de YouTube" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Esteu fent servir una versió antiga de Safari. Obteniu l'última versió per tal de fer servir el botó d'AdBlock de la barra d'eines per pausar l'AdBlock, permetre anuncis a llocs webs, o bé informar sobre algun anunci. Actualitzeu-vos ara." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Feu clic al menú de Safari → Preferències → Ampliacions." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Aturar el bloqueig d'anuncis:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Encara no podem bloquejar els anuncis que es troben dins d'aplicacions Flash o bé dins d'altres complements. Estem a l'espera de la compatibilitat del navegador i del 'WebKit'." }, - "buttonblockit":{ - "description":"Block button", - "message":"Bloquejar-ho!" + "filterhungarian":{ + "description":"language", + "message":"Hongarès" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Encara apareix l'anunci?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Bloquegeu aquest anunci" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Búlgar" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Fantàstic! Ara hem d'esbrinar quina extensió n'és la causant. Aneu activant les extensions una per una. L'extensió que fa retornar l'anunci(s) és la que heu de desinstal·lar per treure-us de sobre els anuncis." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Activar AdBlock en aquesta pàgina" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Mostrar el nombre d'anuncis blocats al botó" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Error!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editar manualment els vostres filtres:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pausar l'AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Italià" - }, - "typepopup":{ - "description":"A resource type", - "message":"element emergent" + "message":"Anglès" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tipus" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Afegir ítems al menú de clic amb botó dret" }, - "lang_slovak":{ - "description":"language", - "message":"Eslovac" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Si us plau dirigiu-vos a la nostra web de suport." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Subscriure's a llistes de filtres" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Llista d'eliminació d'avisos d'AdBlocks (elimina els avisos sobre l'utilització de bloquejadors de publicitat)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Podeu reactivar-ho i donar suport a les vostres pàgines web preferides seleccionant \"Permetre publicitat no intrusiva\"." + "typemain_frame":{ + "description":"A resource type", + "message":"pàgina" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"L'anunci també apareix en aquell navegador?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Esteu segur que voleu eliminar els $count$ blocatges que heu creat a $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"No actuar en aquesta pàgina" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Llegenda: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"actualitzat fa $minutes$ minuts", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Adjunta una captura de pantalla:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Lituà" + "message":"Romanès" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Feu-nos-ho saber en el nostre lloc web de suport!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar els filtres desactivats:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"L'AdBlock està en pausa." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Premarc" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Encara no podem bloquejar els anuncis que es troben dins d'aplicacions Flash o bé dins d'altres complements. Estem a l'espera de la compatibilitat del navegador i del 'WebKit'." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Tornar a carregar la pàgina amb l'anunci." }, - "buttonok":{ - "description":"OK button", - "message":"D'acord!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Activar el bloqueig de contingut de Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Baixeu-vos el Firefox $chrome$ si no el teniu.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"General" + "message":"Llistes de filtres" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Si no t'agrada veure anuncis com aquest, potser voldries desactivar el filtre d'Anucis Acceptables." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Si has creat un filtre de treball mitjançant l'assistent \"bloqueja un anunci\", enganxeu-lo al següent quadre:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"El vostre ordinador potser està infectat per programari maliciós. Cliqueu aquí per obtenir més informació." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Aquest fitxer és massa gran. Assegureu-vos que el fitxer és de menys de 10 MB." }, - "typeother":{ - "description":"A resource type", - "message":"altres" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"L'AdBlock no s'executarà en cap pàgina del següent domini:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"No s'ha especificat cap filtre!" + "filterchinese":{ + "description":"language", + "message":"Xinès" }, - "typeunknown":{ - "description":"A resource type", - "message":"desconegut" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"El filtre no és vàlid: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Subscrivint-se a la llista de filtres..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Obriu la pàgina de les extensions per activar les que anteriorment estaven desactivades." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Desactivar aquestes notificacions" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Turc" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"No us subscrigueu més del que necessiteu –– cada llista us fa anar una mica més lent! Els crèdits i més llistes es poden trobar aquí." + }, + "typesubdocument":{ "description":"A resource type", - "message":"àudio/vídeo" + "message":"marc" }, - "filterjapanese":{ - "description":"language", - "message":"Japonès" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesi" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Permet la publicitat no intrusiva" + "typeimage":{ + "description":"A resource type", + "message":"imatge" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ en total", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Cancel·lar" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Feu lliscar el regulador per determinar en quines pàgines del domini l'AdBlock no s'executarà." + "savereminder":{ + "description":"Reminder to press save", + "message":"No us oblideu de desar els canvis!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"selector" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Hem desactivat el bloqueig de contingut al Safari, perquè heu optat per permetre els anuncis no intrusius. Només en podeu seleccionar un a la vegada. (Per què?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Darrer pas: informeu-nos del problema." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Comproveu-ho al Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Islandès" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Per informar sobre un anunci, heu d'estar connectats a internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Llistes de filtres per bloquejar anuncis" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (recomanat)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Només bloquejar els anuncis en aquests llocs:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Carregat a la pàgina amb el domini: $domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Informant sobre un anunci" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Les extensions que anteriorment estaven desactivades han estat reactivades." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Llistes de filtres per bloquejar anuncis" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Com?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Netejar aquesta llista" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permeteu la permissió d'anuncis en canals específics de YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Ajudeu a fer córrer la veu!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"de tercers" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (elimina les molèsties de la xarxa)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock – cliqueu per obtenir més detalls" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opcions d'AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"S'ha produït un error en processar la vostra sol·licitud." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"actualitzat fa $hours$ hores", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"actualitzat fa 1 hora" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Rus i ucraïnès" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Comprovant l'existència d'actualitzacions (pot tardar pocs segons)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Què hi ha de nou en l'últim llançament? Vegeu el conjunt de canvis!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"actualitzat ara mateix" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Les extensions que anteriorment estaven desactivades han estat reactivades." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Feu clic dret a un anunci en una pàgina per bloquejar-lo –– o bé bloquejeu-lo aquí manualment." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grec" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Comprova l'existència de programari maliciós sospitós d'injectar anuncis:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Amagar una secció d'una pàgina web" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Suport d'AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Vídeos i Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tipus" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Què creieu que serà veritat sobre aquest anunci cada cop que visiteu aquesta pàgina?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Feu lliscar el regulador fins que l'anunci sigui bloquejat correctament dins la pàgina i l'aspecte final sigui el desitjat." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Activar AdBlock en aquesta pàgina" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"actualitzat fa 1 minut" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Enrere" + "typesub_frame":{ + "description":"A resource type", + "message":"marc" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Les llistes de filtres bloquejen la majoria d'anuncis de la xarxa. També podeu:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Recurs bloquejat" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"També s'inclourà la següent informació a l'informe." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Danès" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Comprova el filtre d'Anuncis Acceptables:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Mostrar els anuncis en una pàgina web o domini" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Podeu reactivar-ho i donar suport a les vostres pàgines web preferides seleccionant \"Permetre publicitat no intrusiva\"." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"S'està obtenint... espereu-vos." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"URL de llista no vàlida. Serà suprimida." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opcions generals" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Desactiveu les caselles de selecció que es troben al costat de cada extensió excepte la de l'AdBlock. Deixeu la casella de l'AdBlock seleccionada." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"En aquell navegador, carregueu la pàgina amb l'anunci." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Mostrar els anuncis a tot arreu excepte en aquests dominis..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Heu oblidat d'adjuntar una captura de pantalla! Nosaltres no us podrem ajudar sense veure l'anunci què informeu." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Això es relaciona amb 1 ítem en aquesta pàgina." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"I creeu un tiquet de forma manual. Copieu i enganxeu la següent informació a la secció \"Completeu qualsevol detall que penseu que ens ajudarà a comprendre el seu problema\"." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Aneu amb compte: Si cometeu un error aquí molts filtres, incloent els oficials, es podrien malmetre!
Llegiu-vos el tutorial de sintaxi per a filtres per aprendre com afegir filtres avançats de restricció o permissió." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"El canal $name$ té permís", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Per amagar aquest botó, feu clic amb el botó dret i escolliu Amaga el botó. El podeu fer reaparèixer a: chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opcions generals" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"L'AdBlock no s'executarà en cap pàgina del següent domini:" + "filterisraeli":{ + "description":"language", + "message":"Hebreu" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"No tenim una llista de filtres per a aquest idioma.
Intenteu trobar una llista que sigui compatible amb aquest idioma $link$ o bé bloquegi aquest anunci vostè mateix a la pestanya 'Personalitzar'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Aquesta característica de l'AdBlock no s'executa en aquest lloc perquè utilitza tecnologia obsoleta. Podeu prohibir o permetre recursos manualment a la pestanya 'personalitzar' de la pàgina d'opcions." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Subscriure's" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Txec i eslovac" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sóc un usuari avançat, mostrar opcions avançades" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Hem desactivat totes les altres extensions. Ara recarregarem la pàgina amb l'anunci. Un segon, si us plau." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Espanyol" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Altres llistes de filtres" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Carregat a la pàgina amb el domini: $domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Obtindré les actualitzacions automàticament; si voleu podeu actualitzar ara" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Feu clic aquí: Actualitzar els meus filtres!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Mostra totes les sol·licituds" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Com més llistes de filtres utilitzeu, amb més lentitud s'executarà l'AdBlock. L'ús de masses llistes pot arribar a fer fallar el navegador en determinats llocs web. Premeu d'acord per ser subscriptor d'aquesta llista de totes maneres." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Pas final: què fa això un anunci?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Fantàstic! Esteu a punt." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Això relaciona $matchcount$ ítems en aquesta pàgina.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Tenim una pàgina per tal que descobriu les persones que fan possible l'AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Obriu la pàgina de les extensions." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesi" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Tot a punt! Estarem en contacte aviat, molt probablement en un dia, dos si és festa. Mentrestant, cerqueu un correu electrònic de l'AdBlock. Trobareu un enllaç al vostre tiquet a la nostra pàgina de suport. Si preferiu seguir el correu electrònic, també ho podeu fer!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turc" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Saber-ne més sobre el programa d'anuncis acceptables." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Bloquejar un anunci" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Us hauria de notificar l'AdBlock quan detecti programari maliciós?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Llistes de filtres personalitzades" + "updateddayago":{ + "description":"Label for subscription", + "message":"actualitzat fa 1 dia" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL del marc: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"El propòsit d'aquesta pregunta és determinar qui ha de rebre el seu informe. Si contesteu aquesta pregunta de forma incorrecta, l'informe s'enviarà a les persones equivocades, i potser sou ignorats." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Afegir ítems al menú de clic amb botó dret" - }, - "typeselector":{ - "description":"A resource type", - "message":"selector" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Bloquegeu aquest anunci" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"El nostre equip ha solicitat informació de depuració? Cliqueu aquí per satisfer la sol·licitud!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Alemany" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"No executar l'AdBlock a..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Informar sobre anuncis és voluntari. Ajuda a d'altres persones amb l'activació dels mantenidors de les llistes de filtres per tal de bloquejar l'anunci per a tothom. Si ara no et sents altruista, d'acord; tanca aquesta pàgina i bloqueja l'anunci només per tu." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Aquest nom de fitxer és massa llarg. Si us plau, canvieu-lo a un de més curt." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Element ocult" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"actualitzat fa $seconds$ segons", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Recarregar la pàgina." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"No actuar en aquesta pàgina" }, - "typepage":{ - "description":"A resource type", - "message":"pàgina" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Feu-nos-ho saber en el nostre lloc web de suport!" }, - "filterdutch":{ - "description":"language", - "message":"Holandès" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Aquest nom de fitxer és massa llarg. Si us plau, canvieu-lo a un de més curt." + "buttonok":{ + "description":"OK button", + "message":"D'acord!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"No us oblideu de desar els canvis!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Fet! Hem recarregat la pàgina amb l'anunci. Aneu a la pàgina per comprovar si l'anunci ha marxat. Llavors torneu a aquesta pàgina i responeu la pregunta que es formula a continuació." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Comprovant l'existència d'actualitzacions (pot tardar pocs segons)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Tots els recursos" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Subscriviu-vos a aquesta llista de filtres, llavors torneu-ho a intentar: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"El canal $name$ té permís", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Us hauria de notificar l'AdBlock quan detecti programari maliciós?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Recurs" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Mostrar el nombre d'anuncis blocats al menú" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Lloc:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Informant sobre un anunci" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Filtres personalitzats d'AdBlock (recomanat)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Com?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"No actuar en les pàgines d'aquest domini" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Llistes de filtres personalitzades" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Bloquejar més anuncis:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Falta informació requerida o aquesta no es vàlida. Si us plau, respongui les preguntes que tenen la vora vermella." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"El domini o URL en el qual l'AdBlock no hauria de bloquejar res" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letó" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Ja no esteu subscrits a la llista de filtres dels Anuncis Acceptables." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Assegureu-vos que esteu fent servir els filtres d'idioma correctes:" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (elimina les molèsties de la xarxa)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS a relacionar" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"L'AdBlock ha bloquejat una descàrrega d'un lloc del qual se sap que conté malware." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Per ocultar el botó, dirigiu-vos a opera://extensions i seleccioneu l'opció 'Ocultar de la barra d'eines'. El podeu fer tornar a aperèixer desmarcant aquella opció." + "savebutton":{ + "description":"Save button", + "message":"Desar" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"No n'esteu segurs?doncs premeu 'Bloquejar-ho!' a continuació." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Filtre relacionat" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"S'està obtenint... espereu-vos." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Tots els recursos" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Darrer pas: informeu-nos del problema." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"L'AdBlock està actualitzat!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"No actuar en les pàgines d'aquest domini" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Exactament, on es troba l'anunci? Quin aspecte té?" }, - "filterisraeli":{ - "description":"language", - "message":"Hebreu" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Té bon aspecte" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Feu lliscar el regulador fins que l'anunci sigui bloquejat correctament dins la pàgina i l'aspecte final sigui el desitjat." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Bloquejar les URL que continguin aquest text" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permet que l'AdBlock reculli anònimament dades i ús de les llistes de filtres" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Per informar sobre un anunci, heu d'estar connectats a internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"El nombre de normes de filtres de llista sobrepassa el límit de 50.000, i ha estat reduïda automàticament. Deixeu algunes subscripcions a llistes de filtres o desactiveu el bloqueig de continguts de Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Segur que us voleu subscriure a la llista de filtres $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"actualitzat fa 1 dia" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Anuncis Acceptables (recomanat)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Clica a: Desactivar Anuncis Acceptables" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versió $version$", + "message":"actualitzat fa $days$ dies", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Suprimir de la llista" + "typeobject":{ + "description":"A resource type", + "message":"objecte interactiu" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Això no és un arxiu d'imatge. Si us plau carregueu un arxiu .png, .gif, o .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Què creieu que serà veritat sobre aquest anunci cada cop que visiteu aquesta pàgina?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Per què no ens envieu un informe d'error?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Anuncis bloquejats:" }, - "typehiding":{ - "description":"A resource type", - "message":"amagant" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Llistes de filtres" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Àrab" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domini del marc: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Desfer els meus blocatges en aquest domini" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Marc superior" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar manualment els vostres filtres:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Acabat!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Pas 1: Identifiqueu el que s'ha de bloquejar" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Recurs" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Escriviu el filtre correcte a continuació i premeu 'D'acord'" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Bloquejar un anunci en aquesta pàgina" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Traducció al català feta per:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Assegureu-vos que les llistes de filtres estiguin actualitzades:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"L'AdBlock està actualitzat!" }, - "lang_english":{ - "description":"language", - "message":"Anglès" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Només en anglès" }, - "filtericelandic":{ - "description":"language", - "message":"Islandès" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"O BÉ, només cliqueu aquest botó per fer tot el que figura anteriorment: Desactivar totes les altres extensions" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Obriu la pàgina de les extensions per activar les que anteriorment estaven desactivades." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Què hi ha de nou en l'últim llançament? Vegeu el conjunt de canvis!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"El domini de la pàgina a on s'ha d'aplicar" + "filterantisocial":{ + "description":"A filter list", + "message":"Llista de filtres antisocials (suprimeix els botons de les xarxes socials)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Pàgina:" + "filtermalware":{ + "description":"A filter list", + "message":"Protecció contra el programari maliciós" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Heu trobat un error?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sóc un usuari avançat, mostrar opcions avançades" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Àrab" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Heu sobrepassat el límit d'emmagatzematge que l'AdBlock pot fer servir. Deixeu la subscripció d'algunes llistes de filtres!" }, - "lang_czech":{ - "description":"language", - "message":"Txec" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Pagueu el que desitgeu!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Quina és la teva adreça de correu?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Voleu veure els engranatges que mouen l'AdBlock?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"URL de llista no vàlida. Serà suprimida." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Amagar una secció d'una pàgina web" }, - "typesub_frame":{ - "description":"A resource type", - "message":"marc" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"General" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"o bé AdBlock per a Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Vídeos i Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Fantàstic! Ara hem d'esbrinar quina extensió n'és la causant. Aneu activant les extensions una per una. L'extensió que fa retornar l'anunci(s) és la que heu de desinstal·lar per treure-us de sobre els anuncis." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Editar" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"o bé Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Teniu alguna pregunta i/o suggeriment?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~lloc1.com|~lloc2.com|~notícies.lloc3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Heu oblidat d'adjuntar una captura de pantalla! Nosaltres no us podrem ajudar sense veure l'anunci què informeu." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Pagueu el que desitgeu!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"O BÉ, només cliqueu aquest botó per fer tot el que figura anteriorment: Desactivar totes les altres extensions" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Això és un problema de la llista de filtres. Informeu-ne aquí: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Aprendre'n més sobre programari maliciós" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Nota: el vostre informe pot ser que esdevingui públic. Recordeu això abans d'incloure quelcom privat." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Tornar a carregar la pàgina amb l'anunci." + "filteritalian":{ + "description":"language", + "message":"Italià" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Baixeu-vos el Firefox $chrome$ si no el teniu.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Actualització d'AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Encara apareix l'anunci?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Llista d'eliminació d'avisos d'AdBlocks (elimina els avisos sobre l'utilització de bloquejadors de publicitat)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Assegureu-vos que esteu fent servir els filtres d'idioma correctes:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Altres llistes de filtres" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Assegureu-vos que les llistes de filtres estiguin actualitzades:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francès" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Quelcom ha anat malament durant la comprovació d'actualitzacions." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Element bloquejat:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Feu clic al menú de Safari → Preferències → Ampliacions." }, - "typeobject":{ - "description":"A resource type", - "message":"objecte interactiu" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Enviar" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"actualitzat ara mateix" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"actualitzat fa $days$ dies", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Subscripció cancel·lada." + }, + "typemedia":{ "description":"A resource type", - "message":"marc" + "message":"àudio/vídeo" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (protecció de la privadesa)" + "message":"Letó" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Informar sobre un anunci en aquesta pàgina" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Bloquejar un anunci en aquesta pàgina" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Netejar aquesta llista" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Aturar el bloqueig d'anuncis:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Alemany" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Error en desar l'arxiu carregat." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Aneu amb compte: aquest filtre bloqueja tots els elements $elementtype$ de la pàgina!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Això relaciona $matchcount$ ítems en aquesta pàgina.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"aquí" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"En quin idioma està escrita la pàgina web?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"S'ha produït un error al obtenir aquest filtre!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Esteu segur que voleu eliminar els $count$ blocatges que heu creat a $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Feu lliscar el regulador per determinar en quines pàgines del domini l'AdBlock no s'executarà." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"imatge" + "message":"amagant" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"I creeu un tiquet de forma manual. Copieu i enganxeu la següent informació a la secció \"Completeu qualsevol detall que penseu que ens ajudarà a comprendre el seu problema\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Quan apareix l'anunci: abans o durant un vídeo o algun plugin com ara un joc Flash?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Per amagar aquest botó, feu clic amb el botó dret i escolliu Amaga el botó. El podeu fer reaparèixer a: chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Rus i ucraïnès" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Romanès" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Quelcom ha anat malament durant la comprovació d'actualitzacions." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Hem desactivat totes les altres extensions. Ara recarregarem la pàgina amb l'anunci. Un segon, si us plau." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Recurs permès" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Espanyol" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Aneu amb compte: aquest filtre bloqueja tots els elements $elementtype$ de la pàgina!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Txec i eslovac" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Activeu el mode de compatibilitat amb ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Tipus de marc: " + "no":{ + "description":"A negative response to a question", + "message":"No" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" - Seleccionar idioma - " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"El filtre, el qual es pot canviar a la pàgina d'opcions:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Instal·leu-vos l'Adblock Plus per a Firefox $chrome$ si no el teniu.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Amagar aquest botó" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Recurs bloquejat" + "other":{ + "description":"Multiple choice option", + "message":"Altres" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"D'acord, encara podeu bloquejar aquest anunci vosaltres mateixos a la pàgina d'opcions. Gràcies!" + }, + "lang_russian":{ + "description":"language", + "message":"Rus" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Quan apareix l'anunci: abans o durant un vídeo o algun plugin com ara un joc Flash?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Per què no ens envieu un informe d'error?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (protecció de la privadesa)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ serà $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"El filtre, el qual es pot canviar a la pàgina d'opcions:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Introduïu una URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"El filtre següent:
$filter$
té un error:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"CARREGANT..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Tancar" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"El nostre equip ha solicitat informació de depuració? Cliqueu aquí per satisfer la sol·licitud!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Només bloquejar els anuncis en aquests llocs:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Heu sobrepassat el límit d'emmagatzematge que l'AdBlock pot fer servir. Deixeu la subscripció d'algunes llistes de filtres!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"El nombre de normes de filtres de llista sobrepassa el límit de 50.000, i ha estat reduïda automàticament. Deixeu algunes subscripcions a llistes de filtres o desactiveu el bloqueig de continguts de Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Informar sobre un anunci en aquesta pàgina" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permet que l'AdBlock reculli anònimament dades i ús de les llistes de filtres" + "message":"Mostrar les dades de depuració al registre de la consola (això alentirà l'AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"D'acord, encara podeu bloquejar aquest anunci vosaltres mateixos a la pàgina d'opcions. Gràcies!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domini del marc: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"L'extensió més popular de Chrome, amb més de 40 milions d'usuaris! Bloqueja els anuncis de tota la xarxa." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Heu trobat un error?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Enviar" + "lang_czech":{ + "description":"language", + "message":"Txec" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Això no és un arxiu d'imatge. Si us plau carregueu un arxiu .png, .gif, o .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Mostrar els enllaços a les llistes de filtres" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Permet la publicitat no intrusiva" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Suec" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Suprimir de la llista" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" - Seleccionar idioma - " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Finès" + "message":"Francès" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Editar" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Aquest fitxer és massa gran. Assegureu-vos que el fitxer és de menys de 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Suport" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"També s'inclourà la següent informació a l'informe." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Bloquejar un anunci mitjançant la seva URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Això és un problema de la llista de filtres. Informeu-ne aquí: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Versió $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Desactiveu les caselles de selecció que es troben al costat de cada extensió excepte la de l'AdBlock. Deixeu la casella de l'AdBlock seleccionada." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"El propòsit d'aquesta pregunta és determinar qui ha de rebre el seu informe. Si contesteu aquesta pregunta de forma incorrecta, l'informe s'enviarà a les persones equivocades, i potser sou ignorats." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Mostrar els enllaços a les llistes de filtres" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Informar sobre anuncis és voluntari. Ajuda a d'altres persones amb l'activació dels mantenidors de les llistes de filtres per tal de bloquejar l'anunci per a tothom. Si ara no et sents altruista, d'acord; tanca aquesta pàgina i bloqueja l'anunci només per tu." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Només en anglès" + "yes":{ + "description":"A positive response to a question", + "message":"Sí" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Ajudeu a fer córrer la veu!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"El codi font està totalment disponible!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Holandès" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Només la farem servir per contactar-te si necessitem més informació." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Això es relaciona amb 1 ítem en aquesta pàgina." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"actualitzat fa $hours$ hores", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Enrere" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"L'AdBlock ha bloquejat una descàrrega d'un lloc del qual se sap que conté malware." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Llegenda: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Clica a: Desactivar Anuncis Acceptables" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Activeu el mode de compatibilitat amb ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"El domini de la pàgina a on s'ha d'aplicar" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Suport" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Actualització d'AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Si us plau dirigiu-vos a la nostra web de suport." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Per posar en pausa l'AdBlock amb el bloqueig de continguts activat, seleccioneu Safari (a la barra de menús) > Preferències > Extensions > AdBlock, i desmarqueu 'Activar AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Alguna cosa no ha anat bé. No s'ha enviat cap recurs. Aquesta pàgina ara es tancarà. Intenteu tornar a carregar la pàgina web." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Aprendre'n més sobre programari maliciós" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Lloc:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Anuncis Acceptables (recomanat)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Té bon aspecte" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Per posar en pausa l'AdBlock amb el bloqueig de continguts activat, seleccioneu Safari (a la barra de menús) > Preferències > Extensions > AdBlock, i desmarqueu 'Activar AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Obriu la pàgina de les extensions." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock – cliqueu per obtenir més detalls" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Desactiveu totes les extensions excepte l'AdBlock:" } } \ No newline at end of file diff --git a/_locales/cs/messages.json b/_locales/cs/messages.json index d4c07b99..9370c58b 100644 --- a/_locales/cs/messages.json +++ b/_locales/cs/messages.json @@ -1,893 +1,947 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Nahlášení reklamy" + "filterdanish":{ + "description":"language", + "message":"Dánština" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Seznam filtrů pro blokování reklam" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Pomozte nám rozšířit povědomí!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Doména:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Máte otázku nebo nový nápad?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Povolit odblokování specifických YouTube kanálů" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Žádný známý malware nenalezen." + "fetchinglabel":{ + "description":"Status label", + "message":"Načítám... Prosím, čekejte." }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"V kýženém prohlížeči se přihlašte ke stejnému seznamu filtrů, jaký máte zde." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Obecné" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - klikněte pro podrobnosti" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (odstraní otravnosti na webu)" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"Na této stránce: $count$", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"V uvedeném prohlížeči načtěte stránku s reklamou." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Neplatný seznam URL. Bude smazán." }, - "filterswedish":{ - "description":"A filter list", - "message":"Švédština" + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polština" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Co je nového v poslední verzi? Viz changelog!" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Obecné nastavení" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokovat více reklam:" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "lang_russian":{ - "description":"language", - "message":"Ruština" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS obsahuje" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Zaplať kolik chceš!" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Zavřít" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Odhlášeno." + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Nechci to takhle kontrolovat" }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokovat reklamu dle její URL" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock se nebude spouštět na žádné stránce odpovídající:" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Řečtina" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Zobrazovat reklamy všude kromě těchto domén..." }, - "filterchinese":{ + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Buďte opatrní: Pokud zde uděláte chybu, spousta jiných filtrů, včetně těch oficiálních, může být také poškozena!
Přečtěte si filter syntax tutorial (anglicky), kde se dozvíte, jak přidávat pokročilé vlastní filtry a výjimky." + }, + "lang_slovak":{ "description":"language", - "message":"Čínština" + "message":"Slovenština" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Skrývat část webové stránky" + "yes":{ + "description":"A positive response to a question", + "message":"Ano" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videa a Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Máme stránku, která vám pomůže zjistit kdo stojí za AdBlockem!" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Zobrazuje se reklama také v uvedeném prohlížeči?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Co si myslíte, že bude platit pro tuto reklamu pokaždé, když navštívíte tuto stránku?" + "savebutton":{ + "description":"Save button", + "message":"Uložit" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Povolit AdBlock na této stránce" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Nepoužívat na této stránce" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Zpět" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Rumunština" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Zobrazit počet zablokovaných reklam na tlačítku AdBlock-u" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Chcete-li skrýt tlačítko, klikněte na něj pravým tlačítkem myši a vyberte příkaz Skrýt tlačítko. Můžete jej opět zobrazit zde chrome://chrome/extensions." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Seznamy filtrů blokují většinu reklam na webu. Můžete také:" + "filterisraeli":{ + "description":"language", + "message":"Hebrejština" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Zdrojový kód je volně k dispozici!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Tato funkce AdBlock-u nebude fungovat na tomto webu, protože používá zastaralou technologii. Můžete povolit nebo zakázat zdroje ručně v panelu 'Přizpůsobit' na stránce Možností." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Česky a Slovensky" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + }, + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Ostatní seznamy filtrů" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Nastavení" + }, + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Váš počítač může být ohrožen Malwarem. Klikněte zde pro více informací." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Aktualizuji se automaticky; můžete mě také aktualizovat nyní" + }, + "typeunknown":{ + "description":"A resource type", + "message":"neznámý" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Zobrazovat reklamy na webové stránce nebo doméně" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Toto odpovídá 1 položce na této stránce." + "filterturkish":{ + "description":"A filter list", + "message":"Turečtina" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Buďte opatrní: Pokud zde uděláte chybu, spousta jiných filtrů, včetně těch oficiálních, může být také poškozena!
Přečtěte si filter syntax tutorial (anglicky), kde se dozvíte, jak přidávat pokročilé vlastní filtry a výjimky." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Povolit $name$ kanál", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Čím více seznamů filtrů si přihlásíte, tím pomaleji AdBlock poběží. Použití příliš mnoha seznamů dokonce může mít za následek pád prohlížeče na některých webových stránkách. Pro potvrzení přihlášení stiskněte tlačítko OK." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Přihlaste se k odběru tohoto seznamu filtrů a zkuste to znovu: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Obecné nastavení" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Váš počítač může být ohrožen Malwarem. Klikněte zde pro více informací." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock se nebude spouštět na žádné stránce odpovídající:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Nemáme výchozí seznam filtrů pro daný jazyk.
Prosím, zkuste najít vhodný seznam pro tento jazyk $link$ nebo si tuto reklamu zablokujte pouze pro sebe na záložce 'Přizpůsobení'.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Přidat" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Jsem zkušený uživatel, ukaž mi pokročilé možnosti" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "lang_czech":{ - "description":"language", - "message":"Čeština" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klikněte na reklamu, a jám vám ji pomohu zablokovat." }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Skrýt toto tlačítko" + "typestylesheet":{ + "description":"A resource type", + "message":"definice stylu" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Aktualizuji se automaticky; můžete mě také aktualizovat nyní" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Aktualizace AdBlock-u" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Klikněte zde: Aktualizovat filtry!" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Promiňte, ale AdBlock je na této stránce zakázán jedním z vašich seznamů filtrů." }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formát: ~stranka1.cz|~stranka2.cz|~zpravy.stranka3.cz" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Chcete upozornit, když AdBlock detekuje malware?" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Poslední krok: Dle čeho rozpoznat reklamu?" + "updateddayago":{ + "description":"Label for subscription", + "message":"aktualizováno před 1 dnem" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Toto odpovídá $matchcount$ položkám na této stránce.", + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + }, + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Není vybrán žádný filtr!" + }, + "filtereasylist_plus_german":{ + "description":"language", + "message":"Němčina" + }, + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Seznamy filtrů" + }, + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Řečtina" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"aktualizováno před $seconds$ sekundami", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (odstraní otravnosti na webu)" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Nejste si jisti? Tak pouze stiskněte tlačítko 'Blokovat!' níže." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonéština" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"V uvedeném prohlížeči načtěte stránku s reklamou." }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Typ" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Dejte nám vědět na našich stránkách podpory!" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Je dostupná aktualizace pro AdBlock! Navštivte $here$ pro aktualizaci.
Poznámka: Jestli chcete abych se aktualizoval sám, jděte do Safari > Nastavení > Rozšíření > Aktualizace
a zaškrtněte možnost 'Instalovat aktualizace automaticky'.", + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokovat reklamy pouze na těchto stránkách:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Přizpůsobení" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Pro nahlášení reklamy musíte být připojen k internetu." + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Povolit $name$ kanál", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "filterturkish":{ + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Skrývat část webové stránky" + }, + "typesubdocument":{ + "description":"A resource type", + "message":"rámec" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"Turečtina" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Co to je?" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Zobrazit počet zablokovaných reklam v menu AdBlock-u" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Nahlášení reklamy" + }, + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulharština" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Nespouštět na stránkách na této doméně" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"Vlastní seznamy filtrů" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Nepřihlašujte k odběru více než potřebujete -- každý filtr navíc způsobí drobné zpomalení! Poděkování a další seznamy lze nalézt zde." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokovat více reklam:" }, - "typestylesheet":{ - "description":"A resource type", - "message":"definice stylu" + "lang_ukranian":{ + "description":"language", + "message":"Ukrajinština" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Nejste si jisti? Tak pouze stiskněte tlačítko 'Blokovat!' níže." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Typ" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Smyslem této otázky je určit, kdo by měl dostat vaše hlášení. Pokud odpovíte na tuto otázku chybně, může být zpráva zaslána nesprávným lidem a pak může být ignorována." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polština" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Doména nebo url, kde AdBlock nesmí nic blokovat" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Přidat položky do nabídky po kliknutí pravým tlačítkem myši" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Nespouštět AdBlock na..." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokovat tuto reklamu" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokovat URL obsahující tento text" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"aktualizováno před $hours$ hodinami", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Uložit" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"aktualizováno před $seconds$ sekundami", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Kontrola v prohlížeči Firefox $chrome$", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Požádal náš tým o nějaké ladící informace? Klikněte zde!" - }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Poslední krok: Dle čeho rozpoznat reklamu?" }, - "filterhungarian":{ - "description":"language", - "message":"Maďarština" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Neplatný seznam URL. Bude smazán." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Poznámka: vaše hlášení může být veřejně dostupné. Mějte to na paměti předtím, než vložíte cokoli soukromého." + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Pokračovat" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Znovu načíst stránku." + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "typepage":{ - "description":"A resource type", - "message":"stránka" + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Přizpůsobte si AdBlock" }, - "filterdutch":{ - "description":"language", - "message":"Holandština" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Žádný známý malware nenalezen." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Nezapomeňte uložit!" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Zástupné řešení pro nefunkční video na Hulu.com (vyžaduje restartování prohlížeče)" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ bude $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finština" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Zavřít" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Skrýt toto tlačítko" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokovaný element:" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Seznam filtrů pro blokování reklam" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Tento filtr je neplatný: $exception$", + "updateddaysago":{ + "description":"Label for subscription", + "message":"aktualizováno před $days$ dny", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Upozornění: Není vybrán žádný filtr!" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Chcete upozornit, když AdBlock detekuje malware?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Zobrazovat reklamy všude kromě těchto domén..." + "typeobject":{ + "description":"A resource type", + "message":"interaktivní objekt" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Tato funkce AdBlock-u nebude fungovat na tomto webu, protože používá zastaralou technologii. Můžete povolit nebo zakázat zdroje ručně v panelu 'Přizpůsobit' na stránce Možností." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Co si myslíte, že bude platit pro tuto reklamu pokaždé, když navštívíte tuto stránku?" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Zobrazit počet zablokovaných reklam v menu AdBlock-u" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Zablokovaných reklam:" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Nastavení" + "typemain_frame":{ + "description":"A resource type", + "message":"stránka" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Nespouštět AdBlock na..." + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Korejština" }, - "fetchinglabel":{ - "description":"Status label", - "message":"Načítám... Prosím, čekejte." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Vzít zpět blokace na této doméně" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Ručně upravit vlastní filtry:" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Zablokovaných reklam:" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Ukaž odkazy na seznamy filtrů" }, - "filteradblock_custom":{ + "filtereasylist":{ "description":"A filter list", - "message":"AdBlock filtry (doporučeno)" + "message":"EasyList (doporučeno)" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Přidat filtry pro jiný jazyk: " + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Krok 1: Určete, co se bude blokovat" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Lotyština" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Máme stránku, která vám pomůže zjistit kdo stojí za AdBlockem!" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Doplňky, které byly předtím vypnuty, byly opět zapnuty." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Doména:" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokovat URL obsahující tento text" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"zde" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS obsahuje" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Pro skrytí tlačítka přejděte na adresu opera://extensions a zaškrtněte 'Skrýt z panelu nástrojů'. Můžete jej znovu zobrazit odškrtnutím tohoto tlačítka." + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Jestli vidíte reklamu, neposílejte hlášení o chybě, pošlete hlášení o reklamě!" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klikněte na reklamu, a jám vám ji pomohu zablokovat." + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock je aktuální!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Znovu načíst stránku." }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Nahlásit reklamu na této stránce" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Pouze anglicky" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Používáte starou verzi AdBlock. Prosím, jděte na stránku Rozšíření, povolte 'Režim pro vývojáře' a klikněte na 'Aktualizovat rozšíření'" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock je pozastaven." }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"NEBO, prostě klikněte na toto tlačítko a my vše uděláme za Vás: Zakázat všechna ostatní rozšíření" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ruské a Ukrajinské" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Co je nového v poslední verzi? Viz changelog!" }, - "typescript":{ - "description":"A resource type", - "message":"skript" + "filterantisocial":{ + "description":"A filter list", + "message":"Anti-sociální filtr (odstraní tlačítka na sociální sítě)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Podpora AdBlock" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Hledání reklam...

Bude to trvat pouze chvilku." }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Přizpůsobte si AdBlock" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Jsem zkušený uživatel, ukaž mi pokročilé možnosti" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock je aktuální!" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"V kýženém prohlížeči se přihlašte ke stejnému seznamu filtrů, jaký máte zde." }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"Dohromady: $count$", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokování reklamy" }, - "filterisraeli":{ - "description":"language", - "message":"Hebrejština" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Promiňte, ale AdBlock je na této stránce zakázán jedním z vašich seznamů filtrů." + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Upozornění: Na všech ostatních stránkách uvidíte reklamy!
Toto má přednost před všemi ostatními filtry pro tyto stránky." }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Doplňky, které byly předtím vypnuty, byly opět zapnuty." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Vzít zpět blokace na této doméně" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Chcete vědět co stojí za AdBlock-em?" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Prosím, zadejte správný filtr a stiskněte OK" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock filtry (doporučeno)" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"aktualizováno před 1 dnem" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Co to je?" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"Na této stránce: $count$", + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "here":{ + "content":"", + "example":"here" } } }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"aktualizováno před 1 hodinou" + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"nebo AdBlock pro Chrome" }, - "optionsversion":{ - "description":"Version number", - "message":"Verze $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Autorem překladu je:" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Odstranit ze seznamu" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formát: ~stranka1.cz|~stranka2.cz|~zpravy.stranka3.cz" }, - "other":{ - "description":"Multiple choice option", - "message":"Jiný" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typehiding":{ - "description":"A resource type", - "message":"skrytý" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videa a Flash" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Seznamy filtrů" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Seznamy filtrů blokují většinu reklam na webu. Můžete také:" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Objevuje se reklama ve filmu nebo před ním nebo v jakémkoli jiném doplňku, např. ve Flashové hře?" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Pro skrytí tlačítka klikněte pravým tlačítkem na nástroje Safari a vyberte Upravit panel nástrojů, poté táhněte s AdBlock tlačítkem pryč z panelu nástrojů. Můžete jej znovu zobrazit táhnutím zpět do panelu nástrojů." }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Ostatní seznamy filtrů" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Překročili jste limit velikosti Dropboxu. Prosíme, odstraňte některé položky z Vašeho vlastního, či zakázaného filtru a zkuste to znovu." + }, + "filterhungarian":{ + "description":"language", + "message":"Maďarština" }, "orchrome":{ "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", "message":"nebo Chrome" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokovat!" - }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Dokončeno!" - }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokovat reklamu na této stránce" - }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Nechci to takhle kontrolovat" - }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" - }, - "lang_english":{ - "description":"language", - "message":"Angličtina" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Přidat" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Přizpůsobení" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Zaplať kolik chceš!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pozastavit AdBlock" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Upravit zakázané filtry:" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Jste si jist, že se chcete přihlásit k odběru $title$?", + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Toto je chyba seznamu filtrů. Nahlašte ji zde: $link$", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Otevřete stránku s doplňky pro zapnutí těch, které byly předtím zakázány." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokovaný element:" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Používat na stránkách domény" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Poznámka: vaše hlášení může být veřejně dostupné. Mějte to na paměti předtím, než vložíte cokoli soukromého." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Korejština" + "typepage":{ + "description":"A resource type", + "message":"stránka" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Stránka:" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Našel jste chybu?" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Zobrazuje se stále tato reklama?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Krok 1: Určete, co se bude blokovat" + "typeother":{ + "description":"A resource type", + "message":"jiný" }, - "catblock_disableallextensions":{ + "clickupdatefilters":{ "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Čím více seznamů filtrů si přihlásíte, tím pomaleji AdBlock poběží. Použití příliš mnoha seznamů dokonce může mít za následek pád prohlížeče na některých webových stránkách. Pro potvrzení přihlášení stiskněte tlačítko OK." - }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"nebo AdBlock pro Chrome" - }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokování reklamy" - }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" - }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "message":"Klikněte zde: Aktualizovat filtry!" }, - "filterdanish":{ + "filteritalian":{ "description":"language", - "message":"Dánština" + "message":"Italština" }, - "typesub_frame":{ - "description":"A resource type", - "message":"rámec" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Upravit" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Pro skrytí tlačítka přejděte na adresu opera://extensions a zaškrtněte 'Skrýt z panelu nástrojů'. Můžete jej znovu zobrazit odškrtnutím tohoto tlačítka." }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Hledání reklam...

Bude to trvat pouze chvilku." + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Něco se pokazilo při kontrole aktualizací." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Doména nebo url, kde AdBlock nesmí nic blokovat" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klikněte na menu Safari → Nastavení → Rozšíření." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Kontrola aktualizací (toto zabere jen pár sekund)..." + "typeobject_subrequest":{ + "description":"A resource type", + "message":"object_subrequest" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Nastavte posuvník tak, aby reklama na stránce byla blokována a zbytek stránky stále vypadal uspokojivě." + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Odeslat" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Nespouštět na stránkách na této doméně" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Stránka:" + }, + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"Načtěte znovu stránku s reklamou." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Nainstalujte prohlížeč Firefox $chrome$, pokud jej nemáte.", + "unsubscribedlabel":{ + "description":"Status label", + "message":"Odhlášeno." + }, + "typemedia":{ + "description":"A resource type", + "message":"audio/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" + "filterlatvian":{ + "description":"A filter list", + "message":"Lotyština" }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Aktualizace AdBlock-u" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokovat reklamu na této stránce" }, - "no":{ - "description":"A negative response to a question", - "message":"Ne" + "buttonblockit":{ + "description":"Block button", + "message":"Blokovat!" }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrajinština" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Zrušit blokování reklam:" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"aktualizováno před $minutes$ minutami", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Povolit odblokování specifických YouTube kanálů" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francouzština" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"V jakém jazyce je stránka napsána?" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"NEBO, prostě klikněte na toto tlačítko a my vše uděláme za Vás: Zakázat všechna ostatní rozšíření" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Odškrtněte 'Povoleno' vedle každého rozšíření kromě AdBlocku. Nechte AdBlock zapnutý." }, - "typeobject":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Nahlásit reklamu na této stránce" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Odstranit ze seznamu" + }, + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" + }, + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Nemůžeme zatím blokovat reklamy uvnitř objektů Flash nebo v jiných doplňcích. Čekáme na podporu od prohlížeče a WebKitu." + }, + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" + }, + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Nastavením posuvníku níže vyberte přesně ty stránky, kde se AdBlock nebude spouštět." + }, + "typehiding":{ "description":"A resource type", - "message":"interaktivní objekt" + "message":"skrytý" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"aktualizováno právě teď" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock je zakázán na této stránce." }, - "savebutton":{ - "description":"Save button", - "message":"Uložit" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Objevuje se reklama ve filmu nebo před ním nebo v jakémkoli jiném doplňku, např. ve Flashové hře?" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Upozornění: Na všech ostatních stránkách uvidíte reklamy!
Toto má přednost před všemi ostatními filtry pro tyto stránky." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ruské a Ukrajinské" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Zakázat tato upozornění" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Španělština" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Přihlašování k odběru seznamu filtrů..." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokovat tuto reklamu" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"aktualizováno před $days$ dny", + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." + }, + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Buďte opatrní: tento filtr blokuje všechny $elementtype$ elementy na stránce!", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"rámec" - }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (ochrana soukromí)" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Povolit režim kompatibility ClickToFlash" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Další informace o malware" + "no":{ + "description":"A negative response to a question", + "message":"Ne" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Česky a Slovensky" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Povolit AdBlock na této stránce" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Používáte starou verzi AdBlock. Prosím, jděte na stránku Rozšíření, povolte 'Režim pro vývojáře' a klikněte na 'Aktualizovat rozšíření'" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filtr, který lze později změnit v Nastavení na záložce Vlastní filtr:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock Nastavení" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Zobrazit počet zablokovaných reklam na tlačítku AdBlock-u" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Vyčistit seznam" + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Neúspěšné!" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Anti-sociální filtr (odstraní tlačítka na sociální sítě)" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pozastavit AdBlock" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Zobrazovat debug zprávy v Console Log (tohle zpomaluje AdBlock)" + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Následující filtr:
$filter$
obsahuje chybu:
$message$", + "placeholders":{ + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" + } + } }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Překročili jste limit velikosti Dropboxu. Prosíme, odstraňte některé položky z Vašeho vlastního, či zakázaného filtru a zkuste to znovu." + "lang_english":{ + "description":"language", + "message":"Angličtina" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Zrušit pozastavení AdBlock-u" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Přidat položky do nabídky po kliknutí pravým tlačítkem myši" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, můžete si zablokovat tuto reklamu pouze pro sebe v Nastavení na záložce Vlastní filtr. Díky!" }, - "filtereasylist_plus_german":{ + "lang_russian":{ "description":"language", - "message":"Němčina" + "message":"Ruština" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Buďte opatrní: tento filtr blokuje všechny $elementtype$ elementy na stránce!", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Jste si jist, že chcete odstranit $count$ blokování, které jste vytvořili na $host$?", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"zde" - }, - "yes":{ - "description":"A positive response to a question", - "message":"Ano" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Zástupné řešení pro nefunkční video na Hulu.com (vyžaduje restartování prohlížeče)" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Používáte starou verzi Safari. Získejte nejnovější verzi, abyste mohli používat tlačítko AdBlock na panelu nástrojů pro pozastavení AdBlock, spravovat chování na webových stránkách a nahlašovat reklamy. Aktualizovat nyní." }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Uložit" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (ochrana soukromí)" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"V jakém jazyce je stránka napsána?" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Jste si jist, že chcete odstranit $count$ blokování, které jste vytvořili na $host$?", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ bude $value$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "attribute":{ + "content":"$1", + "example":"class" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "typeimage":{ - "description":"A resource type", - "message":"obrázek" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Nebo zadejte URL:" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Autorem překladu je:" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Dokončeno!" + }, + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Zrušit pozastavení AdBlock-u" + }, + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Přidat filtry pro jiný jazyk: " }, "loading":{ "description":"Generic message displayed during processes that take some time", @@ -897,348 +951,334 @@ "description":"Message at the top of the blacklist options tab", "message":"Klikněte pravým tlačítkem myši na reklamu pro její zablokování -- nebo ji zablokujte ručně zde." }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Chcete-li skrýt tlačítko, klikněte na něj pravým tlačítkem myši a vyberte příkaz Skrýt tlačítko. Můžete jej opět zobrazit zde chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumunština" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Upravit zakázané filtry:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Něco se pokazilo při kontrole aktualizací." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Pro skrytí tlačítka klikněte pravým tlačítkem na nástroje Safari a vyberte Upravit panel nástrojů, poté táhněte s AdBlock tlačítkem pryč z panelu nástrojů. Můžete jej znovu zobrazit táhnutím zpět do panelu nástrojů." - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"aktualizováno před 1 minutou" - }, - "typemain_frame":{ - "description":"A resource type", - "message":"stránka" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "filtermalware":{ + "description":"A filter list", + "message":"Ochrana proti Malware-u" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Zobrazovat debug zprávy v Console Log (tohle zpomaluje AdBlock)" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Nainstalujte prohlížeč Firefox $chrome$, pokud jej nemáte.", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Nebo zadejte URL:" - }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Používáte starou verzi Safari. Získejte nejnovější verzi, abyste mohli používat tlačítko AdBlock na panelu nástrojů pro pozastavení AdBlock, spravovat chování na webových stránkách a nahlašovat reklamy. Aktualizovat nyní." - }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Zvolte jazyk -- " - }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" - }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klikněte na menu Safari → Nastavení → Rozšíření." - }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Zrušit blokování reklam:" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Překročili jste ukládací prostor, který AdBlock může použít. Prosím, odhlaste odběr některých seznamů filtrů!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Nejpopulárnější rozšíření pro Chrome s více než 40 miliony uživateli! Blokujeme reklamy na celém webu." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Zobrazuje se stále tato reklama?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Našel jste chybu?" }, - "filtermalware":{ - "description":"A filter list", - "message":"Ochrana proti Malware-u" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Další informace o malware" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Podpora" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulharština" + "typescript":{ + "description":"A resource type", + "message":"skript" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Chcete vědět co stojí za AdBlock-em?" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Neúspěšné!" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Seznamy filtrů" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filtr, který lze později změnit v Nastavení na záložce Vlastní filtr:" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Zakázat tato upozornění" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Ručně upravit vlastní filtry:" + "filterchinese":{ + "description":"language", + "message":"Čínština" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Následující filtr:
$filter$
obsahuje chybu:
$message$", + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Tento filtr je neplatný: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Přihlašování k odběru seznamu filtrů..." }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Otevřete stránku s doplňky pro zapnutí těch, které byly předtím zakázány." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Typ" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Toto odpovídá $matchcount$ položkám na této stránce.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "lang_slovak":{ - "description":"language", - "message":"Slovenština" + "updatedhourago":{ + "description":"Label for subscription", + "message":"aktualizováno před 1 hodinou" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Seznamy filtrů" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Zobrazuje se reklama také v uvedeném prohlížeči?" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Zvolte jazyk -- " }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Nepoužívat na této stránce" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Nastavte posuvník tak, aby reklama na stránce byla blokována a zbytek stránky stále vypadal uspokojivě." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokovat reklamy pouze na těchto stránkách:" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonéština" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Dejte nám vědět na našich stránkách podpory!" + "typeimage":{ + "description":"A resource type", + "message":"obrázek" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock je pozastaven." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Upravit" + }, + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Nepodařilo se načíst tento filtr!" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Překročili jste ukládací prostor, který AdBlock může použít. Prosím, odhlaste odběr některých seznamů filtrů!" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"Dohromady: $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Nemůžeme zatím blokovat reklamy uvnitř objektů Flash nebo v jiných doplňcích. Čekáme na podporu od prohlížeče a WebKitu." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Podpora" }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokovat reklamu dle její URL" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, můžete si zablokovat tuto reklamu pouze pro sebe v Nastavení na záložce Vlastní filtr. Díky!" + "buttoncancel":{ + "description":"Cancel button", + "message":"Storno" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Obecné" + "savereminder":{ + "description":"Reminder to press save", + "message":"Nezapomeňte uložit!" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "typeother":{ - "description":"A resource type", - "message":"jiný" + "optionsversion":{ + "description":"Version number", + "message":"Verze $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Odeslat" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Není vybrán žádný filtr!" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Smyslem této otázky je určit, kdo by měl dostat vaše hlášení. Pokud odpovíte na tuto otázku chybně, může být zpráva zaslána nesprávným lidem a pak může být ignorována." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Jste si jist, že se chcete přihlásit k odběru $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"neznámý" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Zdrojový kód je volně k dispozici!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Finština" + "message":"Holandština" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Prosím, zadejte správný filtr a stiskněte OK" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock je zakázán na této stránce." + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Je dostupná aktualizace pro AdBlock! Navštivte $here$ pro aktualizaci.
Poznámka: Jestli chcete abych se aktualizoval sám, jděte do Safari > Nastavení > Rozšíření > Aktualizace
a zaškrtněte možnost 'Instalovat aktualizace automaticky'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Toto odpovídá 1 položce na této stránce." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japonština" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Toto je chyba seznamu filtrů. Nahlašte ji zde: $link$", + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Vyčistit seznam" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"aktualizováno před $hours$ hodinami", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Odškrtněte 'Povoleno' vedle každého rozšíření kromě AdBlocku. Nechte AdBlock zapnutý." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Zpět" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Ukaž odkazy na seznamy filtrů" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Pouze anglicky" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Storno" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock Nastavení" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Pomozte nám rozšířit povědomí!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Nastavením posuvníku níže vyberte přesně ty stránky, kde se AdBlock nebude spouštět." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Kontrola v prohlížeči Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Nepřihlašujte k odběru více než potřebujete -- každý filtr navíc způsobí drobné zpomalení! Poděkování a další seznamy lze nalézt zde." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Povolit režim kompatibility ClickToFlash" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Kontrola aktualizací (toto zabere jen pár sekund)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Přihlaste se k odběru tohoto seznamu filtrů a zkuste to znovu: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Jiný" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Používat na stránkách domény" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"aktualizováno právě teď" + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Požádal náš tým o nějaké ladící informace? Klikněte zde!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"aktualizováno před $minutes$ minutami", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Pro nahlášení reklamy musíte být připojen k internetu." + "lang_czech":{ + "description":"language", + "message":"Čeština" }, - "filtereasylist":{ + "filterswedish":{ "description":"A filter list", - "message":"EasyList (doporučeno)" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "message":"Švédština" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Nepodařilo se načíst tento filtr!" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Podpora AdBlock" }, - "filteritalian":{ - "description":"language", - "message":"Italština" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Typ" }, - "filtereasylist_plus_spanish":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"Španělština" + "message":"Francouzština" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Pokračovat" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"aktualizováno před 1 minutou" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Jestli vidíte reklamu, neposílejte hlášení o chybě, pošlete hlášení o reklamě!" + "typesub_frame":{ + "description":"A resource type", + "message":"rámec" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Máte otázku nebo nový nápad?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - klikněte pro podrobnosti" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Upozornění: Není vybrán žádný filtr!" } } \ No newline at end of file diff --git a/_locales/da/messages.json b/_locales/da/messages.json index a232b5ca..25d9e45c 100644 --- a/_locales/da/messages.json +++ b/_locales/da/messages.json @@ -1,924 +1,893 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Raportér en reklame" + "filterdanish":{ + "description":"language", + "message":"Dansk" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Liste over reklamefiltre" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Hjælp med at sprede ordet!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Domæne:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Har du et spørgsmål eller en ny idé?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Tillad whitelisting af bestemte YouTube-kanaler" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Henter... vent venligst." + }, + "filterjapanese":{ + "description":"language", + "message":"Japansk" }, "filterannoyances":{ "description":"A filter list", "message":"Fanboy's Annoyances (fjerner irritationer på nettet)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - klik for at se mere" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ på denne side", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Ugyldig URL til liste. Den vil blive slettet." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"I den browser skal du indlæse siden med reklamen." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polsk" }, - "filterswedish":{ - "description":"A filter list", - "message":"Svensk" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Generelle indstillinger" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Type" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokér flere reklamer:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS, der skal matches" }, - "lang_russian":{ - "description":"language", - "message":"Russisk" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Fjern krydset i 'Aktivér'-feltet ud for alle udvidelser bortset fra AdBlock. Lad AdBlock forblive aktiveret." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Betal det du vil!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Jeg ønsker ikke at undersøge dette" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Fjern abonnement." + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock vil ikke køre på nogen sider der passer med:" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Græsk" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Vis rekamer overalt undtagen disse domæner..." }, - "filterchinese":{ + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Vær varsom: hvis du laver en fejl her, kan en stor del af disse og de officielle filtre blive ubrugelige!
Læs filtersyntaksguiden (engelsk) for at lære hvordan man tilføjer avancerede blacklist og whitelist filtre." + }, + "lang_slovak":{ "description":"language", - "message":"Kinesisk" + "message":"Slovakisk" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Skjul en sektion af en hjemmeside" + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Tjek i Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videoer og Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Malwarebeskyttelse" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Vises reklamen også i den browser?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Hvad tror du vil være sandt om denne reklame, hver gang du besøger denne side?" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Udeluk" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Aktivér AdBlock på denne side" + "savebutton":{ + "description":"Save button", + "message":"Gem" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Tilbage" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Benyt ikke på denne side" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Vis antal reklamer blokeret i AdBlock-knappen" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Romænsk" }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"For at skjule knappen skal du højreklikke på den og vælge 'Skjul knap'. Du kan få den frem igen ved at gå til chrome://chrome/extensions." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Filterlisterne blokerer de fleste reklamer på nettet. Du kan også:" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Kildekoden er frit tilgængelig!" + "filterisraeli":{ + "description":"language", + "message":"Hebræisk" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Denne AdBlock-funktion virker ikke på denne hjemmeside, fordi den anvender forældet teknologi. Du kan blackliste eller whiteliste ressourcer manuelt under fanen 'Tilpas' i indstillingerne." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "other":{ + "description":"Multiple choice option", + "message":"Andet" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Vis reklamer på en hjemmeside eller et domæne" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tjekkisk og slovakisk" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Det blev kun fundet 1 gang på siden." + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Vær varsom: hvis du laver en fejl her, kan en stor del af disse og de officielle filtre blive ubrugelige!
Læs filtersyntaksguiden (engelsk) for at lære hvordan man tilføjer avancerede blacklist og whitelist filtre." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Andre filtre" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Whitelist kanalen $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Indstillinger" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Generelle indstillinger" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"Din computer kan være inficeret med malware. Klik her for mere information." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock vil ikke køre på nogen sider der passer med:" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Jeg henter automatisk opdateringer; du kan også opdatere nu" + }, + "typeunknown":{ + "description":"A resource type", + "message":"ukendt" + }, + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Vis reklamer på en hjemmeside eller et domæne" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Tyrkisk" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Jo flere lister du vælger, des langsommere kører AdBlock. Bruger du for mange filtre kan browseren endda stoppe med at fungere på nogle sider. Klik OK for at abonnere på denne liste alligevel." }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Vi har i øjeblikket ikke et standardfilter for det valgte sprog.
Prøv venligst at finde en passende liste, der understøtter sproget $link$ eller bloker reklamen bare for dig selv under 'Tilpas'-fanen.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Abonnér" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Jeg er erfaren bruger, vis mig de avancerede indstillinger" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokér en reklame ud fra dens URL" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klik på reklamen, og så vil jeg guide dig igennem blokeringen af den." }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Skjul denne knap" + "typestylesheet":{ + "description":"A resource type", + "message":"stildefinition" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Jeg henter automatisk opdateringer; du kan også opdatere nu" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock-opdateringer" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Klik på denne: Opdatér mine filtre!" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Beklager, AdBlock er slået fra på denne side via et af dine filterlister." }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~side1.dk|~side2.dk|~nyheder.side3.org" + "updateddayago":{ + "description":"Label for subscription", + "message":"opdateret for 1 dag siden" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Sidste trin: Hvad gør dette til en reklame?" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Det blev fundet $matchcount$ gange på denne side.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Vi har også en side til at hjælpe dig med at finde ud af folkene bag AdBlock!" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Intet filter valgt!" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesisk" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Tysk" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Type" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Græsk" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Der er en ny opdatering til AdBlock! Tjek det ud $here$.
OBS: Hvis du vil installere opdateringer automatisk, skal du klikke på Safari > Indstillinger > Udvidelser > Opdateringer og markere 'Installér automatisk nye opdateringer'.", + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"opdateret for $seconds$ sekunder siden", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "filterturkish":{ - "description":"A filter list", - "message":"Tyrkisk" - }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Hvad er det her?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Brugerdefinerede filtreringslister" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Ikke sikker? klik blot 'Blokér!' nedenfor." }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Abonnér ikke på flere end du behøver -- hvert abonnement sløver en lille bitte smule. Credits og flere lister kan findes her (engelsk)." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"I den browser skal du indlæse siden med reklamen." }, - "typestylesheet":{ - "description":"A resource type", - "message":"stildefinition" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Lad os få det at vide på vores supportside!" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Fjern fra liste" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokér kun reklamer på disse domæner:" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Formålet med dette spørgsmål er for at fastslå, hvem der bør modtage din rapportering. Hvis du besvarer spørgsmålet forkert vil rapporten blive sendt til de forkerte folk, og måske blive ignoreret." + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polsk" + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Tilpas" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Tilføj muligheder til højrekliksmenuen" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"For at rapportere annoncer, skal du have internetforbindelse." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokér denne reklame" + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"opdateret for $hours$ timer siden", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Whitelist kanalen $name$", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"opdateret for $seconds$ sekunder siden", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Skjul en sektion af en hjemmeside" }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Har vores hold spurgt efter debug-info? Klik her for at få det!" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Vis antal reklamer blokeret i AdBlock-knappen" }, - "filterhungarian":{ + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Raportér en reklame" + }, + "filtereasylist_plus_bulgarian":{ "description":"language", - "message":"Ungarsk" + "message":"Bulgarsk" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Ugyldig URL til liste. Den vil blive slettet." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Hvad er der af nye ting i den seneste udgivelse? Tjek ændringsloggen ud." }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Bemærk: din rapport kan blive offentligt tilgængelig. Hav det i tankerne, inden du inkluderer personlige informationer." + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Benyt ikke på sider, på dette domæne" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Genindlæs siden." + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Brugerdefinerede filtreringslister" }, - "typepage":{ - "description":"A resource type", - "message":"side" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokér flere reklamer:" }, - "filterdutch":{ + "lang_ukranian":{ "description":"language", - "message":"Hollandsk" + "message":"Ukrainsk" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Husk at gemme!" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ vil være $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domænet eller URL hvor AdBlock ikke skal blokere noget" + }, + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Advarsel: der er ikke angivet noget filter!" + }, + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokér URL'er der indeholder denne tekst" }, "close":{ "description":"Generic message for buttons that close a view or window", "message":"Luk" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokeret element:" + "filtereasylist_plus_french":{ + "description":"language", + "message":"Fransk" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filteret er ugyldigt: $exception$", + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Sidste trin: Hvad gør dette til en reklame?" + }, + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Er du sikker på du vil fjerne $count$ blokeringer, som du har oprettet på $host$?", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Advarsel: der er ikke angivet noget filter!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock er slået fra på denne side." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Det ser godt ud" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Vis rekamer overalt undtagen disse domæner..." + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Denne AdBlock-funktion virker ikke på denne hjemmeside, fordi den anvender forældet teknologi. Du kan blackliste eller whiteliste ressourcer manuelt under fanen 'Tilpas' i indstillingerne." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Tilpas AdBlock" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Vis antal reklamer blokeret i AdBlock-knappen" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Ingen kendt malware fundet." }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Indstillinger" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Lad os rette, at Hulu.com videoer ikke bliver afspillet (kræver genstart af browseren)" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Benyt ikke AdBlock på..." + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finsk" }, - "fetchinglabel":{ - "description":"Status label", - "message":"Henter... vent venligst." + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Skjul denne knap" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "updateddaysago":{ + "description":"Label for subscription", + "message":"opdateret for $days$ dage siden", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } + }, + "typeobject":{ + "description":"A resource type", + "message":"interaktivt objekt" + }, + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Hvad tror du vil være sandt om denne reklame, hver gang du besøger denne side?" }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"Blokerede reklamer:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock-brugerdefinerede filtre (anbefalet)" - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Tilføj filtre for et andet sprog: " - }, - "filterlatvian":{ - "description":"A filter list", - "message":"Lettisk" + "typemain_frame":{ + "description":"A resource type", + "message":"side" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS, der skal matches" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Koreansk" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"For at skjule knappen, gå til opera://extensions og markér 'Skjul i værktøjslinjen'. Du kan vise det igen ved at afmarkére denne mulighed." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Fortryd mine blokeringer på dette domæne" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klik på reklamen, og så vil jeg guide dig igennem blokeringen af den." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Redigér dine filtre manuelt:" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Vis links til filterlisterne" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Raportér en reklame på denne side" + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (anbefalet)" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Trin 1: Find ud af hvad der skal blokeres" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Vi har også en side til at hjælpe dig med at finde ud af folkene bag AdBlock!" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Domæne:" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russisk og ukrainsk" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"her" }, - "typescript":{ + "typepopup":{ "description":"A resource type", - "message":"script" - }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock-support" - }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Tilpas AdBlock" + "message":"popup" }, "latest_version":{ "description":"On the Options > Support page, shows when there are no updates available for AdBlock", "message":"AdBlock er ajour!" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Benyt ikke på sider, på dette domæne" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Genindlæs siden." }, - "filterisraeli":{ - "description":"language", - "message":"Hebræisk" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Kun på engelsk" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Beklager, AdBlock er slået fra på denne side via et af dine filterlister." + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Du bruger en gammel version af AdBlock. Gå venligst til siden for udvidelser, aktiver 'Udviklertilstand' og klik på 'Opdater udvidelser nu'" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokér URL'er der indeholder denne tekst" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock er midlertidigt afbrudt." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Fortryd mine blokeringer på dette domæne" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Fortsæt AdBlock" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Vælg venligst det korrekte filter nedenfor, og klik OK" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial-filterliste (fjerner sociale medierknapper)" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"opdateret for 1 dag siden" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Finder reklamer...

Det tager kun et øjeblik." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock er slået fra på denne side." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ på denne side", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokér en reklame" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Ikke sikker? klik blot 'Blokér!' nedenfor." + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"opdateret for 1 time siden" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Advarsel: på alle andre sider vil reklamer blive vist!
Dette overskriver alle andre filtre for disse sider." }, - "optionsversion":{ - "description":"Version number", - "message":"Version $version$", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Der er en ny opdatering til AdBlock! Tjek det ud $here$.
OBS: Hvis du vil installere opdateringer automatisk, skal du klikke på Safari > Indstillinger > Udvidelser > Opdateringer og markere 'Installér automatisk nye opdateringer'.", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Abonnér på lister" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ønsker du at se i AdBlocks maskinrum?" }, - "other":{ - "description":"Multiple choice option", - "message":"Andet" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock-brugerdefinerede filtre (anbefalet)" }, - "typehiding":{ - "description":"A resource type", - "message":"skjuler" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Type" }, - "tabfilterlists":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Hvad er det her?" + }, + "tabgeneral":{ "description":"A tab on the options page", - "message":"Filterlister" + "message":"Generelt" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Vises reklamen i eller før film, eller et andet plugin, såsom et Flash-spil?" - }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Andre filtre" - }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"eller Chrome" + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"eller AdBlock til Chrome" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokér!" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Abonnér på lister" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Færdig!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Tak for oversættelsen til:" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokér en reklame på denne side" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~side1.dk|~side2.dk|~nyheder.side3.org" }, - "no":{ - "description":"A negative response to a question", - "message":"Nej" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Jeg ønsker ikke at undersøge dette" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videoer og Flash" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Filterlisterne blokerer de fleste reklamer på nettet. Du kan også:" }, - "lang_english":{ - "description":"language", - "message":"Engelsk" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"For at skjule knappen, skal du højreklikke på Safaris værktøjslinje og vælge Tilpas værktøjslinje, og træk knappen AdBlock ud af værktøjslinjen. Du kan vise den igen ved at trække det tilbage til værktøjslinjen." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Tilpas" + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Afbryd AdBlock midlertidigt" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"eller Chrome" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domæne for side hvor blokeringen skal virke" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Abonnér" }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Koreansk" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Betal det du vil!" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Side:" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Redigér deaktiverede filtre:" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Fundet en fejl?" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Dette er et filterlisteproblem. Rapporter det her: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Trin 1: Find ud af hvad der skal blokeres" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokeret element:" }, - "lang_czech":{ - "description":"language", - "message":"Tjekkisk" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Bemærk: din rapport kan blive offentligt tilgængelig. Hav det i tankerne, inden du inkluderer personlige informationer." }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Jo flere lister du vælger, des langsommere kører AdBlock. Bruger du for mange filtre kan browseren endda stoppe med at fungere på nogle sider. Klik OK for at abonnere på denne liste alligevel." + "typepage":{ + "description":"A resource type", + "message":"side" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"eller AdBlock til Chrome" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokér en reklame" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Vises reklamen stadig?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "typeother":{ + "description":"A resource type", + "message":"adnet" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Klik på denne: Opdatér mine filtre!" }, - "filterdanish":{ + "filteritalian":{ "description":"language", - "message":"Dansk" + "message":"Italiensk" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Redigér" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"For at skjule knappen, gå til opera://extensions og markér 'Skjul i værktøjslinjen'. Du kan vise det igen ved at afmarkére denne mulighed." }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Finder reklamer...

Det tager kun et øjeblik." + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Noget gik galt, da vi forsøgte at tjekke for nye opdateringer." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domænet eller URL hvor AdBlock ikke skal blokere noget" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klik på Safari-menuen → Indstillinger → Udvidelser." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Tjekke om der er nye opdateringer (dette bør ikke tage lang tid)..." + "typeobject_subrequest":{ + "description":"A resource type", + "message":"object_subrequest" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Skyd glideren indtil reklamen er skjult korrekt på siden, og det blokerede element ser brugbart ud." + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Side:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ i alt", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"Genindlæs siden med reklamen." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installér Firefox $chrome$ hvis du ikke har det.", + "unsubscribedlabel":{ + "description":"Status label", + "message":"Fjern abonnement." + }, + "typemedia":{ + "description":"A resource type", + "message":"lyd/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" + "filterlatvian":{ + "description":"A filter list", + "message":"Lettisk" }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock-opdateringer" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokér en reklame på denne side" }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Fjern krydset i 'Aktivér'-feltet ud for alle udvidelser bortset fra AdBlock. Lad AdBlock forblive aktiveret." + "buttonblockit":{ + "description":"Block button", + "message":"Blokér!" }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrainsk" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Stop blokeringen af reklamer:" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"opdateret for $minutes$ minutter siden", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Tillad whitelisting af bestemte YouTube-kanaler" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Fransk" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Hvilket sprog er siden i?" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Hvis du ser en reklame, skal du ikke lave en fejlrapport, men en annoncerapport istedet!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "typeobject":{ - "description":"A resource type", - "message":"interaktivt objekt" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Raportér en reklame på denne side" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"opdateret" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Fjern fra liste" }, - "savebutton":{ - "description":"Save button", - "message":"Gem" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Advarsel: på alle andre sider vil reklamer blive vist!
Dette overskriver alle andre filtre for disse sider." + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Vi kan desværre ikke blokere reklamer i Flash og andre plugins endnu. Vi afventer at dette understøttes af browseren og WebKit." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Abonnér på filterliste..." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"opdateret for $days$ dage siden", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Du kan bruge skyderen(e) nedenfor til og bestemme nøjagtig hvilke sider AdBlock ikke skal benyttes på." }, - "typesubdocument":{ + "typehiding":{ "description":"A resource type", - "message":"frame" + "message":"skjuler" }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (beskyttelse af privatliv)" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Vises reklamen i eller før film, eller et andet plugin, såsom et Flash-spil?" }, - "filterczech":{ + "filterrussian":{ "description":"Language names for a filter list", - "message":"Tjekkisk og slovakisk" - }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Du bruger en gammel version af AdBlock. Gå venligst til siden for udvidelser, aktiver 'Udviklertilstand' og klik på 'Opdater udvidelser nu'" - }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock-indstillinger" - }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Ryd op i denne liste" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial-filterliste (fjerner sociale medierknapper)" - }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Vis debuginformationer i Console Log (vil gøre AdBlock langsomere)" + "message":"Russisk og ukrainsk" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Fortsæt AdBlock" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Spansk" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokér denne reklame" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Tysk" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Pas på: dette filter blokerer alle $elementtype$ elementer på siden!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"her" + "no":{ + "description":"A negative response to a question", + "message":"Nej" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Lad os rette, at Hulu.com videoer ikke bliver afspillet (kræver genstart af browseren)" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Aktivér AdBlock på denne side" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Udeluk" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filteret, som kan ændres under Indstillinger:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Hvilket sprog er siden i?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Vis antal reklamer blokeret i AdBlock-knappen" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Fejl!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Er du sikker på du vil fjerne $count$ blokeringer, som du har oprettet på $host$?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Afbryd AdBlock midlertidigt" + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Abonnér til denne filterliste, og prøv så igen: $list_title$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "typeimage":{ - "description":"A resource type", - "message":"billede" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Tak for oversættelsen til:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"INDLÆSER..." + "lang_english":{ + "description":"language", + "message":"Engelsk" }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Højreklik på en reklame på en side for at blokere den -- eller blokér den manuelt her." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Tilføj muligheder til højrekliksmenuen" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"For at skjule knappen skal du højreklikke på den og vælge 'Skjul knap'. Du kan få den frem igen ved at gå til chrome://chrome/extensions." + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, du kan stadig blokere reklamen for dig selv på siden Indstillinger. Tak!" }, - "filtereasylist_plus_romanian":{ + "lang_russian":{ "description":"language", - "message":"Romænsk" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Redigér deaktiverede filtre:" + "message":"Russisk" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Hvis du ser en reklame, skal du ikke lave en fejlrapport, men en annoncerapport istedet!" }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Noget gik galt, da vi forsøgte at tjekke for nye opdateringer." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Du benytter en gammel version af Safari. Hent den seneste version for og benytte AdBlock-værktøjslinjen, for at afbryde AdBlock midlertidigt, godkende hjemmesider, og rapportere reklamer. Opdatér nu." }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"For at skjule knappen, skal du højreklikke på Safaris værktøjslinje og vælge Tilpas værktøjslinje, og træk knappen AdBlock ud af værktøjslinjen. Du kan vise den igen ved at trække det tilbage til værktøjslinjen." + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (beskyttelse af privatliv)" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"opdateret for 1 minut siden" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "typemain_frame":{ + "typexmlhttprequest":{ "description":"A resource type", - "message":"side" - }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" - }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"xmlhttprequest" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ vil være $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -926,255 +895,326 @@ "description":"Link for custom subscription", "message":"Eller indtast et URL:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Du benytter en gammel version af Safari. Hent den seneste version for og benytte AdBlock-værktøjslinjen, for at afbryde AdBlock midlertidigt, godkende hjemmesider, og rapportere reklamer. Opdatér nu." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Færdig!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" --Vælg sprog-- " + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Tilføj filtre for et andet sprog: " }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"INDLÆSER..." }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klik på Safari-menuen → Indstillinger → Udvidelser." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Højreklik på en reklame på en side for at blokere den -- eller blokér den manuelt her." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Stop blokeringen af reklamer:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Malwarebeskyttelse" + }, + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Vis debuginformationer i Console Log (vil gøre AdBlock langsomere)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installér Firefox $chrome$ hvis du ikke har det.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Du har overskredet den plads som AdBlock har til rådighed. Venligst fjern abonnement fra nogle af filterlisterne!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Den mest populære udvidelse til Chrome, med over 40 millioner brugere! Blokerer reklamer overalt på internettet." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Vises reklamen stadig?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Fundet en fejl?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Support" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgarsk" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Ønsker du at se i AdBlocks maskinrum?" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Ingen kendt malware fundet." + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Filterlister" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Fejl!" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Jeg er erfaren bruger, vis mig de avancerede indstillinger" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filteret, som kan ændres under Indstillinger:" + "filterchinese":{ + "description":"language", + "message":"Kinesisk" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Redigér dine filtre manuelt:" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filteret er ugyldigt: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "filteritalian":{ - "description":"language", - "message":"Italiensk" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Abonnér på filterliste..." }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Det blev fundet $matchcount$ gange på denne side.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "updatedhourago":{ + "description":"Label for subscription", + "message":"opdateret for 1 time siden" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Hvad er der af nye ting i den seneste udgivelse? Tjek ændringsloggen ud." + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "lang_slovak":{ - "description":"language", - "message":"Slovakisk" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" --Vælg sprog-- " }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Vises reklamen også i den browser?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Skyd glideren indtil reklamen er skjult korrekt på siden, og det blokerede element ser brugbart ud." }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Benyt ikke på denne side" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesisk" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokér kun reklamer på disse domæner:" + "typeimage":{ + "description":"A resource type", + "message":"billede" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Lad os få det at vide på vores supportside!" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Redigér" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock er midlertidigt afbrudt." + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Fejl ved hentning af filter!" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Du har overskredet den plads som AdBlock har til rådighed. Venligst fjern abonnement fra nogle af filterlisterne!" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ i alt", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Vi kan desværre ikke blokere reklamer i Flash og andre plugins endnu. Vi afventer at dette understøttes af browseren og WebKit." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Support" }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokér en reklame ud fra dens URL" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, du kan stadig blokere reklamen for dig selv på siden Indstillinger. Tak!" + "buttoncancel":{ + "description":"Cancel button", + "message":"Annullér" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Generelt" + "savereminder":{ + "description":"Reminder to press save", + "message":"Husk at gemme!" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "optionsversion":{ + "description":"Version number", + "message":"Version $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeother":{ - "description":"A resource type", - "message":"adnet" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Intet filter valgt!" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Formålet med dette spørgsmål er for at fastslå, hvem der bør modtage din rapportering. Hvis du besvarer spørgsmålet forkert vil rapporten blive sendt til de forkerte folk, og måske blive ignoreret." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Liste over reklamefiltre" }, - "typeunknown":{ - "description":"A resource type", - "message":"ukendt" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Kildekoden er frit tilgængelig!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Finsk" + "message":"Hollandsk" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Vælg venligst det korrekte filter nedenfor, og klik OK" }, - "typemedia":{ - "description":"A resource type", - "message":"lyd/video" + "yes":{ + "description":"A positive response to a question", + "message":"Ja" }, - "filterjapanese":{ - "description":"language", - "message":"Japansk" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Det blev kun fundet 1 gang på siden." }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Dette er et filterlisteproblem. Rapporter det her: $link$", + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + }, + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Ryd op i denne liste" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"opdateret for $hours$ timer siden", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Fejl ved hentning af filter!" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Tilbage" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Vis links til filterlisterne" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Kun på engelsk" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Annullér" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock-indstillinger" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Hjælp med at sprede ordet!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Du kan bruge skyderen(e) nedenfor til og bestemme nøjagtig hvilke sider AdBlock ikke skal benyttes på." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Tjek i Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Abonnér ikke på flere end du behøver -- hvert abonnement sløver en lille bitte smule. Credits og flere lister kan findes her (engelsk)." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Abonnér til denne filterliste, og prøv så igen: $list_title$", + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Tjekke om der er nye opdateringer (dette bør ikke tage lang tid)..." + }, + "filterhungarian":{ + "description":"language", + "message":"Ungarsk" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domæne for side hvor blokeringen skal virke" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"opdateret" + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Har vores hold spurgt efter debug-info? Klik her for at få det!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"opdateret for $minutes$ minutter siden", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"For at rapportere annoncer, skal du have internetforbindelse." + "lang_czech":{ + "description":"language", + "message":"Tjekkisk" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Har du et spørgsmål eller en ny idé?" + "filterswedish":{ + "description":"A filter list", + "message":"Svensk" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock-support" }, - "yes":{ - "description":"A positive response to a question", - "message":"Ja" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Type" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spansk" + "typesubdocument":{ + "description":"A resource type", + "message":"frame" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Det ser godt ud" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"opdateret for 1 minut siden" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (anbefalet)" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - klik for at se mere" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Benyt ikke AdBlock på..." } } \ No newline at end of file diff --git a/_locales/de/messages.json b/_locales/de/messages.json index 0a6d9784..2c51f702 100644 --- a/_locales/de/messages.json +++ b/_locales/de/messages.json @@ -1,1510 +1,1550 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Screenshot anhängen:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Keine bekannte Malware gefunden." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Abonnieren Sie in diesem Browser dieselben Filterlisten, die Sie hier abonniert haben." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Haben Sie eine Frage oder eine Idee für AdBlock?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Rufen Sie die Seite mit Werbung im gewählten Browser auf." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Einstellungen" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Schwedisch" + "message":"EasyList (empfohlen)" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Weitere Werbung entfernen:" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ auf dieser Seite", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"russisch" + "message":"polnisch" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Abonnement beendet." + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"zutreffendes CSS" }, - "filterchinese":{ - "description":"language", - "message":"chinesisch" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Ausnahme hinzufügen" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial Filterliste (entfernt Buttons von sozialen Netzwerken)" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Nicht überprüfen" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Haben Sie Werbung auf einer Webseite entdeckt? Wir werden Ihnen helfen den richtigen Ort zu finden um diese zu melden!" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Achtung: Sollten Sie hier einen Fehler machen, können viele andere Filter sowie die Filter der Filterlisten beschädigt werden!
Lesen Sie zuerst das Filtersyntax-Tutorial, um zu lernen, wie man eigene Black- und Whitelistfilter erstellt und hinzufügt." }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Anzahl geblockter Werbung am AdBlock Button anzeigen" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Erscheint die Werbung auch in diesem Browser?" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Der Quellcode ist frei verfügbar." + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Falls Sie Werbung wie diese nicht angezeigt bekommen möchten, dann sollten Sie möglicherweise die \"Akzeptable Werbung\"-Filter deaktiviert lassen." }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"vor 1 Minute aktualisiert" + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"Litauisch" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Filterlistenabruf fehlgeschlagen!" + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Bitte abonnieren Sie diese Filterliste und versuchen Sie es erneut: $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } + }, + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"Ihr Computer ist möglicherweise mit Malware infiziert. Klicken Sie hier für weitere Informationen." }, - "linkblockadbyurl":{ + "linkunblock":{ "description":"Link on the 'Customize' tab", - "message":"Werbung über ihre Adresse entfernen" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Diesen Button ausblenden" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Aktualisierungen werden automatisch abgerufen. Zusätzlich können Sie auch jetzt aktualisieren" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~seite1.de|~seite2.com|~news.seite3.org" + "message":"Werbung auf einer Seite oder einer bestimmten Adresse anzeigen" }, - "filtereasylist_plus_estonian":{ + "lang_slovak":{ "description":"language", - "message":"Estnisch" + "message":"slowakisch" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Typ" + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Installieren Sie Adblock Plus für Firefox $chrome$, falls Sie es noch nicht installiert haben.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Es ist ein Update für AdBlock verfügbar! Klicken Sie $here$ um AdBlock zu aktualisieren.
Hinweis: Um Updates automatisch zu erhalten, klicken Sie auf Safari > Einstellungen ... > Erweiterungen > Updates
und aktivieren die Option 'Updates automatisch installieren'.", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"AdBlock hat keine Filterliste für diese Sprache integriert.
Bitte versuchen Sie $link$ eine passende Liste zu finden, die für diese Sprache ausgelegt ist oder entfernen Sie die Werbung im Tab 'Anpassen' der AdBlock-Einstellungen.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "link":{ + "content":"", + "example":"here" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Mehr Informationen" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klicken Sie auf die Werbung und dieser Assistent wird Ihnen dabei helfen, die Werbung zu entfernen." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "topframe":{ + "description":"Resource list page: frame type", + "message":"Top-Frame" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Abonnieren Sie nicht mehr Filterlisten, als Sie wirklich benötigen -- jede weitere Filterliste verlangsamt den Browser etwas! Credits und weitere Filterlisten finden Sie hier." + "typestylesheet":{ + "description":"A resource type", + "message":"css" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Diese AdBlock Funktion funktioniert auf dieser Seite nicht, da die Seite eine veraltete Technologie nutzt. Sie können Ressourcen manuell unter \"AdBlock anpassen\" in den AdBlock Einstellungen aktivieren und deaktivieren." + "typeunknown":{ + "description":"A resource type", + "message":"unbekannt" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"polnisch" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"AdBlock ist durch eine Ihrer Filterlisten auf dieser Seite deaktiviert." }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Erfahren Sie mehr über das \"Akzeptable Werbung-Programm\"." + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"vor $seconds$ Sekunden aktualisiert", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Drittanbieter" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Warnung: Kein Filter angegeben!" }, - "filterhungarian":{ + "filtereasylist_plus_greek":{ "description":"language", - "message":"ungarisch" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Achtung: Ihr Bericht kann öffentlich zugänglich sein. Bitte beachten Sie dies, bevor Sie etwas Privates in Ihren Bericht einfügen." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Bitte deaktivieren Sie einige Filterlisten. Mehr Informationen dazu finden Sie in den AdBlock-Einstellungen." + "message":"griechisch" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Filterherkunft:\n$list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Sie benutzen eine veraltete Version von AdBlock. Bitte rufen Sie die Erweiterungen-Seite auf, aktivieren Sie den \"Entwicklermodus\" und klicken Sie auf \"Erweiterungen jetzt aktualisieren\"." }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"AdBlock ist durch eine Ihrer Filterlisten auf dieser Seite deaktiviert." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Name" }, - "filtericelandic":{ - "description":"language", - "message":"Isländisch" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Übergangslösung für nicht startende Videos auf Hulu.com aktivieren (erfordert Neustart des Browsers)" }, "blacklisterwarningnofilter":{ "description":"Warns the user that no filter was specified", "message":"Warnung: kein Filter angegeben!" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock ist auf dieser Seite deaktiviert." + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Eigene Filter" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Sollten Sie Werbung angezeigt bekommen, senden Sie bitte keinen Fehlerbericht sondern melden Sie Werbung hier!" + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Haben Sie Werbung auf einer Webseite entdeckt? Wir werden Ihnen helfen den richtigen Ort zu finden um diese zu melden!" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Werbung auf allen Seiten anzeigen, außer auf diesen Domains..." + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Einstellungen" + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estnisch" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" - }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." - }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Anzahl entfernter Werbung:" - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Filterlisten für andere Sprachen hinzufügen: " - }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klicken Sie auf die Werbung und dieser Assistent wird Ihnen dabei helfen, die Werbung zu entfernen." - }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" - }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "catblock_tabcustomizetitle":{ + "tabcustomizetitle":{ "description":"Title of the customize tab", - "message":"Customize CatBlock" - }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Toll! Alles klar!" + "message":"AdBlock anpassen" }, - "other":{ - "description":"Multiple choice option", - "message":"nichtgelistete Sprache" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"bulgarisch" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock Support" + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Ressource mit Ausnahmeregel" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"AdBlock anpassen" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Content Blocking Filterlimit überschritten" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Speichern der hochgeladenen Datei fehlgeschlagen." + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Bitte geben Sie einen korrekten Filter ein und bestätigen Sie mit OK" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"AdBlock deaktivieren auf..." }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Schritt 1: Herausfinden, was entfernt werden soll" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"URLs mit diesem Text blockieren" }, - "filterdanish":{ - "description":"language", - "message":"dänisch" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Schließen" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ auf dieser Seite", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"In Firefox $chrome$ überprüfen", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Subframe" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Letzter Schritt: Was macht dies zu Werbung?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"vor 1 Stunde aktualisiert" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Sollten Sie Werbung angezeigt bekommen, senden Sie bitte keinen Fehlerbericht sondern melden Sie Werbung hier!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"koreanisch" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"oder Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Name" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Die beliebteste Chrome-Erweiterung, mit über 40 Millionen Nutzern! Entfernt Werbung im ganzen Internet." - }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Zeige alle Anfragen" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Warum senden Sie uns nicht einfach einen Fehlerbericht?" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Nicht überprüfen" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"finnisch" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "typescript":{ + "description":"A resource type", + "message":"skript" }, - "yes":{ - "description":"A positive response to a question", - "message":"Ja" + "lang_ukranian":{ + "description":"language", + "message":"ukrainisch" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Selbst erstellte Filter für diese Domain wieder entfernen" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Keine bekannte Malware gefunden." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Eigene Filter" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Bitte deaktivieren Sie einige Filterlisten. Mehr Informationen dazu finden Sie in den AdBlock-Einstellungen." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"AdBlock pausieren" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Eine Liste der Mitwirkenden von AdBlock finden Sie unter \"Mitwirkende\"." }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Sind Sie sicher, dass Sie die $title$ Filterliste abonnieren möchten?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"hier" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Wo ist genau auf dieser Seite ist die Werbung? Wie sieht sie aus?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"oder AdBlock für Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Seite neu laden" }, - "typestylesheet":{ - "description":"A resource type", - "message":"css" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"In welcher Sprache ist die Seite verfasst?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock ist pausiert." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Content Blocking Filterlimit überschritten" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"AdBlock wieder starten" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Suche nach Werbung...

Dies dauert nur einen kurzen Moment." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domain oder Adresse, für die AdBlock deaktiviert sein soll" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock ist auf dieser Seite deaktiviert." }, - "typescript":{ - "description":"A resource type", - "message":"skript" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Abonnieren Sie in diesem Browser dieselben Filterlisten, die Sie hier abonniert haben." }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ gesamt", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Werbung entfernen" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Achtung: Sie werden auf allen anderen Seiten Werbung sehen!
Dieser Filter überschreibt alle anderen Filter für diese Seiten." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Es ist ein Update für AdBlock verfügbar! Klicken Sie $here$ um AdBlock zu aktualisieren.
Hinweis: Um Updates automatisch zu erhalten, klicken Sie auf Safari > Einstellungen ... > Erweiterungen > Updates
und aktivieren die Option 'Updates automatisch installieren'.", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "here":{ + "content":"", + "example":"here" } } }, - "no":{ - "description":"A negative response to a question", - "message":"Nein" - }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Etwas ist schief gelaufen. Es wurden keine Ressourcen übermittelt. Diese Seite wird sich nun schließen. Versuchen Sie die Webseite neu zu laden." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Fertig!" }, - "lang_ukranian":{ - "description":"language", - "message":"ukrainisch" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock-Standardfilter (empfohlen)" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"vor $minutes$ Minuten aktualisiert", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Die \"Akzeptable Werbung\"-Filterliste ist nicht länger abonniert." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Malware-Schutz" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Typ" }, - "savebutton":{ - "description":"Save button", - "message":"Speichern" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Mehr Informationen" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Achtung: Sie werden auf allen anderen Seiten Werbung sehen!
Dieser Filter überschreibt alle anderen Filter für diese Seiten." + "filterjapanese":{ + "description":"language", + "message":"japanisch" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Diese Benachrichtigungen deaktivieren" + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Filterherkunft:\n$list$", + "placeholders":{ + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" + } + } }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Filterliste abonnieren..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Filterlisten abonnieren" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Sie benutzen eine veraltete Version von AdBlock. Bitte rufen Sie die Erweiterungen-Seite auf, aktivieren Sie den \"Entwicklermodus\" und klicken Sie auf \"Erweiterungen jetzt aktualisieren\"." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Domain:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock-Einstellungen" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Filterlisten für andere Sprachen hinzufügen: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Zutreffender Filter" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Überprüfung auf Malware die Werbung einfügen könnte:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Die Filterlisten entfernen die meiste Werbung im Internet. Sie können außerdem:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Debug-Berichte in der Fehlerkonsole anzeigen (verlangsamt AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Um den Button auszublenden klicken Sie mit einem Rechtsklick auf die Safari Symbolleiste, klicken auf \"Symbolleiste anpassen ...\" und ziehen dann den AdBlock Button aus der Symbolleiste. Um den Button wieder einzublenden ziehen Sie den Button einfach wieder zurück auf die Symbolleiste." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Sie haben die Dateigrößenbeschränkung von Dropbox überschritten. Bitte entfernen Sie einige Einträge aus Ihrer benutzerdefinierten Filterliste, und versuchen Sie es erneut." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"AdBlock wieder starten" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Übergangslösung für nicht startende Videos auf Hulu.com aktivieren (erfordert Neustart des Browsers)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Ausnahme hinzufügen" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Deaktivieren Sie alle Erweiterungen außer AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Übersetzung von:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"LÄDT..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Klicken Sie mit einem Rechtsklick auf Seiten mit Werbung, um diese zu entfernen -- oder entfernen Sie die Werbung hier manuell." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Abonnieren" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Hinweis: Whitelisting (Werbung zulassen auf) einer Seite oder Webseite wird nicht unterstützt wenn Safari Content Blocking aktiviert ist." }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Wir werden Sie nur im Falle von fehlenden Informationen kontaktieren." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Deaktivierte Filter bearbeiten:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Entferntes Element:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"seite" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Safari Content Blocking aktivieren" + "typeother":{ + "description":"A resource type", + "message":"sonstiges" }, - "disableaa":{ - "description":"Section header on the ad report page", - "message":"Überprüfung der \"Akzeptable Werbung\"-Filter:" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Aktualisieren Sie Ihre Filterlisten: Filterlisten aktualisieren" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Um den Button auszublenden klicken Sie mit einem Rechtsklick auf die Safari Symbolleiste, klicken auf \"Symbolleiste anpassen ...\" und ziehen dann den AdBlock Button aus der Symbolleiste. Um den Button wieder einzublenden ziehen Sie den Button einfach wieder zurück auf die Symbolleiste." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Ausgeblendetes Element" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Um den Button auszublenden, gehen Sie auf opera://extensions, und aktivieren Sie die Option \"In der Symbolleiste ausblenden\". Um den Button wieder einzublenden, deaktivieren Sie die Option." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"seite" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Seite:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Fertig! Die Seite mit der Werbung wurde neu geladen. Bitte überprüfen Sie, ob die Werbung nun von der Seite entfernt ist. Kommen Sie dann zurück auf diese Seite und beantworten Sie die untenstehende Frage." + "buttonblockit":{ + "description":"Block button", + "message":"Entfernen!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"...oder geben Sie eine Filterlistenadresse ein:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Zulassen von Werbung auf bestimmten YouTube-Kanälen aktivieren" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Sie benutzen eine veraltete Version von Safari. Laden Sie sich die neueste Version von Safari herunter um mit dem AdBlock Toolbar-Button AdBlock pausieren, Ausnahmeregeln für Webseiten erstellen und Werbung melden zu können. Jetzt herunterladen." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klicken Sie auf Safari (Menübar) → Einstellungen ... → Erweiterungen." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"AdBlock auf Seiten deaktivieren:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Werbung in Flash oder anderen Plugins kann (noch) nicht entfernt werden. Es wird noch auf die Unterstützung durch den Browser und WebKit gewartet." }, - "buttonblockit":{ - "description":"Block button", - "message":"Entfernen!" + "filterhungarian":{ + "description":"language", + "message":"ungarisch" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Wird die Werbung noch angezeigt?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Diese Werbung entfernen" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"bulgarisch" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Gut! Lassen Sie uns nun herausfinden welche Erweiterung das Problem verursacht. Aktivieren Sie eine Erweiterung nach der anderen. Die Erweiterung die die Werbung wieder erscheinen lässt muss deinstalliert werden um die Werbung endgültig zu entfernen." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"AdBlock auf dieser Seite aktivieren" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Anzahl geblockter Werbung am AdBlock Button anzeigen" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Fehlgeschlagen!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Filter manuell bearbeiten:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"AdBlock pausieren" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"italienisch" + "message":"englisch" }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"AdBlock-Rechtsklickmenü aktivieren" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Typ" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"'Adblock Warning Removal'-Filterliste (entfernt Warnungen über die Benutzung von Werbe-Blockern)" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Achtung: Sollten Sie hier einen Fehler machen, können viele andere Filter sowie die Filter der Filterlisten beschädigt werden!
Lesen Sie zuerst das Filtersyntax-Tutorial, um zu lernen, wie man eigene Black- und Whitelistfilter erstellt und hinzufügt." + "typemain_frame":{ + "description":"A resource type", + "message":"seite" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Filterlisten abonnieren" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Sind Sie sicher, dass Sie $count$ Filter entfernen wollen, die Sie für $host$ erstellt haben?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Sie können dies wieder aktivieren und die Webseiten die Sie mögen unterstützen indem Sie weiter unten \"Einige nicht aufdringliche Werbung zulassen\" aktivieren." + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legende: " }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Erscheint die Werbung auch in diesem Browser?" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Ausnahmeregel für diese Seite hinzufügen" + "updatedminutesago":{ + "description":"Label for subscription", + "message":"vor $minutes$ Minuten aktualisiert", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } }, - "filtereasylist_plus_lithuania":{ + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Screenshot anhängen:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Litauisch" + "message":"rumänisch" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Teilen Sie uns Ihre Idee oder Ihre Frage auf unserer Support-Seite mit." + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Deaktivierte Filter bearbeiten:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock ist pausiert." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Subframe" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Werbung in Flash oder anderen Plugins kann (noch) nicht entfernt werden. Es wird noch auf die Unterstützung durch den Browser und WebKit gewartet." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Laden Sie die Seite mit der Werbung neu." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Safari Content Blocking aktivieren" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Die Änderungen der aktuellen Version von AdBlock können im Changelog eingesehen werden." + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installieren Sie Firefox $chrome$, falls Sie es noch nicht installiert haben.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Falls Sie Werbung wie diese nicht angezeigt bekommen möchten, dann sollten Sie möglicherweise die \"Akzeptable Werbung\"-Filter deaktiviert lassen." + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Filterlisten" }, - "typeother":{ - "description":"A resource type", - "message":"sonstiges" + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Datei ist zu groß. Bitte stellen Sie sicher, dass Ihre Datei kleiner als 10 MB ist." }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Warnung: Kein Filter angegeben!" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Erweiterte Einstellungen anzeigen (für erfahrene Nutzer)" }, - "typeunknown":{ - "description":"A resource type", - "message":"unbekannt" + "filterchinese":{ + "description":"language", + "message":"chinesisch" }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Der Filter ist ungültig: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "filterjapanese":{ - "description":"language", - "message":"japanisch" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Filterliste abonnieren..." }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Einige nicht aufdringliche Werbung zulassen" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Öffnen Sie Erweiterungen-Seite um die zuvor deaktivierten Erweiterungen wieder zu aktivieren." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Abbrechen" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Diese Benachrichtigungen deaktivieren" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Sie können hier genau einstellen, auf welchen Seiten AdBlock deaktiviert sein soll." + "filterturkish":{ + "description":"A filter list", + "message":"Türkisch" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"In Firefox $chrome$ überprüfen", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "updatedhourago":{ + "description":"Label for subscription", + "message":"vor 1 Stunde aktualisiert" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Um Werbung zu melden muss eine Internetverbindung bestehen." + "typesubdocument":{ + "description":"A resource type", + "message":"frame" }, - "filtereasylist":{ + "filtereasylist_plus_indonesian":{ "description":"A filter list", - "message":"EasyList (empfohlen)" + "message":"Indonesisch" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "typeimage":{ + "description":"A resource type", + "message":"grafik" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ gesamt", "placeholders":{ - "example":{ - "content":"346406" + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Werbung melden" - }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Filterlisten für Werbung" + "buttoncancel":{ + "description":"Cancel button", + "message":"Abbrechen" }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Wie?" + "savereminder":{ + "description":"Reminder to press save", + "message":"Vergessen Sie nicht zu speichern!" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Zulassen von Werbung auf bestimmten YouTube-Kanälen aktivieren" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Drittanbieter" + "typeselector":{ + "description":"A resource type", + "message":"Selektor" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (entfernt störende/lästige Inhalte auf Webseiten)" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - für weitere Optionen bitte klicken" + "filtericelandic":{ + "description":"language", + "message":"Isländisch" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"vor $hours$ Stunden aktualisiert", + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Sind Sie sicher, dass Sie die $title$ Filterliste abonnieren möchten?", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"russisch und ukrainisch" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Werbung nur auf diesen Seiten entfernen:" }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"AdBlock erlauben anonyme Filterlistennutzung und andere anonyme Nutzungsdaten zu sammeln" + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Geladen auf der Seite mit dieser Domain:\n$domain$", + "placeholders":{ + "domain":{ + "content":"$1", + "example":"example.com" + } + } }, "enableotherextensionscomplete":{ "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", "message":"Die zuvor deaktivierten Erweiterungen wurden wieder aktiviert." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"griechisch" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "lang_slovak":{ - "description":"language", - "message":"slowakisch" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Filter überprüfen und fehlerhafte Filter entfernen" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videos und Flash" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Teilen Sie es mit ihren Freunden!" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Welches Merkmal könnte diese Werbung bei jedem Besuch der Seite haben?" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"AdBlock auf dieser Seite aktivieren" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Zurück" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock-Einstellungen" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Die Filterlisten entfernen die meiste Werbung im Internet. Sie können außerdem:" + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Abonnieren Sie nicht mehr Filterlisten, als Sie wirklich benötigen -- jede weitere Filterliste verlangsamt den Browser etwas! Credits und weitere Filterlisten finden Sie hier." }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Werbung auf einer Seite oder einer bestimmten Adresse anzeigen" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Updates werden abgefragt (dauert nur wenige Sekunden)..." }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Dies trifft auf 1 Element dieser Seite zu." + "updatedrightnow":{ + "description":"Label for subscription", + "message":"jetzt aktualisiert" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Teil einer Seite ausblenden" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Klicken Sie mit einem Rechtsklick auf Seiten mit Werbung, um diese zu entfernen -- oder entfernen Sie die Werbung hier manuell." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Werbung auf $name$ Kanal zulassen", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Überprüfung auf Malware die Werbung einfügen könnte:" + }, + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock Support" + }, + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Typ" + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Verschieben Sie den Regler so lange nach rechts, bis die Werbung komplett entfernt ist und der restliche Teil der Seite noch normal aussieht." + }, + "updatedminuteago":{ + "description":"Label for subscription", + "message":"vor 1 Minute aktualisiert" + }, + "typesub_frame":{ + "description":"A resource type", + "message":"frame" + }, + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Blockierte Ressource" + }, + "filterdanish":{ + "description":"language", + "message":"dänisch" + }, + "disableaa":{ + "description":"Section header on the ad report page", + "message":"Überprüfung der \"Akzeptable Werbung\"-Filter:" + }, + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Sie können dies wieder aktivieren und die Webseiten die Sie mögen unterstützen indem Sie weiter unten \"Einige nicht aufdringliche Werbung zulassen\" aktivieren." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Abrufen... bitte warten." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Ungültige Filterlistenadresse. Dieser Filterlisteneintrag wird gelöscht." }, "generaloptions":{ "description":"Title of first tab page", "message":"Allgemeine Einstellungen" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock wird auf allen Seiten deaktiviert, auf die folgendes zutrifft:" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"AdBlock hat keine Filterliste für diese Sprache integriert.
Bitte versuchen Sie $link$ eine passende Liste zu finden, die für diese Sprache ausgelegt ist oder entfernen Sie die Werbung im Tab 'Anpassen' der AdBlock-Einstellungen.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Entfernen Sie bei allen Erweiterungen das Häkchen der \"Aktiviert\"-Checkbox außer bei AdBlock. Lassen Sie AdBlock aktiviert." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Abonnieren" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Rufen Sie die Seite mit Werbung im gewählten Browser auf." }, - "advanced_options2":{ + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Werbung auf allen Seiten anzeigen, außer auf diesen Domains..." + }, + "catblock_debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Erweiterte Einstellungen anzeigen (für erfahrene Nutzer)" + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtereasylist_plus_spanish":{ + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." + }, + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Um den Button zu verbergen, klicken Sie mit einem Rechtsklick auf den Button und wählen Sie 'Schaltfläche verbergen'. Der Button kann unter chrome://chrome/extensions wieder aktiviert werden." + }, + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "filterisraeli":{ "description":"language", - "message":"spanisch" + "message":"israelisch" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Geladen auf der Seite mit dieser Domain:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Diese AdBlock Funktion funktioniert auf dieser Seite nicht, da die Seite eine veraltete Technologie nutzt. Sie können Ressourcen manuell unter \"AdBlock anpassen\" in den AdBlock Einstellungen aktivieren und deaktivieren." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Aktualisieren Sie Ihre Filterlisten: Filterlisten aktualisieren" + "filterczech":{ + "description":"Language names for a filter list", + "message":"tschechisch und slowakisch" + }, + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Alle anderen Erweiterungen wurden deaktiviert. Die Seite mit Werbung wird nun neu geladen. Eine Sekunde bitte." + }, + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Andere Filterlisten" + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Aktualisierungen werden automatisch abgerufen. Zusätzlich können Sie auch jetzt aktualisieren" + }, + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Zeige alle Anfragen" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Je mehr Filterlisten Sie abonnieren, desto langsamer läuft AdBlock. Zuviele Filterlistenabonnements können sogar zum Browsercrash auf einigen Seiten führen. Klicken Sie auf OK, um diese Liste trotzdem zu abonnieren." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Letzter Schritt: Was macht dies zu Werbung?" - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Dies trifft auf $matchcount$ Elemente dieser Seite zu.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Toll! Alles klar!" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Eine Liste der Mitwirkenden von AdBlock finden Sie unter \"Mitwirkende\"." + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesisch" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock Updates" }, - "filterturkish":{ - "description":"A filter list", - "message":"Türkisch" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Erfahren Sie mehr über das \"Akzeptable Werbung-Programm\"." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Werbung entfernen" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Soll AdBlock Sie benachrichtigen falls Malware entdeckt wird?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Benutzerdefinierte Filterlisten" + "updateddayago":{ + "description":"Label for subscription", + "message":"vor 1 Tag aktualisiert" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"Frame-URL: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Der Zweck dieser Frage ist herauszufinden wer Ihren Bericht erhalten soll. Sollten Sie diese Frage falsch beantworten wird der Bericht an die falschen Personen gesendet und möglicherweise ignoriert." + "filtereasylist_plus_german":{ + "description":"language", + "message":"deutsch" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"AdBlock-Rechtsklickmenü aktivieren" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "typeselector":{ - "description":"A resource type", - "message":"Selektor" + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Der Dateiname ist zu lang. Bitte geben Sie Ihrer Datei einen kürzeren Namen." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Diese Werbung entfernen" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"vor $seconds$ Sekunden aktualisiert", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Hat unser Team Sie nach Debug-Informationen gefragt? Klicken Sie hier um die Informationen anzuzeigen." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Ausnahmeregel für diese Seite hinzufügen" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"AdBlock deaktivieren auf..." + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Teilen Sie uns Ihre Idee oder Ihre Frage auf unserer Support-Seite mit." }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Werbung zu melden ist freiwillig. Es hilft Anderen da Filterlisten-Betreiber die Werbung für alle anderen Benutzer blocken können. Es ist in Ordnung falls Sie dies derzeit nicht tun möchten. Schließen Sie einfach diese Seiten und entfernen Sie die Werbung nur für Sie selbst." + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Ausgeblendetes Element" + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Seite neu laden" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Fertig! Die Seite mit der Werbung wurde neu geladen. Bitte überprüfen Sie, ob die Werbung nun von der Seite entfernt ist. Kommen Sie dann zurück auf diese Seite und beantworten Sie die untenstehende Frage." }, - "typepage":{ - "description":"A resource type", - "message":"seite" + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Alle Ressourcen" }, - "filterdutch":{ - "description":"language", - "message":"niederländisch" + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Werbung auf $name$ Kanal zulassen", + "placeholders":{ + "name":{ + "content":"$1", + "example":"Name of channel" + } + } }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Der Dateiname ist zu lang. Bitte geben Sie Ihrer Datei einen kürzeren Namen." + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Ressource" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Vergessen Sie nicht zu speichern!" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Updates werden abgefragt (dauert nur wenige Sekunden)..." + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Anzahl geblockter Werbung im AdBlock Menü anzeigen" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Allgemein" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Werbung melden" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Bitte abonnieren Sie diese Filterliste und versuchen Sie es erneut: $list_title$", - "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" - } - } + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Wie?" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Soll AdBlock Sie benachrichtigen falls Malware entdeckt wird?" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"AdBlock auf Seiten dieser Domain deaktivieren" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Benutzerdefinierte Filterlisten" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Weitere Werbung entfernen:" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Anzahl geblockter Werbung im AdBlock Menü anzeigen" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Domain:" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domain oder Adresse, für die AdBlock deaktiviert sein soll" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock-Standardfilter (empfohlen)" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Die \"Akzeptable Werbung\"-Filterliste ist nicht länger abonniert." }, - "filterlatvian":{ + "filterannoyances":{ "description":"A filter list", - "message":"Lettisch" - }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Stellen Sie sicher, dass Sie die richtige Sprach-Filterliste(n) benutzen:" + "message":"Fanboy's Annoyances (entfernt störende/lästige Inhalte auf Webseiten)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"zutreffendes CSS" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock hat einen Download von einer Website blockiert die für die Verbreitung von Malware bekannt ist." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Um den Button auszublenden, gehen Sie auf opera://extensions, und aktivieren Sie die Option \"In der Symbolleiste ausblenden\". Um den Button wieder einzublenden, deaktivieren Sie die Option." + "savebutton":{ + "description":"Save button", + "message":"Speichern" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Nicht sicher? Klicken Sie einfach auf 'Entfernen!'." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Zutreffender Filter" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Abrufen... bitte warten." + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Alle Ressourcen" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Der Zweck dieser Frage ist herauszufinden wer Ihren Bericht erhalten soll. Sollten Sie diese Frage falsch beantworten wird der Bericht an die falschen Personen gesendet und möglicherweise ignoriert." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"Keine Updates für AdBlock verfügar." + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Sieht gut aus!" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"AdBlock auf Seiten dieser Domain deaktivieren" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "filterisraeli":{ - "description":"language", - "message":"israelisch" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"AdBlock erlauben anonyme Filterlistennutzung und andere anonyme Nutzungsdaten zu sammeln" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Verschieben Sie den Regler so lange nach rechts, bis die Werbung komplett entfernt ist und der restliche Teil der Seite noch normal aussieht." + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Um Werbung zu melden muss eine Internetverbindung bestehen." }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"URLs mit diesem Text blockieren" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Filterlisten für Werbung" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "updateddaysago":{ + "description":"Label for subscription", + "message":"vor $days$ Tagen aktualisiert", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Die Zahl der Filterlistenregeln überschreitet das Limit von 50.000 und wurde automatisch reduziert. Bitte deaktivieren Sie einige Filterlisten oder deaktivieren Sie Safari Content Blocking!" + "typeobject":{ + "description":"A resource type", + "message":"interaktives objekt" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"vor 1 Tag aktualisiert" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Welches Merkmal könnte diese Werbung bei jedem Besuch der Seite haben?" }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Acceptable Ads (empfohlen)" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Anzahl entfernter Werbung:" }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Klicken Sie hier: \"Akzeptable Werbung\" deaktivieren" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "optionsversion":{ - "description":"Version number", - "message":"Version $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arabisch" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"aus Liste entfernen" + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Selbst erstellte Filter für diese Domain wieder entfernen" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Datei ist keine Bilddatei. Bitte laden Sie eine Datei hoch die mit .png, .gif, oder .jpg endet." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Filter manuell bearbeiten:" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Warum senden Sie uns nicht einfach einen Fehlerbericht?" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Schritt 1: Herausfinden, was entfernt werden soll" }, - "typehiding":{ - "description":"A resource type", - "message":"verborgen" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Bitte geben Sie einen korrekten Filter ein und bestätigen Sie mit OK" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filterlisten" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Übersetzung von:" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Frame-Domain: " + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"Keine Updates für AdBlock verfügar." }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Top-Frame" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"nur auf Englisch" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Fertig!" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"Oder klicken Sie einfach auf diesen Button um alles oben genannte zu tun: Alle anderen Erweiterungen deaktivieren" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Ressource" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Die Änderungen der aktuellen Version von AdBlock können im Changelog eingesehen werden." }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Werbung auf dieser Seite entfernen" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial Filterliste (entfernt Buttons von sozialen Netzwerken)" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Stellen Sie sicher, dass Ihre Filterlisten auf aktuellem Stand sind:" + "filtermalware":{ + "description":"A filter list", + "message":"Malware-Schutz" }, - "lang_english":{ - "description":"language", - "message":"englisch" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock wird auf allen Seiten deaktiviert, auf die folgendes zutrifft:" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Öffnen Sie Erweiterungen-Seite um die zuvor deaktivierten Erweiterungen wieder zu aktivieren." + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Sie haben den Speicherplatz, der AdBlock zur Verfügung steht, überschritten. Bitte beenden Sie einige Filterlistenabonnements!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domain der zutreffenden Seite" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Seite:" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"E-Mail-Adresse" }, - "foundbug":{ + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"Haben Sie einen Fehler gefunden?" + "message":"Wollen Sie wissen wer und was hinter AdBlock steckt?" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arabisch" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." + }, + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Teil einer Seite ausblenden" + }, + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Allgemein" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"oder AdBlock für Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videos und Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Gut! Lassen Sie uns nun herausfinden welche Erweiterung das Problem verursacht. Aktivieren Sie eine Erweiterung nach der anderen. Die Erweiterung die die Werbung wieder erscheinen lässt muss deinstalliert werden um die Werbung endgültig zu entfernen." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } + }, + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"oder Chrome" }, - "lang_czech":{ - "description":"language", - "message":"tschechisch" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~seite1.de|~seite2.com|~news.seite3.org" }, "pwyw":{ "description":"Text of a payment request link", "message":"Zahlen Sie, was Sie möchten!" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Wollen Sie wissen wer und was hinter AdBlock steckt?" - }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Ungültige Filterlistenadresse. Dieser Filterlisteneintrag wird gelöscht." - }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" - }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Bearbeiten" - }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Haben Sie eine Frage oder eine Idee für AdBlock?" - }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"Oder klicken Sie einfach auf diesen Button um alles oben genannte zu tun: Alle anderen Erweiterungen deaktivieren" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Dies ist ein Filterlistenproblem. Bitte melden Sie es hier: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Mehr über Malware erfahren" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Achtung: Ihr Bericht kann öffentlich zugänglich sein. Bitte beachten Sie dies, bevor Sie etwas Privates in Ihren Bericht einfügen." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Laden Sie die Seite mit der Werbung neu." + "filteritalian":{ + "description":"language", + "message":"italienisch" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installieren Sie Firefox $chrome$, falls Sie es noch nicht installiert haben.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock Updates" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Wird die Werbung noch angezeigt?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"'Adblock Warning Removal'-Filterliste (entfernt Warnungen über die Benutzung von Werbe-Blockern)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Stellen Sie sicher, dass Sie die richtige Sprach-Filterliste(n) benutzen:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Andere Filterlisten" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Stellen Sie sicher, dass Ihre Filterlisten auf aktuellem Stand sind:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"französisch" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Bei der Überprüfung auf Updates ist ein Fehler aufgetreten." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Entferntes Element:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klicken Sie auf Safari (Menübar) → Einstellungen ... → Erweiterungen." }, - "typeobject":{ - "description":"A resource type", - "message":"interaktives objekt" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Senden" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"jetzt aktualisiert" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"vor $days$ Tagen aktualisiert", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Abonnement beendet." + }, + "typemedia":{ "description":"A resource type", - "message":"frame" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (Privatsphärenschutz)" + "message":"Lettisch" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Werbung auf dieser Seite melden" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Werbung auf dieser Seite entfernen" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Filter überprüfen und fehlerhafte Filter entfernen" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"AdBlock auf Seiten deaktivieren:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"deutsch" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Speichern der hochgeladenen Datei fehlgeschlagen." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Achtung: Dieser Filter entfernt alle $elementtype$-Elemente auf dieser Seite!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Dies trifft auf $matchcount$ Elemente dieser Seite zu.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"hier" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"In welcher Sprache ist die Seite verfasst?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Filterlistenabruf fehlgeschlagen!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Sind Sie sicher, dass Sie $count$ Filter entfernen wollen, die Sie für $host$ erstellt haben?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Sie können hier genau einstellen, auf welchen Seiten AdBlock deaktiviert sein soll." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"grafik" - }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Um den Button zu verbergen, klicken Sie mit einem Rechtsklick auf den Button und wählen Sie 'Schaltfläche verbergen'. Der Button kann unter chrome://chrome/extensions wieder aktiviert werden." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"rumänisch" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Bei der Überprüfung auf Updates ist ein Fehler aufgetreten." + "message":"verborgen" }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Alle anderen Erweiterungen wurden deaktiviert. Die Seite mit Werbung wird nun neu geladen. Eine Sekunde bitte." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Erscheint die Werbung vor oder in einem Video oder einem anderen Plugin, wie z.B. einem Flash-Spiel?" }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Ressource mit Ausnahmeregel" + "filterrussian":{ + "description":"Language names for a filter list", + "message":"russisch und ukrainisch" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"spanisch" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Achtung: Dieser Filter entfernt alle $elementtype$-Elemente auf dieser Seite!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"tschechisch und slowakisch" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"ClickToFlash Kompatibilitätsmodus aktivieren" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Frame-Typ:" + "no":{ + "description":"A negative response to a question", + "message":"Nein" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Sprache auswählen --" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filter (kann in den AdBlock-Einstellungen bearbeitet werden):" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Installieren Sie Adblock Plus für Firefox $chrome$, falls Sie es noch nicht installiert haben.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Diesen Button ausblenden" + }, + "other":{ + "description":"Multiple choice option", + "message":"nichtgelistete Sprache" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Sie können die Werbung auch im Tab 'Anpassen' der AdBlock-Einstellungen entfernen. Danke!" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Blockierte Ressource" + "lang_russian":{ + "description":"language", + "message":"russisch" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Erscheint die Werbung vor oder in einem Video oder einem anderen Plugin, wie z.B. einem Flash-Spiel?" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Sie benutzen eine veraltete Version von Safari. Laden Sie sich die neueste Version von Safari herunter um mit dem AdBlock Toolbar-Button AdBlock pausieren, Ausnahmeregeln für Webseiten erstellen und Werbung melden zu können. Jetzt herunterladen." + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (Privatsphärenschutz)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ wird $value$ sein", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filter (kann in den AdBlock-Einstellungen bearbeitet werden):" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"...oder geben Sie eine Filterlistenadresse ein:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Der folgende Filter:
$filter$
hat einen Fehler:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Frame-Typ:" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Schließen" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"LÄDT..." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Werbung nur auf diesen Seiten entfernen:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Hat unser Team Sie nach Debug-Informationen gefragt? Klicken Sie hier um die Informationen anzuzeigen." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Sie haben den Speicherplatz, der AdBlock zur Verfügung steht, überschritten. Bitte beenden Sie einige Filterlistenabonnements!" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Der Filter ist ungültig: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Die Zahl der Filterlistenregeln überschreitet das Limit von 50.000 und wurde automatisch reduziert. Bitte deaktivieren Sie einige Filterlisten oder deaktivieren Sie Safari Content Blocking!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Sie können die Werbung auch im Tab 'Anpassen' der AdBlock-Einstellungen entfernen. Danke!" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Werbung auf dieser Seite melden" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Debug-Berichte in der Fehlerkonsole anzeigen (verlangsamt AdBlock)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Frame-Domain: " }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Senden" + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Die beliebteste Chrome-Erweiterung, mit über 40 Millionen Nutzern! Entfernt Werbung im ganzen Internet." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Haben Sie einen Fehler gefunden?" }, - "filtereasylist_plus_finnish":{ + "lang_czech":{ "description":"language", - "message":"finnisch" - }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "message":"tschechisch" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Datei ist zu groß. Bitte stellen Sie sicher, dass Ihre Datei kleiner als 10 MB ist." + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Dies ist ein Filterlistenproblem. Bitte melden Sie es hier: $link$", - "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" - } - } + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Datei ist keine Bilddatei. Bitte laden Sie eine Datei hoch die mit .png, .gif, oder .jpg endet." }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Entfernen Sie bei allen Erweiterungen das Häkchen der \"Aktiviert\"-Checkbox außer bei AdBlock. Lassen Sie AdBlock aktiviert." + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, "showlinkstolists2":{ "description":"Option on the 'Filter lists' tab of the Options page", "message":"Links zu den Filterlisten anzeigen" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"nur auf Englisch" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Einige nicht aufdringliche Werbung zulassen" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Teilen Sie es mit ihren Freunden!" + "filterswedish":{ + "description":"A filter list", + "message":"Schwedisch" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"E-Mail-Adresse" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"aus Liste entfernen" }, - "malwarenotificationmessage":{ - "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock hat einen Download von einer Website blockiert die für die Verbreitung von Malware bekannt ist." + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legende: " + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Sprache auswählen --" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"ClickToFlash Kompatibilitätsmodus aktivieren" + "filtereasylist_plus_french":{ + "description":"language", + "message":"französisch" + }, + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Bearbeiten" }, "tabsupport":{ "description":"A tab on the options page", "message":"Support" }, + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Werbung über ihre Adresse entfernen" + }, + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Version $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } + }, + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Wo ist genau auf dieser Seite ist die Werbung? Wie sieht sie aus?" + }, + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Werbung zu melden ist freiwillig. Es hilft Anderen da Filterlisten-Betreiber die Werbung für alle anderen Benutzer blocken können. Es ist in Ordnung falls Sie dies derzeit nicht tun möchten. Schließen Sie einfach diese Seiten und entfernen Sie die Werbung nur für Sie selbst." + }, + "yes":{ + "description":"A positive response to a question", + "message":"Ja" + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Der Quellcode ist frei verfügbar." + }, + "filterdutch":{ + "description":"language", + "message":"niederländisch" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Wir werden Sie nur im Falle von fehlenden Informationen kontaktieren." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Dies trifft auf 1 Element dieser Seite zu." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"vor $hours$ Stunden aktualisiert", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Zurück" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Klicken Sie hier: \"Akzeptable Werbung\" deaktivieren" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domain der zutreffenden Seite" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Etwas ist schief gelaufen. Es wurden keine Ressourcen übermittelt. Diese Seite wird sich nun schließen. Versuchen Sie die Webseite neu zu laden." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Mehr über Malware erfahren" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Acceptable Ads (empfohlen)" + }, "safaricontentblockingpausemessage":{ "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", "message":"Um AdBlock mit aktiviertem Content Blocking zu pausieren, klicken Sie bitte auf Safari (in der Menüleiste) > Einstellungen ... > Erweiterungen > AdBlock, und entfernen Sie den Haken unter \"AdBlock aktivieren\"." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - für weitere Optionen bitte klicken" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Sieht gut aus!" + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Deaktivieren Sie alle Erweiterungen außer AdBlock:" } } \ No newline at end of file diff --git a/_locales/el/messages.json b/_locales/el/messages.json index 00c87e3d..79eaf7af 100644 --- a/_locales/el/messages.json +++ b/_locales/el/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Επισυνάψτε στιγμιότυπο οθόνης:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Δεν βρέθηκε γνωστό κακόβουλο λογισμικό." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Σε εκείνο τον περιηγητή, εγγραφείτε στις ίδιες λίστες φίλτρων όπως έχετε εδώ." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Έχετε μια ερώτηση ή νέα ιδέα;" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Σε εκείνο τον περιηγητή, φορτώστε τη σελίδα με την διαφήμιση." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Επιλογές" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Σουηδικά" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Να μπλοκάρετε κι άλλες διαφημίσεις:" - }, - "lang_russian":{ - "description":"language", - "message":"Ρωσικά" + "message":"EasyList (προτείνεται)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Αναίρεση εγγραφής" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ σε αυτή τη σελίδα", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Κινεζικά" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Εάν έχετε δημιουργήσει ένα φίλτρο εργασίας, χρησιμοποιώντας τον οδηγό \"μπλοκάρισμα μίας διαφήμισης\", επικολλήστε το στο παρακάτω πλαίσιο:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Λίστα φίλτρου Antisocial (αφαιρεί τα κουμπιά κοινωνικής δικτύωσης)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Βρήκατε διαφήμιση σε μια ιστοσελίδα; Εμείς θα σας βοηθήσουμε να βρείτε το σωστό μέρος για να το αναφέρετε!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Εμφάνιση αριθμού μπλοκαρισμένων διαφημίσεων στο κουμπί AdBlock" + "message":"Πολωνικά" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Ο πηγαίος κώδικας είναι ελεύθερα διαθέσιμος!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS για ταίριασμα" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"ανανεώθηκε πριν 1 λεπτό" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Εξαίρεση" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Σφάλμα στην ανάκτηση αυτού του φίλτρου!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Δεν θέλω να το ελέγξω αυτό" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Παρακαλούμε κάντε επανεκκίνηση το Safari για να ολοκληρώσετε την απενεργοποίηση φραγής περιεχομένου." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Μπλοκάρισμα μιας διαφήμισης από την διεύθυνση URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Απόκρυψη του κουμπιού" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"ΠΡΟΣΟΧΗ: αν κάνετε ένα λάθος εδώ, πολλά άλλα φίλτρα, συμπεριλαμβανομένων των επίσημων, μπορεί να πάθουν ζημιά!
Διαβάστε τις οδηγίες για σύνταξη φίλτρων για να μάθετε πώς να προσθέσετε προηγμένες μαύρες και λευκές λίστες φίλτρων." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Θα κάνω ενημερώσεις αυτόματα. Μπορείτε επίσης να ενημερώσετε τώρα" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Εμφανίζεται η διαφήμιση και σε άλλον περιηγητή;" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Μορφή: ~site1.com|~site2.com|~news.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Αν προτιμάτε να μην βλέπετε διαφημίσεις όπως αυτή, μπορείτε αν θέλετε να αφήσετε τη λίστα φίλτρων αποδεκτών διαφημίσεων απενεργοποιημένη." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Εσθονικά" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Τύπος" + "message":"Λιθουανικά" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Υπάρχει μια ενημέρωση για το AdBlock! Πηγαίνετε $here$ για να ενημερώσετε.
Σημείωση: Αν θέλετε να λαμβάνετε ενημερώσεις αυτόματα, απλά κάντε κλικ στο Safari > Προτιμήσεις > Επεκτάσεις > Ενημερώσεις
και επιλέξτε το 'Αυτόματη εγκατάσταση ενημερώσεων'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Εγγραφείτε σε αυτή τη λίστα φίλτρων, και μετά ξαναπροσπαθήστε: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Τι είναι αυτό;" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Μην εγγραφείτε σε περισσότερα φίλτρα από όσα χρειάζεστε -- το καθένα σας καθυστερεί και από λίγο!
Εύσημα και περισσότερες λίστες μπορούν να βρεθούν εδώ." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Αυτό το χαρακτηριστικό του AdBlock δεν λειτουργεί σε αυτή την ιστοσελίδα, επειδή χρησιμοποιεί παρωχημένη τεχνολογία. Μπορείτε να αποκλείσετε ή να επιτρέψετε πόρους χειροκίνητα στην καρτέλα 'Προσαρμογή' της σελίδας επιλογών." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Πολωνικά" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Μάθετε περισσότερα για το πρόγραμμα αποδεκτών διαφημίσεων." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"ανανεώθηκε πριν $seconds$ δευτερόλεπτα", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Ο υπολογιστής σας μπορεί να μολυνθεί από malware. Κάντε κλικ εδώ για περισσότερες πληροφορίες." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Εμφάνιση διαφημίσεων σε μια ιστοσελίδα ή τομέα" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Ουγγαρικά" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Σημείωση: η αναφορά σας μπορεί να γίνει δημόσια. Έχετέ το κατά νου πριν συμπεριλάβετε οποιαδήποτε ιδιωτική πληροφορία." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Παρακαλούμε απενεργοποιήστε ορισμένες λίστες φίλτρων. Περισσότερες πληροφορίες στις επιλογές του AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Σλοβακικά" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Φίλτρο προέλευσης:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Εγκαταστήστε το Adblock Plus για Firefox $chrome$ αν δεν το έχετε.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Συγνώμη, το AdBlock απενεργοποιήθηκε σε αυτήν την σελίδα λόγω μιας από τις λίστες φίλτρων σας." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Το φίλτρο δεν είναι έγκυρο: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Δεν έχουμε ακόμη μια προεπιλεγμένη λίστα φίλτρων για αυτή τη γλώσσα.
Προσπαθήστε να βρείτε μια λίστα φίλτρων που να υποστηρίζει αυτή τη γλώσσα $link$ ή μπλοκάρετέ την για τον εαυτό σας στην καρτέλα 'Προσαρμογή'.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Προσοχή: Δεν προσδιορίστηκε φίλτρο!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"Το AdBlock είναι απενεργοποιημένο σε αυτήν την σελίδα." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Κάντε κλικ στη διαφήμιση, και θα σας καθοδηγήσω στο μπλοκάρισμα της." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Εμφάνιση διαφημίσεων παντού εκτός από αυτούς τους τομείς..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Πάνω πλαίσιο" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Επιλογές" + "typestylesheet":{ + "description":"A resource type", + "message":"ορισμός στυλ" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"άγνωστο" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Συγνώμη, το AdBlock απενεργοποιήθηκε σε αυτήν την σελίδα λόγω μιας από τις λίστες φίλτρων σας." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Μπλοκαρισμένες διαφημίσεις:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Προσθέστε φίλτρα για άλλη γλώσσα: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Τρίτων" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Κάντε κλικ στη διαφήμιση, και θα σας καθοδηγήσω στο μπλοκάρισμα της." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Δεν προσδιορίστηκε φίλτρο!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Ελληνικά" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Αν βλέπετε μια διαφήμιση, μην κάνετε αναφορά σφάλματος, κάντε μια αναφορά διαφήμισης!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Χρησιμοποιείτε παλιά έκδοση του AdBlock. Πηγαίνετε στη σελίδα επεκτάσεων, ενεργοποιήστε την 'Λειτουργία για προγραμματιστές' και κάντε κλικ στο 'Ενημέρωση επεκτάσεων τώρα'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Εξαιρετικά! Είστε έτοιμοι." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Ποιό είναι το όνομά σας;" }, - "other":{ - "description":"Multiple choice option", - "message":"Άλλη" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Επίλυση μη αναπαραγωγής βίντεο από Hulu.com (απαιτεί επανεκκίνηση του περιηγητή σας)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Υποστήριξη AdBlock" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Προσοχή: Δεν προσδιορίστηκε φίλτρο!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"ΠΡΟΣΑΡΜΟΓΗ" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Βρήκατε διαφήμιση σε μια ιστοσελίδα; Εμείς θα σας βοηθήσουμε να βρείτε το σωστό μέρος για να το αναφέρετε!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Εσθονικά" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Προσαρμόστε το AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Λείπουν οι απαιτούμενες πληροφορίες ή είναι άκυρες. Παρακαλούμε συμπληρώστε τις ερωτήσεις που έχουν κόκκινο περίγραμμα." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Βουλγαρικά" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Σφάλμα αποθήκευσης του μεταφορτωμένου αρχείου." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Εγκεκριμένος πόρος" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Παρακαλούμε πληκτρολογήστε σωστά το φίλτρο παρακάτω και πατήστε OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Υπέρβαση ορίου κανόνων αποκλεισμού περιεχομένου" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Βήμα 1ο: Επιλέξτε τι θα μπλοκάρετε" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Δανικά" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Να μην λειτουργεί το AdBlock σε..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ σε αυτή τη σελίδα", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Μπλοκάρετε URL διευθύνσεις με αυτό το κείμενο" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Κλείσιμο" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Ελέγξτε στο Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Υποπλαίσιο" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Τελευταίο βήμα: Τι καθιστά αυτό διαφήμιση;" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"ανανεώθηκε πριν 1 ώρα" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Αν βλέπετε μια διαφήμιση, μην κάνετε αναφορά σφάλματος, κάντε μια αναφορά διαφήμισης!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Κορεατικά" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ή το Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Ποιό είναι το όνομά σας;" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Η πιο δημοφιλής επέκταση Chrome, με πάνω από 40 εκατομμύρια χρήστες! Μπλοκάρει διαφημίσεις σε όλο τον ιστό." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Χρησιμοποιείτε μια παλιά έκδοση του Safari. Αποκτήστε την τελευταία έκδοση για να χρησιμοποιήσετε το κουμπί AdBlock της γραμμής εργαλείων για παύση του AdBlock, ιστοσελίδες στη λευκή λίστα, και να αναφέρετε τις διαφημίσεις. Αναβάθμιση τώρα." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Εμφάνιση όλων των αιτήσεων" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Φινλανδικά" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Δεν θέλω να το ελέγξω αυτό" + "typescript":{ + "description":"A resource type", + "message":"σενάριο" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Ουκρανικά" }, - "yes":{ - "description":"A positive response to a question", - "message":"Ναι" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Δεν βρέθηκε γνωστό κακόβουλο λογισμικό." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Αναίρεση των μπλοκ μου σε αυτόν τον τομέα" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Παρακαλούμε απενεργοποιήστε ορισμένες λίστες φίλτρων. Περισσότερες πληροφορίες στις επιλογές του AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"ΠΡΟΣΑΡΜΟΓΗ" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Αναιρέσαμε την εγγραφή σας από τις αποδεκτές διαφημίσεις, διότι έχετε ενεργοποιήσει την Φραγή Περιεχομένου Safari. Μπορείτε να επιλέξετε μόνο ένα κάθε φορά. (Γιατί;)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Παύση του AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Επίσης, έχουμε μια σελίδα για να σας βοηθήσει να ανακαλύψετε τους ανθρώπους πίσω από το AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Είστε βέβαιοι ότι θέλετε να εγγραφείτε στη λίστα φίλτρου $title$;", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"εδώ" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Ακριβώς που στη συγκεκριμένη σελίδα είναι η διαφήμιση; Πως μοιάζει;" + "typepopup":{ + "description":"A resource type", + "message":"Αναδυόμενο παράθυρο" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ή το AdBlock για Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Ανανέωση της σελίδας." }, - "typestylesheet":{ - "description":"A resource type", - "message":"ορισμός στυλ" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Σε τι γλώσσα είναι αυτή η σελίδα;" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"Το AdBlock είναι σε παύση." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Δοκιμαστική" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Υπέρβαση ορίου κανόνων αποκλεισμού περιεχομένου" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Αναίρεση παύσης του AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Αναζήτηση διαφημίσεων...

Αυτό θα πάρει μερικά δευτερόλεπτα." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"Το AdBlock είναι απενεργοποιημένο σε αυτήν την σελίδα." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Ο τομέας ή η URL διεύθυνση όπου το AdBlock δε θα μπλοκάρει τίποτα" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Σε εκείνο τον περιηγητή, εγγραφείτε στις ίδιες λίστες φίλτρων όπως έχετε εδώ." }, - "typescript":{ - "description":"A resource type", - "message":"σενάριο" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Μπλοκάρισμα μιας διαφήμισης" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ συνολικά", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Προσοχή: σε όλες τις άλλες ιστοσελίδες θα βλέπετε διαφημίσεις!
Αυτό υπερισχύει όλων των άλλων φίλτρων για αυτές τις ιστοσελίδες." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Υπάρχει μια ενημέρωση για το AdBlock! Πηγαίνετε $here$ για να ενημερώσετε.
Σημείωση: Αν θέλετε να λαμβάνετε ενημερώσεις αυτόματα, απλά κάντε κλικ στο Safari > Προτιμήσεις > Επεκτάσεις > Ενημερώσεις
και επιλέξτε το 'Αυτόματη εγκατάσταση ενημερώσεων'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Όλα έτοιμα! Θα έρθουμε σε επαφή σύντομα, πιθανότατα μέσα σε μια μέρα, δύο αν είναι διακοπές. Εν τω μεταξύ, αναζητήστε ένα μήνυμα ηλεκτρονικού ταχυδρομείου από το AdBlock. Εκεί θα βρείτε έναν σύνδεσμο για το εισιτήριο σας στην ιστοσελίδα βοήθειας. Εάν προτιμάτε να ακολουθήσετε με ηλεκτρονικό ταχυδρομείο, μπορείτε να το κάνετε και αυτό!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Ολοκληρώθηκε!" }, - "no":{ - "description":"A negative response to a question", - "message":"Όχι" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Προσαρμοσμένα φίλτρα του AdBlock (προτείνεται)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Κάτι πήγε λάθος. Κανένας πόρος δεν έχει αποσταλεί. Αυτή η σελίδα θα κλείσει τώρα. Δοκιμάστε να φορτώσετε ξανά την ιστοσελίδα." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Τύπος" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Τι είναι αυτό;" + }, + "filterjapanese":{ "description":"language", - "message":"Ουκρανικά" + "message":"Ιαπωνικά" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"ανανεώθηκε πριν $minutes$ λεπτά", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Φίλτρο προέλευσης:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Αναιρέσαμε την εγγραφή σας από τις αποδεκτές διαφημίσεις, διότι έχετε ενεργοποιήσει την Φραγή Περιεχομένου Safari. Μπορείτε να επιλέξετε μόνο ένα κάθε φορά. (Γιατί;)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Δεν είστε πλέον συνδρομητής στη λίστα φίλτρου αποδεκτών διαφημίσεων." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Προστασία από κακόβουλο λογισμικό" - }, - "savebutton":{ - "description":"Save button", - "message":"Αποθήκευση" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Προσοχή: σε όλες τις άλλες ιστοσελίδες θα βλέπετε διαφημίσεις!
Αυτό υπερισχύει όλων των άλλων φίλτρων για αυτές τις ιστοσελίδες." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Απενεργοποιήστε αυτές τις ειδοποιήσεις" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Γίνεται εγγραφή σε λίστα φίλτρων..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Εγγραφείτε σε λίστες φίλτρων" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Χρησιμοποιείτε παλιά έκδοση του AdBlock. Πηγαίνετε στη σελίδα επεκτάσεων, ενεργοποιήστε την 'Λειτουργία για προγραμματιστές' και κάντε κλικ στο 'Ενημέρωση επεκτάσεων τώρα'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Τύπος πλαισίου: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Επιλογές του AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Προσθέστε φίλτρα για άλλη γλώσσα: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Ταιριασμένο φίλτρο" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Έλεγχος για κακόβουλο λογισμικό που θα μπορούσε να βάλει διαφημίσεις:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Οι λίστες φίλτρων μπλοκάρουν τις περισσότερες διαφημίσεις στον ιστό. Μπορείτε επίσης:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Εμφάνιση στοιχείων αποσφαλμάτωσης στο αρχείο κονσόλας (καθυστερεί το AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Για να κρύψετε το κουμπί, κάντε δεξί κλικ στη γραμμή εργαλείων του Safari και επιλέξτε Προσαρμογή γραμμής εργαλείων, στη συνέχεια σύρετε το κουμπί AdBlock έξω από τη γραμμή εργαλείων. Μπορείτε να το εμφανίσετε ξανά σύροντάς το πίσω στην γραμμή εργαλείων." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Έχετε υπερβεί το όριο μεγέθους του Dropbox. Παρακαλούμε αφαιρέστε κάποιες καταχωρήσεις από τα προσαρμοσμένα ή απενεργοποιημένα φίλτρα, και προσπαθήστε ξανά." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Αναίρεση παύσης του AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Επίλυση μη αναπαραγωγής βίντεο από Hulu.com (απαιτεί επανεκκίνηση του περιηγητή σας)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Εξαίρεση" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Απενεργοποίηση όλων των επεκτάσεων εκτός από το AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Εύσημα για την μετάφραση δίνονται σε:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"ΦΟΡΤΩΝΕΙ..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Κάντε δεξί κλικ σε μια διαφήμιση για να την μπλοκάρετε -- ή κάντε το εδώ χειροκίνητα." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Εγγραφή" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Σημείωση: η καταχώρηση στη λευκή λίστα (που επιτρέπει διαφημίσεις) μιας σελίδας ή ενός ιστότοπου, δεν υποστηρίζεται με ενεργοποιημένο αποκλεισμό περιεχομένου Safari." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Θα το χρησιμοποιήσουμε μόνο για να επικοινωνήσουμε μαζί σας εάν χρειαστούμε περισσότερες πληροφορίες." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Επεξεργασία απενεργοποιημένων φίλτρων:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Μπλοκαρισμένο στοιχείο:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"σελίδα" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Ενεργοποίηση αποκλεισμού περιεχομένου Safari" + "typeother":{ + "description":"A resource type", + "message":"άλλο" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Ποιά είναι η διεύθυνση του ηλεκτρονικού ταχυδρομείου σας;" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Πατήστε εδώ: Ανανέωσε τα φίλτρα μου!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Για να κρύψετε το κουμπί, κάντε δεξί κλικ στη γραμμή εργαλείων του Safari και επιλέξτε Προσαρμογή γραμμής εργαλείων, στη συνέχεια σύρετε το κουμπί AdBlock έξω από τη γραμμή εργαλείων. Μπορείτε να το εμφανίσετε ξανά σύροντάς το πίσω στην γραμμή εργαλείων." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Παρουσιάστηκε ένα σφάλμα κατά την επεξεργασία του αιτήματός σας." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Κρυφό στοιχείο" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Για να κρύψετε το κουμπί, πηγαίνετε στο opera://extensions και επιλέξτε το 'Απόκρυψη από τη γραμμή εργαλείων'. Μπορείτε να το εμφανίσετε ξανά αναιρώντας αυτή την επιλογή." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"σελίδα" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Σελίδα:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Έγινε! Ξαναφορτώσαμε τη σελίδα με τη διαφήμιση. Παρακαλώ ελέγξτε τη σελίδα για να δείτε αν η διαφήμιση έχει φύγει. Στη συνέχεια γυρίστε πίσω σε αυτή τη σελίδα και απαντήστε στην παρακάτω ερώτηση." + "buttonblockit":{ + "description":"Block button", + "message":"Μπλοκάρετέ το!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"ή εισάγετε μια διεύθυνση URL σελίδας φίλτρων:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Να επιτρέπεται η καταχώρηση στη λευκή λίστα συγκεκριμένων καναλιών του YouTube" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Χρησιμοποιείτε μια παλιά έκδοση του Safari. Αποκτήστε την τελευταία έκδοση για να χρησιμοποιήσετε το κουμπί AdBlock της γραμμής εργαλείων για παύση του AdBlock, ιστοσελίδες στη λευκή λίστα, και να αναφέρετε τις διαφημίσεις. Αναβάθμιση τώρα." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Κάντε κλικ στο μενού Safari → Προτιμήσεις → Επεκτάσεις." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Να σταματήσετε το μπλοκάρισμα διαφημίσεων:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Ακόμη δεν μπορούμε να μπλοκάρουμε διαφημίσεις μέσα σε Flash και άλλα πρόσθετα. Περιμένουμε υποστήριξη από τον περιηγητή και την WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Μπλοκάρετέ το!" + "filterhungarian":{ + "description":"language", + "message":"Ουγγαρικά" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Η διαφήμιση συνεχίζει να υπάρχει;" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Μπλοκάρισμα αυτής της διαφήμισης" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Βουλγαρικά" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Εξαιρετικά! Τώρα ας μάθουμε ποια επέκταση είναι η αιτία. Ενεργοποίηση κάθε επέκτασης μία προς μία. Η επέκταση που φέρνει πίσω την διαφήμιση είναι αυτή που πρέπει να καταργήσετε για να απαλλαγείτε από τις διαφημίσεις." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Ενεργοποίηση του AdBlock σε αυτή τη σελίδα" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Εμφάνιση αριθμού μπλοκαρισμένων διαφημίσεων στο κουμπί AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Απέτυχε!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Επεξεργαστείτε χειροκίνητα τα φίλτρα σας:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Παύση του AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Ιταλικά" - }, - "typepopup":{ - "description":"A resource type", - "message":"Αναδυόμενο παράθυρο" + "message":"Αγγλικά" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Τύπος" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Προσθήκη στοιχείων στο μενού του δεξιού κλικ" }, - "lang_slovak":{ - "description":"language", - "message":"Σλοβακικά" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Παρακαλούμε μεταβείτε στην ιστοσελίδα υποστήριξης." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Εγγραφείτε σε λίστες φίλτρων" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Λίστα αφαίρεσης Προειδοποιήσεων AdBlock (αφαιρεί τα μηνύματα που αφορούν τη χρήση AdBlock)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Μπορείτε να το ενεργοποιήσετε ξανά παρακάτω και να υποστηρίζετε τις ιστοσελίδες που αγαπάτε επιλέγοντας \"Να επιτρέπονται ορισμένες μη-παρεμβατικές διαφημίσεις\"." + "typemain_frame":{ + "description":"A resource type", + "message":"σελίδα" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Εμφανίζεται η διαφήμιση και σε άλλον περιηγητή;" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Είστε βέβαιοι ότι θέλετε να καταργήσετε τα $count$ μπλοκ που έχετε δημιουργήσει στο $host$;", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Εκτός λειτουργίας σε αυτή τη σελίδα" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Υπόμνημα: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"ανανεώθηκε πριν $minutes$ λεπτά", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Επισυνάψτε στιγμιότυπο οθόνης:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Λιθουανικά" + "message":"Ρουμανικά" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Ενημερώστε μας στην ιστοσελίδα υποστήριξης!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Επεξεργασία απενεργοποιημένων φίλτρων:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"Το AdBlock είναι σε παύση." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Υποπλαίσιο" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Ακόμη δεν μπορούμε να μπλοκάρουμε διαφημίσεις μέσα σε Flash και άλλα πρόσθετα. Περιμένουμε υποστήριξη από τον περιηγητή και την WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Ανανεώστε τη σελίδα που έχει τη διαφήμιση." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Ενεργοποίηση αποκλεισμού περιεχομένου Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Εγκαταστήστε το Firefox $chrome$ αν δεν το έχετε ήδη.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"ΓΕΝΙΚΑ" + "message":"ΛΙΣΤΕΣ ΦΙΛΤΡΩΝ" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Αν προτιμάτε να μην βλέπετε διαφημίσεις όπως αυτή, μπορείτε αν θέλετε να αφήσετε τη λίστα φίλτρων αποδεκτών διαφημίσεων απενεργοποιημένη." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Εάν έχετε δημιουργήσει ένα φίλτρο εργασίας, χρησιμοποιώντας τον οδηγό \"μπλοκάρισμα μίας διαφήμισης\", επικολλήστε το στο παρακάτω πλαίσιο:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Ο υπολογιστής σας μπορεί να μολυνθεί από malware. Κάντε κλικ εδώ για περισσότερες πληροφορίες." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Αυτό το αρχείο είναι πολύ μεγάλο. Παρακαλούμε βεβαιωθείτε ότι το αρχείο είναι μικρότερο από 10 MB." }, - "typeother":{ - "description":"A resource type", - "message":"άλλο" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"Το AdBlock δεν θα λειτουργεί σε σελίδες που αντιστοιχούν σε:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Δεν προσδιορίστηκε φίλτρο!" + "filterchinese":{ + "description":"language", + "message":"Κινεζικά" }, - "typeunknown":{ - "description":"A resource type", - "message":"άγνωστο" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Το φίλτρο δεν είναι έγκυρο: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Γίνεται εγγραφή σε λίστα φίλτρων..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Ανοίξτε τη σελίδα της επέκτασης για να ενεργοποιήσετε τις επεκτάσεις που είχαν προηγουμένως απενεργοποιηθεί." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Απενεργοποιήστε αυτές τις ειδοποιήσεις" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Τουρκικά" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Μην εγγραφείτε σε περισσότερα φίλτρα από όσα χρειάζεστε -- το καθένα σας καθυστερεί και από λίγο!
Εύσημα και περισσότερες λίστες μπορούν να βρεθούν εδώ." + }, + "typesubdocument":{ "description":"A resource type", - "message":"ήχος/βίντεο" + "message":"πλαίσιο" }, - "filterjapanese":{ - "description":"language", - "message":"Ιαπωνικά" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Ινδονησιακά" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Να επιτρέπονται μερικές μη-παρεμβατικές διαφημίσεις" + "typeimage":{ + "description":"A resource type", + "message":"εικόνα" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ συνολικά", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Άκυρο" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Μπορείτε να σύρετε παρακάτω για να αλλάξετε ακριβώς σε ποιες σελίδες δεν θα τρέχει το AdBlock." + "savereminder":{ + "description":"Reminder to press save", + "message":"Μην ξεχάσετε να αποθηκεύσετε!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"επιλογέας" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Απενεργοποιήσαμε την Φραγή Περιεχομένου Safari επειδή έχετε επιλέξει να επιτρέπονται μη παρεμβατικές διαφημίσεις. Μπορείτε να επιλέξετε μόνο ένα κάθε φορά. (Γιατί;)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Τελευταίο βήμα: αναφέρετε το πρόβλημα σε εμάς." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Ελέγξτε στο Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Ισλανδικά" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Για να αναφέρετε μια διαφήμιση, πρέπει να είστε συνδεδεμένοι στον ιστό." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Λίστες φίλτρων μπλοκαρίσματος διαφημίσεων" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (προτείνεται)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Μπλοκάρισμα διαφημίσεων μόνο σε αυτές τις ιστοσελίδες:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Φορτώθηκε σε σελίδα με τομέα:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Αναφορά μιας διαφήμισης" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Οι επεκτάσεις που είχαν προηγουμένως απενεργοποιηθεί έχουν ενεργοποιηθεί ξανά." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Λίστες φίλτρων μπλοκαρίσματος διαφημίσεων" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Πώς;" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Καθαρίστε αυτή τη λίστα" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Να επιτρέπεται η καταχώρηση στη λευκή λίστα συγκεκριμένων καναλιών του YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Βοηθήστε να το διαδώσουμε!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Τρίτων" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (αφαιρεί ενοχλήσεις στον ιστό)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - κλικ για λεπτομέρειες" + "optionstitle":{ + "description":"Title for the options page", + "message":"Επιλογές του AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Παρουσιάστηκε ένα σφάλμα κατά την επεξεργασία του αιτήματός σας." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"ανανεώθηκε πριν $hours$ ώρες", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"ανανεώθηκε πριν 1 ώρα" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ρωσικά και Ουκρανικά" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Έλεγχος για ενημερώσεις (πρέπει να διαρκέσει μόνο λίγα δευτερόλεπτα)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Τι νέο υπάρχει στην τελευταία έκδοση; Δείτε το αρχείο αλλαγών!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"ανανεώθηκε μόλις τώρα" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Οι επεκτάσεις που είχαν προηγουμένως απενεργοποιηθεί έχουν ενεργοποιηθεί ξανά." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Κάντε δεξί κλικ σε μια διαφήμιση για να την μπλοκάρετε -- ή κάντε το εδώ χειροκίνητα." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Ελληνικά" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Έλεγχος για κακόβουλο λογισμικό που θα μπορούσε να βάλει διαφημίσεις:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Απόκρυψη μιας περιοχής της ιστοσελίδας" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Υποστήριξη AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Βίντεο και Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Τύπος" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Τι νομίζετε ότι θα ισχύει σε αυτήν την διαφήμιση κάθε φορά που θα επισκέπτεστε αυτήν τη σελίδα;" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Σύρετε τον δείκτη ώσπου η διαφήμιση να μπλοκαριστεί σωστά στην σελίδα, και το μπλοκαρισμένο στοιχείο να φαίνεται εντάξει." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Ενεργοποίηση του AdBlock σε αυτή τη σελίδα" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"ανανεώθηκε πριν 1 λεπτό" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Πίσω" + "typesub_frame":{ + "description":"A resource type", + "message":"πλαίσιο" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Οι λίστες φίλτρων μπλοκάρουν τις περισσότερες διαφημίσεις στον ιστό. Μπορείτε επίσης:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Αποκλεισμένος πόρος" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Οι ακόλουθες πληροφορίες θα συμπεριληφθούν επίσης στην αναφορά διαφήμισης." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Δανικά" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Έλεγχος των φίλτρων αποδεκτών διαφημίσεων:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Εμφάνιση διαφημίσεων σε μια ιστοσελίδα ή τομέα" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Μπορείτε να το ενεργοποιήσετε ξανά παρακάτω και να υποστηρίζετε τις ιστοσελίδες που αγαπάτε επιλέγοντας \"Να επιτρέπονται ορισμένες μη-παρεμβατικές διαφημίσεις\"." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Ανάκτηση... Παρακαλώ περιμένετε." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Μη έγκυρη διεύθυνση URL λίστας. Θα διαγραφεί." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Γενικές επιλογές" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Καταργήστε την επιλογή 'Ενεργοποιημένο' στο πλαίσιο ελέγχου δίπλα σε κάθε επέκταση εκτός του AdBlock. Αφήστε το AdBlock ενεργοποιημένο." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Σε εκείνο τον περιηγητή, φορτώστε τη σελίδα με την διαφήμιση." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Εμφάνιση διαφημίσεων παντού εκτός από αυτούς τους τομείς..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Ξεχάσατε να επισυνάψετε ένα στιγμιότυπο οθόνης! Δεν μπορούμε να σας βοηθήσουμε χωρίς να δούμε την διαφήμιση που θέλετε να αναφέρετε." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Αυτό αντιστοιχεί σε μόνο 1 αντικείμενο στη σελίδα." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Και δημιουργήστε ένα εισιτήριο χειροκίνητα, και αντιγράψτε και επικολλήστε τις παρακάτω πληροφορίες στην ενότητα \"Σημπληρώστε τυχόν λεπτομέρειες που νομίζετε ότι θα μας βοηθήσουν να κατανοήσουμε το πρόβλημά σας\"." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"ΠΡΟΣΟΧΗ: αν κάνετε ένα λάθος εδώ, πολλά άλλα φίλτρα, συμπεριλαμβανομένων των επίσημων, μπορεί να πάθουν ζημιά!
Διαβάστε τις οδηγίες για σύνταξη φίλτρων για να μάθετε πώς να προσθέσετε προηγμένες μαύρες και λευκές λίστες φίλτρων." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Στη λευκή λίστα το κανάλι $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Για να κρύψετε το κουμπί, κάντε δεξί κλικ στο κουμπί και επιλογή Απόκρυψη κουμπιού. Μπορείτε να το επανεμφανίσετε από chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Γενικές επιλογές" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"Το AdBlock δεν θα λειτουργεί σε σελίδες που αντιστοιχούν σε:" + "filterisraeli":{ + "description":"language", + "message":"Εβραϊκά" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Δεν έχουμε ακόμη μια προεπιλεγμένη λίστα φίλτρων για αυτή τη γλώσσα.
Προσπαθήστε να βρείτε μια λίστα φίλτρων που να υποστηρίζει αυτή τη γλώσσα $link$ ή μπλοκάρετέ την για τον εαυτό σας στην καρτέλα 'Προσαρμογή'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Αυτό το χαρακτηριστικό του AdBlock δεν λειτουργεί σε αυτή την ιστοσελίδα, επειδή χρησιμοποιεί παρωχημένη τεχνολογία. Μπορείτε να αποκλείσετε ή να επιτρέψετε πόρους χειροκίνητα στην καρτέλα 'Προσαρμογή' της σελίδας επιλογών." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Εγγραφή" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Τσεχικά και Σλοβακικά" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Είμαι προχωρημένος χρήστης, δείξε μου προηγμένες επιλογές" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Έχουμε απενεργοποιήσει όλες τις άλλες επεκτάσεις. Τώρα θα ξαναφορτώσουμε τη σελίδα με τη διαφήμιση. Ένα δευτερόλεπτο, παρακαλώ." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Ισπανικά" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Άλλες λίστες φίλτρων" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Φορτώθηκε σε σελίδα με τομέα:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Θα κάνω ενημερώσεις αυτόματα. Μπορείτε επίσης να ενημερώσετε τώρα" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Πατήστε εδώ: Ανανέωσε τα φίλτρα μου!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Εμφάνιση όλων των αιτήσεων" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Όσο περισσότερα φίλτρα χρησιμοποιείτε,τόσο πιο αργά τρέχει το AdBlock. Χρησιμοποιώντας πολλά φίλτρα μπορεί ακόμα και να κολλήσει ο περιηγητής σας σε μερικές ιστοσελίδες. Πάτησε OK για να εγγραφείτε σε αυτή τη λίστα φίλτρων όπως και να έχει." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Τελευταίο βήμα: Τι καθιστά αυτό διαφήμιση;" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Εξαιρετικά! Είστε έτοιμοι." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Αυτό αντιστοιχεί σε $matchcount$ αντικείμενα στη σελίδα.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Δοκιμαστική" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Επίσης, έχουμε μια σελίδα για να σας βοηθήσει να ανακαλύψετε τους ανθρώπους πίσω από το AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Ανοίξτε τη σελίδα επεκτάσεων." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Ινδονησιακά" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Όλα έτοιμα! Θα έρθουμε σε επαφή σύντομα, πιθανότατα μέσα σε μια μέρα, δύο αν είναι διακοπές. Εν τω μεταξύ, αναζητήστε ένα μήνυμα ηλεκτρονικού ταχυδρομείου από το AdBlock. Εκεί θα βρείτε έναν σύνδεσμο για το εισιτήριο σας στην ιστοσελίδα βοήθειας. Εάν προτιμάτε να ακολουθήσετε με ηλεκτρονικό ταχυδρομείο, μπορείτε να το κάνετε και αυτό!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Τουρκικά" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Μάθετε περισσότερα για το πρόγραμμα αποδεκτών διαφημίσεων." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Μπλοκάρισμα μιας διαφήμισης" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Να σας ειδοποιεί το AdBlock όταν ανιχνεύει κακόβουλο λογισμικό;" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Προσαρμοσμένες λίστες φίλτρων" + "updateddayago":{ + "description":"Label for subscription", + "message":"ανανεώθηκε πριν 1 μέρα" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"Πλαίσιο URL: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Ο σκοπός αυτής της ερώτησης είναι να καθοριστεί ποιος πρέπει να λάβει την αναφορά σας. Αν δεν απαντήσετε σωστά σε αυτή την ερώτηση, η αναφορά θα αποσταλεί σε λάθος άνθρωπους, έτσι ώστε να μπορεί να αγνοηθεί." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Προσθήκη στοιχείων στο μενού του δεξιού κλικ" - }, - "typeselector":{ - "description":"A resource type", - "message":"επιλογέας" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Μπλοκάρισμα αυτής της διαφήμισης" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Έχει ζητήσει η ομάδα μας κάποιες πληροφορίες εντοπισμού σφαλμάτων; Κάντε κλικ εδώ για αυτό!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Γερμανικά" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Να μην λειτουργεί το AdBlock σε..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Η αναφορά διαφημίσεων είναι εθελοντική. Βοηθά άλλους ανθρώπους με την ενεργοποίηση των συντηρητών λίστας φίλτρων, να μπλοκάρουν τη διαφήμιση για όλους. Αν δεν αισθάνεστε αλτρουιστικά αυτή τη στιγμή, δεν πειράζει. Κλείστε αυτή τη σελίδα και μπλοκάρετε τη διαφήμιση μόνο για εσάς." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Αυτό το όνομα αρχείου είναι πολύ μεγάλο. Παρακαλούμε δώστε στο αρχείο σας ένα μικρότερο όνομα." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Κρυφό στοιχείο" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"ανανεώθηκε πριν $seconds$ δευτερόλεπτα", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Ανανέωση της σελίδας." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Εκτός λειτουργίας σε αυτή τη σελίδα" }, - "typepage":{ - "description":"A resource type", - "message":"σελίδα" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Ενημερώστε μας στην ιστοσελίδα υποστήριξης!" }, - "filterdutch":{ - "description":"language", - "message":"Ολλανδικά" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Αυτό το όνομα αρχείου είναι πολύ μεγάλο. Παρακαλούμε δώστε στο αρχείο σας ένα μικρότερο όνομα." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Μην ξεχάσετε να αποθηκεύσετε!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Έγινε! Ξαναφορτώσαμε τη σελίδα με τη διαφήμιση. Παρακαλώ ελέγξτε τη σελίδα για να δείτε αν η διαφήμιση έχει φύγει. Στη συνέχεια γυρίστε πίσω σε αυτή τη σελίδα και απαντήστε στην παρακάτω ερώτηση." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Έλεγχος για ενημερώσεις (πρέπει να διαρκέσει μόνο λίγα δευτερόλεπτα)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Όλοι οι πόροι" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Εγγραφείτε σε αυτή τη λίστα φίλτρων, και μετά ξαναπροσπαθήστε: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Στη λευκή λίστα το κανάλι $name$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Να σας ειδοποιεί το AdBlock όταν ανιχνεύει κακόβουλο λογισμικό;" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Πόρος" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Εμφάνιση αριθμού μπλοκαρισμένων διαφημίσεων στο μενού του AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Ιστοσελίδα:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Αναφορά μιας διαφήμισης" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Προσαρμοσμένα φίλτρα του AdBlock (προτείνεται)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Πώς;" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Εκτός λειτουργίας σε σελίδες αυτού του τομέα" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Προσαρμοσμένες λίστες φίλτρων" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Να μπλοκάρετε κι άλλες διαφημίσεις:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Λείπουν οι απαιτούμενες πληροφορίες ή είναι άκυρες. Παρακαλούμε συμπληρώστε τις ερωτήσεις που έχουν κόκκινο περίγραμμα." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Ο τομέας ή η URL διεύθυνση όπου το AdBlock δε θα μπλοκάρει τίποτα" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Λετονικά" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Δεν είστε πλέον συνδρομητής στη λίστα φίλτρου αποδεκτών διαφημίσεων." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Βεβαιωθείτε ότι χρησιμοποιείτε το σωστό φίλτρο γλώσσας:" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (αφαιρεί ενοχλήσεις στον ιστό)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS για ταίριασμα" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"Το AdBlock έχει μπλοκάρει μια λήψη από μια τοποθεσία που είναι γνωστό ότι φιλοξενεί κακόβουλο λογισμικό." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Για να κρύψετε το κουμπί, πηγαίνετε στο opera://extensions και επιλέξτε το 'Απόκρυψη από τη γραμμή εργαλείων'. Μπορείτε να το εμφανίσετε ξανά αναιρώντας αυτή την επιλογή." + "savebutton":{ + "description":"Save button", + "message":"Αποθήκευση" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Δεν είστε σίγουρος; Απλώς πατήστε 'Μπλοκάρετέ το!' παρακάτω." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Ταιριασμένο φίλτρο" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Ανάκτηση... Παρακαλώ περιμένετε." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Όλοι οι πόροι" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Τελευταίο βήμα: αναφέρετε το πρόβλημα σε εμάς." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"Το AdBlock είναι ενημερωμένο!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Εκτός λειτουργίας σε σελίδες αυτού του τομέα" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Ακριβώς που στη συγκεκριμένη σελίδα είναι η διαφήμιση; Πως μοιάζει;" }, - "filterisraeli":{ - "description":"language", - "message":"Εβραϊκά" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Φαίνεται εντάξει" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Σύρετε τον δείκτη ώσπου η διαφήμιση να μπλοκαριστεί σωστά στην σελίδα, και το μπλοκαρισμένο στοιχείο να φαίνεται εντάξει." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Μπλοκάρετε URL διευθύνσεις με αυτό το κείμενο" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Να επιτρέπεται στο AdBlock να συγκεντρώνει ανώνυμα χρήση και δεδομένα λίστας φίλτρων" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Για να αναφέρετε μια διαφήμιση, πρέπει να είστε συνδεδεμένοι στον ιστό." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Ο αριθμός των κανόνων στη λίστα φίλτρου υπερβαίνει το όριο των 50.000, και έχει μειωθεί αυτόματα. Παρακαλώ αναιρέστε την εγγραφή σας από μερικές λίστες φίλτρων ή απενεργοποιήστε τον Αποκλεισμό Περιεχομένου Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Είστε βέβαιοι ότι θέλετε να εγγραφείτε στη λίστα φίλτρου $title$;", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"ανανεώθηκε πριν 1 μέρα" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Αποδεκτές διαφημίσεις (προτείνεται)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Κάντε κλικ εδώ για: Απενεργοποίηση αποδεκτών διαφημίσεων" - }, - "optionsversion":{ - "description":"Version number", - "message":"Έκδοση $version$", + "message":"ανανεώθηκε πριν $days$ μέρες", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Αφαίρεση από τη λίστα" + "typeobject":{ + "description":"A resource type", + "message":"διαδραστικό αντικείμενο" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Αυτό δεν είναι αρχείο εικόνας. Παρακαλούμε αποστείλτε ένα αρχείο .png, .gif ή .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Τι νομίζετε ότι θα ισχύει σε αυτήν την διαφήμιση κάθε φορά που θα επισκέπτεστε αυτήν τη σελίδα;" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Γιατί δεν μας στέλνετε μια αναφορά σφάλματος;" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Μπλοκαρισμένες διαφημίσεις:" }, - "typehiding":{ - "description":"A resource type", - "message":"απόκρυψη" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"ΛΙΣΤΕΣ ΦΙΛΤΡΩΝ" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Αραβικά" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Πλαίσιο τομέα: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Αναίρεση των μπλοκ μου σε αυτόν τον τομέα" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Πάνω πλαίσιο" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Επεξεργαστείτε χειροκίνητα τα φίλτρα σας:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Ολοκληρώθηκε!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Βήμα 1ο: Επιλέξτε τι θα μπλοκάρετε" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Πόρος" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Παρακαλούμε πληκτρολογήστε σωστά το φίλτρο παρακάτω και πατήστε OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Μπλοκάρισμα μίας διαφήμισης σε αυτή τη σελίδα" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Εύσημα για την μετάφραση δίνονται σε:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Βεβαιωθείτε πως οι λίστες φίλτρων σας είναι ενημερωμένες:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"Το AdBlock είναι ενημερωμένο!" }, - "lang_english":{ - "description":"language", - "message":"Αγγλικά" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Μόνο Αγγλικά" }, - "filtericelandic":{ - "description":"language", - "message":"Ισλανδικά" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"Ή, απλά κάντε κλικ σε αυτό το κουμπί για να κάνουμε όλα τα παραπάνω: Απενεργοποίηση όλων των άλλων επεκτάσεων" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Ανοίξτε τη σελίδα της επέκτασης για να ενεργοποιήσετε τις επεκτάσεις που είχαν προηγουμένως απενεργοποιηθεί." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Τι νέο υπάρχει στην τελευταία έκδοση; Δείτε το αρχείο αλλαγών!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Τομέας της σελίδας για εφαρμογή" + "filterantisocial":{ + "description":"A filter list", + "message":"Λίστα φίλτρου Antisocial (αφαιρεί τα κουμπιά κοινωνικής δικτύωσης)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Σελίδα:" + "filtermalware":{ + "description":"A filter list", + "message":"Προστασία από κακόβουλο λογισμικό" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Βρήκατε σφάλμα;" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Είμαι προχωρημένος χρήστης, δείξε μου προηγμένες επιλογές" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Αραβικά" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Ξεπεράσατε το όριο αποθήκευσης που το AdBlock μπορεί να κάνει χρήση. Παρακαλούμε αναιρέστε την εγγραφή σας από μερικές λίστες φίλτρων." }, - "lang_czech":{ - "description":"language", - "message":"Τσεχικά" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Πληρώστε ό,τι θέλετε!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Ποιά είναι η διεύθυνση του ηλεκτρονικού ταχυδρομείου σας;" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Θέλετε να δείτε τι κάνει το AdBlock να ξεχωρίζει;" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Μη έγκυρη διεύθυνση URL λίστας. Θα διαγραφεί." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Απόκρυψη μιας περιοχής της ιστοσελίδας" }, - "typesub_frame":{ - "description":"A resource type", - "message":"πλαίσιο" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"ΓΕΝΙΚΑ" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ή το AdBlock για Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Βίντεο και Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Εξαιρετικά! Τώρα ας μάθουμε ποια επέκταση είναι η αιτία. Ενεργοποίηση κάθε επέκτασης μία προς μία. Η επέκταση που φέρνει πίσω την διαφήμιση είναι αυτή που πρέπει να καταργήσετε για να απαλλαγείτε από τις διαφημίσεις." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Επεξεργασία" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ή το Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Έχετε μια ερώτηση ή νέα ιδέα;" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Μορφή: ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Ξεχάσατε να επισυνάψετε ένα στιγμιότυπο οθόνης! Δεν μπορούμε να σας βοηθήσουμε χωρίς να δούμε την διαφήμιση που θέλετε να αναφέρετε." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Πληρώστε ό,τι θέλετε!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"Ή, απλά κάντε κλικ σε αυτό το κουμπί για να κάνουμε όλα τα παραπάνω: Απενεργοποίηση όλων των άλλων επεκτάσεων" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Αυτό είναι ένα πρόβλημα στις λίστες φίλτρων. Αναφέρτε το εδώ: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Μάθετε περισσότερα για το κακόβουλο λογισμικό" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Σημείωση: η αναφορά σας μπορεί να γίνει δημόσια. Έχετέ το κατά νου πριν συμπεριλάβετε οποιαδήποτε ιδιωτική πληροφορία." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Ανανεώστε τη σελίδα που έχει τη διαφήμιση." + "filteritalian":{ + "description":"language", + "message":"Ιταλικά" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Εγκαταστήστε το Firefox $chrome$ αν δεν το έχετε ήδη.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Ενημερώσεις AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Η διαφήμιση συνεχίζει να υπάρχει;" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Λίστα αφαίρεσης Προειδοποιήσεων AdBlock (αφαιρεί τα μηνύματα που αφορούν τη χρήση AdBlock)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Βεβαιωθείτε ότι χρησιμοποιείτε το σωστό φίλτρο γλώσσας:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Άλλες λίστες φίλτρων" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Βεβαιωθείτε πως οι λίστες φίλτρων σας είναι ενημερωμένες:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Γαλλικά" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Κάτι πήγε στραβά κατά τον έλεγχο ενημερώσεων." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Μπλοκαρισμένο στοιχείο:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Κάντε κλικ στο μενού Safari → Προτιμήσεις → Επεκτάσεις." }, - "typeobject":{ - "description":"A resource type", - "message":"διαδραστικό αντικείμενο" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Αποστολή" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"ανανεώθηκε μόλις τώρα" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"ανανεώθηκε πριν $days$ μέρες", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Αναίρεση εγγραφής" + }, + "typemedia":{ "description":"A resource type", - "message":"πλαίσιο" + "message":"ήχος/βίντεο" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (προστασία προσωπικών δεδομένων)" + "message":"Λετονικά" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Αναφέρετε μια διαφήμιση σε αυτή τη σελίδα" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Μπλοκάρισμα μίας διαφήμισης σε αυτή τη σελίδα" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Καθαρίστε αυτή τη λίστα" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Να σταματήσετε το μπλοκάρισμα διαφημίσεων:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Γερμανικά" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Σφάλμα αποθήκευσης του μεταφορτωμένου αρχείου." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Προσοχή: αυτό το φίλτρο μπλοκάρει όλα τα στοιχεία τύπου $elementtype$ στη σελίδα!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Αυτό αντιστοιχεί σε $matchcount$ αντικείμενα στη σελίδα.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"εδώ" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Σε τι γλώσσα είναι αυτή η σελίδα;" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Σφάλμα στην ανάκτηση αυτού του φίλτρου!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Είστε βέβαιοι ότι θέλετε να καταργήσετε τα $count$ μπλοκ που έχετε δημιουργήσει στο $host$;", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Μπορείτε να σύρετε παρακάτω για να αλλάξετε ακριβώς σε ποιες σελίδες δεν θα τρέχει το AdBlock." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"εικόνα" + "message":"απόκρυψη" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Και δημιουργήστε ένα εισιτήριο χειροκίνητα, και αντιγράψτε και επικολλήστε τις παρακάτω πληροφορίες στην ενότητα \"Σημπληρώστε τυχόν λεπτομέρειες που νομίζετε ότι θα μας βοηθήσουν να κατανοήσουμε το πρόβλημά σας\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Εμφανίζεται αυτή η διαφήμιση μέσα ή πριν μια ταινία ή άλλο πρόσθετο σαν ένα παιχνίδι Flash;" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Για να κρύψετε το κουμπί, κάντε δεξί κλικ στο κουμπί και επιλογή Απόκρυψη κουμπιού. Μπορείτε να το επανεμφανίσετε από chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ρωσικά και Ουκρανικά" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Ρουμανικά" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Κάτι πήγε στραβά κατά τον έλεγχο ενημερώσεων." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Έχουμε απενεργοποιήσει όλες τις άλλες επεκτάσεις. Τώρα θα ξαναφορτώσουμε τη σελίδα με τη διαφήμιση. Ένα δευτερόλεπτο, παρακαλώ." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Εγκεκριμένος πόρος" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Ισπανικά" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Προσοχή: αυτό το φίλτρο μπλοκάρει όλα τα στοιχεία τύπου $elementtype$ στη σελίδα!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Τσεχικά και Σλοβακικά" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Ενεργοποίηση της λειτουργίας συμβατότητας του ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Τύπος πλαισίου: " + "no":{ + "description":"A negative response to a question", + "message":"Όχι" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Επιλέξτε γλώσσα -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Το φίλτρο, το οποίο μπορεί να αλλαχθεί στη σελίδα επιλογών:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Εγκαταστήστε το Adblock Plus για Firefox $chrome$ αν δεν το έχετε.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Απόκρυψη του κουμπιού" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Αποκλεισμένος πόρος" + "other":{ + "description":"Multiple choice option", + "message":"Άλλη" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Εντάξει, μπορείτε ακόμα να μπλοκάρετε αυτή τη διαφήμιση μόνο για εσάς στην σελίδα επιλογών. Ευχαριστούμε!" + }, + "lang_russian":{ + "description":"language", + "message":"Ρωσικά" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Εμφανίζεται αυτή η διαφήμιση μέσα ή πριν μια ταινία ή άλλο πρόσθετο σαν ένα παιχνίδι Flash;" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Γιατί δεν μας στέλνετε μια αναφορά σφάλματος;" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (προστασία προσωπικών δεδομένων)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ θα είναι $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Το φίλτρο, το οποίο μπορεί να αλλαχθεί στη σελίδα επιλογών:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"ή εισάγετε μια διεύθυνση URL σελίδας φίλτρων:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Το παρακάτω φίλτρο:
$filter$
έχει ένα σφάλμα:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"ΦΟΡΤΩΝΕΙ..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Κλείσιμο" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Έχει ζητήσει η ομάδα μας κάποιες πληροφορίες εντοπισμού σφαλμάτων; Κάντε κλικ εδώ για αυτό!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Μπλοκάρισμα διαφημίσεων μόνο σε αυτές τις ιστοσελίδες:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Ξεπεράσατε το όριο αποθήκευσης που το AdBlock μπορεί να κάνει χρήση. Παρακαλούμε αναιρέστε την εγγραφή σας από μερικές λίστες φίλτρων." + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Ο αριθμός των κανόνων στη λίστα φίλτρου υπερβαίνει το όριο των 50.000, και έχει μειωθεί αυτόματα. Παρακαλώ αναιρέστε την εγγραφή σας από μερικές λίστες φίλτρων ή απενεργοποιήστε τον Αποκλεισμό Περιεχομένου Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Αναφέρετε μια διαφήμιση σε αυτή τη σελίδα" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Να επιτρέπεται στο AdBlock να συγκεντρώνει ανώνυμα χρήση και δεδομένα λίστας φίλτρων" + "message":"Εμφάνιση στοιχείων αποσφαλμάτωσης στο αρχείο κονσόλας (καθυστερεί το AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Εντάξει, μπορείτε ακόμα να μπλοκάρετε αυτή τη διαφήμιση μόνο για εσάς στην σελίδα επιλογών. Ευχαριστούμε!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Πλαίσιο τομέα: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Η πιο δημοφιλής επέκταση Chrome, με πάνω από 40 εκατομμύρια χρήστες! Μπλοκάρει διαφημίσεις σε όλο τον ιστό." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Βρήκατε σφάλμα;" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Αποστολή" + "lang_czech":{ + "description":"language", + "message":"Τσεχικά" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Αυτό δεν είναι αρχείο εικόνας. Παρακαλούμε αποστείλτε ένα αρχείο .png, .gif ή .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Εμφάνιση συνδέσμων στις λίστες φίλτρων" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Να επιτρέπονται μερικές μη-παρεμβατικές διαφημίσεις" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Σουηδικά" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Αφαίρεση από τη λίστα" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Επιλέξτε γλώσσα -- " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Φινλανδικά" + "message":"Γαλλικά" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Επεξεργασία" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Αυτό το αρχείο είναι πολύ μεγάλο. Παρακαλούμε βεβαιωθείτε ότι το αρχείο είναι μικρότερο από 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"ΥΠΟΣΤΗΡΙΞΗ" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Οι ακόλουθες πληροφορίες θα συμπεριληφθούν επίσης στην αναφορά διαφήμισης." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Μπλοκάρισμα μιας διαφήμισης από την διεύθυνση URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Αυτό είναι ένα πρόβλημα στις λίστες φίλτρων. Αναφέρτε το εδώ: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Έκδοση $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Καταργήστε την επιλογή 'Ενεργοποιημένο' στο πλαίσιο ελέγχου δίπλα σε κάθε επέκταση εκτός του AdBlock. Αφήστε το AdBlock ενεργοποιημένο." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Ο σκοπός αυτής της ερώτησης είναι να καθοριστεί ποιος πρέπει να λάβει την αναφορά σας. Αν δεν απαντήσετε σωστά σε αυτή την ερώτηση, η αναφορά θα αποσταλεί σε λάθος άνθρωπους, έτσι ώστε να μπορεί να αγνοηθεί." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Εμφάνιση συνδέσμων στις λίστες φίλτρων" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Η αναφορά διαφημίσεων είναι εθελοντική. Βοηθά άλλους ανθρώπους με την ενεργοποίηση των συντηρητών λίστας φίλτρων, να μπλοκάρουν τη διαφήμιση για όλους. Αν δεν αισθάνεστε αλτρουιστικά αυτή τη στιγμή, δεν πειράζει. Κλείστε αυτή τη σελίδα και μπλοκάρετε τη διαφήμιση μόνο για εσάς." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Μόνο Αγγλικά" + "yes":{ + "description":"A positive response to a question", + "message":"Ναι" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Βοηθήστε να το διαδώσουμε!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Ο πηγαίος κώδικας είναι ελεύθερα διαθέσιμος!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Ολλανδικά" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Θα το χρησιμοποιήσουμε μόνο για να επικοινωνήσουμε μαζί σας εάν χρειαστούμε περισσότερες πληροφορίες." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Αυτό αντιστοιχεί σε μόνο 1 αντικείμενο στη σελίδα." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"ανανεώθηκε πριν $hours$ ώρες", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Πίσω" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"Το AdBlock έχει μπλοκάρει μια λήψη από μια τοποθεσία που είναι γνωστό ότι φιλοξενεί κακόβουλο λογισμικό." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Υπόμνημα: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Κάντε κλικ εδώ για: Απενεργοποίηση αποδεκτών διαφημίσεων" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Ενεργοποίηση της λειτουργίας συμβατότητας του ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Τομέας της σελίδας για εφαρμογή" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"ΥΠΟΣΤΗΡΙΞΗ" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ενημερώσεις AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Παρακαλούμε μεταβείτε στην ιστοσελίδα υποστήριξης." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Για παύση του AdBlock με ενεργοποιημένο αποκλεισμό περιεχομένου Safari, παρακαλούμε επιλέξτε Safari (στο μενού) > Προτιμήσεις > Επεκτάσεις > AdBlock, και αποεπιλέξτε το 'Ενεργοποίηση AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Κάτι πήγε λάθος. Κανένας πόρος δεν έχει αποσταλεί. Αυτή η σελίδα θα κλείσει τώρα. Δοκιμάστε να φορτώσετε ξανά την ιστοσελίδα." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Μάθετε περισσότερα για το κακόβουλο λογισμικό" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Ιστοσελίδα:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Αποδεκτές διαφημίσεις (προτείνεται)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Φαίνεται εντάξει" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Για παύση του AdBlock με ενεργοποιημένο αποκλεισμό περιεχομένου Safari, παρακαλούμε επιλέξτε Safari (στο μενού) > Προτιμήσεις > Επεκτάσεις > AdBlock, και αποεπιλέξτε το 'Ενεργοποίηση AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Ανοίξτε τη σελίδα επεκτάσεων." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - κλικ για λεπτομέρειες" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Απενεργοποίηση όλων των επεκτάσεων εκτός από το AdBlock:" } } \ No newline at end of file diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 7020ef1a..f5f97f5b 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Attach a screenshot:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"No known malware found." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"In that browser, subscribe to the same filter lists as you have here." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Got a question or new idea?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"In that browser, load the page with the ad." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Options" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Swedish" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Block more ads:" - }, - "lang_russian":{ - "description":"language", - "message":"Russian" + "message":"EasyList (recommended)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Unsubscribed." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ on this page", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Chinese" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"If you have created a working filter using the \"block an ad\" wizard, paste it in the box below:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial filter list (removes social media buttons)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Found an ad on a web page? We'll help you find the right place to report it!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show number of ads blocked on AdBlock button" + "message":"Polish" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"The source code is freely available!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS to match" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"updated 1 minute ago" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Exclude" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Failed to fetch this filter!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"I don't want to check this" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Please restart Safari to finish turning off content blocking." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Block an ad by its URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Hide this button" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Be careful: if you make a mistake here a lot of other filters, including the official filters, could get broken too!
Read the filter syntax tutorial to learn how to add advanced blacklist and whitelist filters." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"I will fetch updates automatically; you can also update now" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Does the ad appear in that browser too?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~site1.com|~site2.com|~news.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"If you'd rather not see ads like this one, you may want to leave the Acceptable Ads filter list turned off." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Estonian" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Type" + "message":"Lithuanian" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"There's an update for AdBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Subscribe to this filter list, then try again: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"What's this?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Don't subscribe to more than you need -- every one slows you down a tiny bit! Credits and more lists can be found here." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This AdBlock feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polish" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Find out more about the Acceptable Ads program." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"updated $seconds$ seconds ago", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Your computer may be infected by malware. Click here for more information." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Show ads on a webpage or domain" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Hungarian" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Note: your report may become publicly available. Keep that in mind before including anything private." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Please disable some filter lists. More information in AdBlock's Options." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Slovak" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Filter origin:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Install Adblock Plus for Firefox $chrome$ if you don't have it.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, AdBlock is disabled on this page by one of your filter lists." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"The filter is invalid: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"We don't have a default filter list for that language.
Please try to find a suitable list that supports this language $link$ or block this ad for yourself on the 'Customize' tab.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Warning: no filter specified!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock is disabled on this page." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Click the ad, and I'll walk you through blocking it." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Show ads everywhere except for these domains..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Top frame" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Options" + "typestylesheet":{ + "description":"A resource type", + "message":"style definition" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"unknown" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Sorry, AdBlock is disabled on this page by one of your filter lists." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Blocked ads:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Add filters for another language: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Third-party" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Click the ad, and I'll walk you through blocking it." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"No filter specified!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Greek" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"If you're seeing an ad, don't make a bug report, make an ad report!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of AdBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Great! You're all set." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"What's your name?" }, - "other":{ - "description":"Multiple choice option", - "message":"Other" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Work around Hulu.com videos not playing (requires restarting your browser)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock Support" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Warning: no filter specified!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Customize" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Found an ad on a web page? We'll help you find the right place to report it!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estonian" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Customize AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Required information is missing or invalid. Please fill in the questions that have a red border." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgarian" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Error saving the uploaded file." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Whitelisted resource" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Please type the correct filter below and press OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Content Blocking rule limit exceeded" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Step 1: Figure out what to block" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Danish" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run AdBlock on..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ on this page", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Block URLs containing this text" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Close" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Check in Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Subframe" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Last step: What makes this an ad?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"updated 1 hour ago" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"If you're seeing an ad, don't make a bug report, make an ad report!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Korean" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"or Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"What's your name?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"The most popular Chrome extension, with over 40 million users! Blocks ads all over the web." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the AdBlock toolbar button to pause AdBlock, whitelist websites, and report ads. Upgrade now." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Show all requests" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finnish" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"I don't want to check this" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Ukrainian" }, - "yes":{ - "description":"A positive response to a question", - "message":"Yes" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"No known malware found." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Undo my blocks on this domain" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in AdBlock's Options." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Customize" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"We unsubscribed you from Acceptable Ads because you turned on Safari Content Blocking. You can only select one at a time. (Why?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pause AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out the people behind AdBlock, as well!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Are you sure that you want to subscribe to the $title$ filter list?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"here" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Exactly where on that page is the ad? What does it look like?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"or AdBlock for Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Reload the page." }, - "typestylesheet":{ - "description":"A resource type", - "message":"style definition" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"In what language is that page written?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock is paused." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Content Blocking rule limit exceeded" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Unpause AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Finding ads...

This'll only take a moment." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock is disabled on this page." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where AdBlock shouldn't block anything" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"In that browser, subscribe to the same filter lists as you have here." }, - "typescript":{ - "description":"A resource type", - "message":"script" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Block an ad" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ in total", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Warning: on all other sites you will see ads!
This overrules all other filters for those sites." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"There's an update for AdBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"All set! We'll be in touch soon, most likely within a day, two if it's a holiday. In the meantime, look for an email from AdBlock. You'll find a link to your ticket on our help site there. If you prefer to follow along by email, you can do that, too!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Finished!" }, - "no":{ - "description":"A negative response to a question", - "message":"No" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock custom filters (recommended)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Something went wrong. No resources have been sent through. This page will now close. Try reloading the website." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Type" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"What's this?" + }, + "filterjapanese":{ "description":"language", - "message":"Ukrainian" + "message":"Japanese" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"updated $minutes$ minutes ago", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Filter origin:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"We unsubscribed you from Acceptable Ads because you turned on Safari Content Blocking. You can only select one at a time. (Why?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"You're no longer subscribed to the Acceptable Ads filter list." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Malware protection" - }, - "savebutton":{ - "description":"Save button", - "message":"Save" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Warning: on all other sites you will see ads!
This overrules all other filters for those sites." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Disable these notifications" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Subscribing to filter list..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Subscribe to filter lists" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"You are using an old version of AdBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Frame type: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock Options" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Add filters for another language: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Matched filter" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Check for malware that could be injecting ads:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"The filter lists block most ads on the web. You can also:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the AdBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"You have exceeded the Dropbox size limit. Please remove some entries from your custom or disabled filters, and try again." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Unpause AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Work around Hulu.com videos not playing (requires restarting your browser)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Exclude" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Credit for translation goes to:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"Loading..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Right click an ad on a page to block it -- or block it here manually." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Subscribe" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Note: Whitelisting (allowing ads on) a page or site is not supported with Safari Content Blocking enabled." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"We'll only use this to contact you if we need more information." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Edit disabled filters:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blocked element:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"page" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Enable Safari Content Blocking" + "typeother":{ + "description":"A resource type", + "message":"other" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"What's your email address?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Click this: Update my filters!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the AdBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"There was an error processing your request." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Hidden element" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"To hide the button, go to opera://extensions and check the 'Hide from toolbar' option. You can show it again by unchecking that option." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"page" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Page:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Done! We reloaded the page with the ad. Please check that page to see whether the ad is gone. Then come back to this page and answer the question below." + "buttonblockit":{ + "description":"Block button", + "message":"Block it!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Or enter a URL:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Allow whitelisting of specific YouTube channels" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the AdBlock toolbar button to pause AdBlock, whitelist websites, and report ads. Upgrade now." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Click the Safari menu → Preferences → Extensions." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Stop blocking ads:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"We can't block ads inside Flash and other plugins yet. We are awaiting support from the browser and WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Block it!" + "filterhungarian":{ + "description":"language", + "message":"Hungarian" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Does the ad still appear?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Block this ad" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgarian" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Great! Now let's find out which extension is the cause. Go through and enable each extension one by one. The extension that brings back the ad(s) is the one you need to uninstall to get rid of the ads." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Enable AdBlock on this page" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show number of ads blocked on AdBlock button" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Failed!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Manually edit your filters:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pause AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Italian" - }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "message":"English" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Type" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Add items to the right click menu" }, - "lang_slovak":{ - "description":"language", - "message":"Slovak" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Please go to our support website." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Subscribe to filter lists" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Adblock Warning Removal list (removes warnings about using ad blockers)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"You can turn this back on and support the websites you love by selecting \"Allow some non-intrusive advertising\" below." + "typemain_frame":{ + "description":"A resource type", + "message":"page" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Does the ad appear in that browser too?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Are you sure you want to remove the $count$ blocks that you have created on $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Don't run on this page" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legend: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"updated $minutes$ minutes ago", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Attach a screenshot:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Lithuanian" + "message":"Romanian" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Let us know on our support site!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Edit disabled filters:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock is paused." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Subframe" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"We can't block ads inside Flash and other plugins yet. We are awaiting support from the browser and WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Reload the page with the ad." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Enable Safari Content Blocking" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Install Firefox $chrome$ if you don't have it.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"General" + "message":"Filter lists" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"If you'd rather not see ads like this one, you may want to leave the Acceptable Ads filter list turned off." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"If you have created a working filter using the \"block an ad\" wizard, paste it in the box below:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Your computer may be infected by malware. Click here for more information." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"That file is too big. Please make sure your file is less than 10 MB." }, - "typeother":{ - "description":"A resource type", - "message":"other" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock won't run on any page matching:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"No filter specified!" + "filterchinese":{ + "description":"language", + "message":"Chinese" }, - "typeunknown":{ - "description":"A resource type", - "message":"unknown" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"The filter is invalid: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Subscribing to filter list..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Open the extensions page to enable the extensions that were previously disabled." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Disable these notifications" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Turkish" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Don't subscribe to more than you need -- every one slows you down a tiny bit! Credits and more lists can be found here." + }, + "typesubdocument":{ "description":"A resource type", - "message":"audio/video" + "message":"frame" }, - "filterjapanese":{ - "description":"language", - "message":"Japanese" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesian" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Allow some non-intrusive advertising" + "typeimage":{ + "description":"A resource type", + "message":"image" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ in total", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Cancel" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages AdBlock won't run on." + "savereminder":{ + "description":"Reminder to press save", + "message":"Don't forget to save!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"selector" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"We turned off Safari Content Blocking because you opted to allow non-intrusive ads. You can only select one at a time. (Why?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Last step: report the issue to us." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Check in Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Icelandic" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"To report an ad, you must be connected to the Internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Ad Blocking Filter Lists" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (recommended)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Only block ads on these sites:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Loaded on page with domain:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Reporting an ad" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"The extensions that were previously disabled have been re-enabled." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Ad Blocking Filter Lists" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"How?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Clean up this list" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Allow whitelisting of specific YouTube channels" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Help spread the word!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Third-party" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (removes annoyances on the Web)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - click for details" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock Options" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"There was an error processing your request." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"updated $hours$ hours ago", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"updated 1 hour ago" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russian and Ukrainian" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Checking for updates (should only take a few seconds)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"What's new in the latest release? See the changelog!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"updated right now" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"The extensions that were previously disabled have been re-enabled." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Right click an ad on a page to block it -- or block it here manually." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Greek" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Check for malware that could be injecting ads:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Hide a section of a webpage" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock Support" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videos and Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Type" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"What do you think will be true about this ad every time you visit this page?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Slide the slider until the ad is blocked correctly on the page, and the blocked element looks useful." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Enable AdBlock on this page" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"updated 1 minute ago" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Back" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"The filter lists block most ads on the web. You can also:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Blocked resource" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"The following information will also be included in the ad report." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Danish" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Check the Acceptable Ads filters:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Show ads on a webpage or domain" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"You can turn this back on and support the websites you love by selecting \"Allow some non-intrusive advertising\" below." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Fetching... please wait." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Invalid list URL. It'll be deleted." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"General options" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the \"Enabled\" checkbox next to every extension except for AdBlock. Leave AdBlock enabled." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"In that browser, load the page with the ad." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Show ads everywhere except for these domains..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"You forgot to attach a screenshot! We can't help you without seeing the ad(s) you're reporting." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"That matches 1 item on this page." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"And manually create a ticket, and copy and paste the information below into the \"Fill in any details you think will help us understand your issue\" section." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Be careful: if you make a mistake here a lot of other filters, including the official filters, could get broken too!
Read the filter syntax tutorial to learn how to add advanced blacklist and whitelist filters." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Whitelist $name$ channel", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"To hide the button, right click it and choose Hide Button. You can show it again under chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"General options" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock won't run on any page matching:" + "filterisraeli":{ + "description":"language", + "message":"Hebrew" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"We don't have a default filter list for that language.
Please try to find a suitable list that supports this language $link$ or block this ad for yourself on the 'Customize' tab.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This AdBlock feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Subscribe" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Czech and Slovak" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"I'm an advanced user, show me advanced options" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"We've disabled all other extensions. Now we'll reload the page with the ad. One second, please." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spanish" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Other Filter Lists" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Loaded on page with domain:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"I will fetch updates automatically; you can also update now" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Click this: Update my filters!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Show all requests" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower AdBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Last step: What makes this an ad?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Great! You're all set." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"That matches $matchcount$ items on this page.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out the people behind AdBlock, as well!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Open the extensions page." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesian" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"All set! We'll be in touch soon, most likely within a day, two if it's a holiday. In the meantime, look for an email from AdBlock. You'll find a link to your ticket on our help site there. If you prefer to follow along by email, you can do that, too!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turkish" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Find out more about the Acceptable Ads program." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Block an ad" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should AdBlock notify you when it detects malware?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Custom Filter Lists" + "updateddayago":{ + "description":"Label for subscription", + "message":"updated 1 day ago" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"Frame URL: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"The purpose of this question is to determine who should receive your report. If you answer this question incorrectly, the report will be sent to the wrong people, so it may get ignored." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Add items to the right click menu" - }, - "typeselector":{ - "description":"A resource type", - "message":"selector" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Block this ad" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Have our team requested some debug info? Click here for that!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"German" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run AdBlock on..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Reporting ads is voluntary. It helps other people by enabling the filter list maintainers to block the ad for everyone. If you're not feeling altruistic right now, that's okay. Close this page and block the ad just for yourself." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"That file name is too long. Please give your file a shorter name." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Hidden element" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"updated $seconds$ seconds ago", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Reload the page." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Don't run on this page" }, - "typepage":{ - "description":"A resource type", - "message":"page" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Let us know on our support site!" }, - "filterdutch":{ - "description":"language", - "message":"Dutch" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"That file name is too long. Please give your file a shorter name." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Don't forget to save!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Done! We reloaded the page with the ad. Please check that page to see whether the ad is gone. Then come back to this page and answer the question below." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Checking for updates (should only take a few seconds)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"All Resources" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Subscribe to this filter list, then try again: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Whitelist $name$ channel", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should AdBlock notify you when it detects malware?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Resource" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Show number of ads blocked on AdBlock menu" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Site:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Reporting an ad" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock custom filters (recommended)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"How?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Don't run on pages on this domain" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Custom Filter Lists" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Block more ads:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Required information is missing or invalid. Please fill in the questions that have a red border." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where AdBlock shouldn't block anything" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Latvian" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"You're no longer subscribed to the Acceptable Ads filter list." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Make sure you're using the right language filter(s):" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (removes annoyances on the Web)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS to match" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock has blocked a download from a site known to host malware." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"To hide the button, go to opera://extensions and check the 'Hide from toolbar' option. You can show it again by unchecking that option." + "savebutton":{ + "description":"Save button", + "message":"Save" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Not sure? just press 'Block it!' below." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Matched filter" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Fetching... please wait." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"All Resources" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Last step: report the issue to us." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock is up-to-date!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Don't run on pages on this domain" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Exactly where on that page is the ad? What does it look like?" }, - "filterisraeli":{ - "description":"language", - "message":"Hebrew" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Looks good" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Slide the slider until the ad is blocked correctly on the page, and the blocked element looks useful." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Block URLs containing this text" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Allow AdBlock to collect anonymous filter list usage and data" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"To report an ad, you must be connected to the Internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"The number of filter list rules exceeds the 50,000 limit, and has been automatically reduced. Please unsubscribe from some filter lists or disable Safari Content Blocking!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Are you sure that you want to subscribe to the $title$ filter list?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"updated 1 day ago" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Acceptable Ads (recommended)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Click this: Disable Acceptable Ads" - }, - "optionsversion":{ - "description":"Version number", - "message":"Version $version$", + "message":"updated $days$ days ago", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Remove from list" + "typeobject":{ + "description":"A resource type", + "message":"interactive object" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"That's not an image file. Please upload a .png, .gif, or .jpg file." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"What do you think will be true about this ad every time you visit this page?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Why don't you send us a bug report?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Blocked ads:" }, - "typehiding":{ - "description":"A resource type", - "message":"hiding" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filter lists" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arabic" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Frame domain: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Undo my blocks on this domain" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Top frame" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Manually edit your filters:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Finished!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Step 1: Figure out what to block" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Resource" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Please type the correct filter below and press OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Block an ad on this page" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Credit for translation goes to:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Make sure your filter lists are up to date:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock is up-to-date!" }, - "lang_english":{ - "description":"language", - "message":"English" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"English only" }, - "filtericelandic":{ - "description":"language", - "message":"Icelandic" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"OR, just click this button for us to do all of the above: Disable all other extensions" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Open the extensions page to enable the extensions that were previously disabled." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"What's new in the latest release? See the changelog!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domain of page to apply on" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial filter list (removes social media buttons)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Page:" + "filtermalware":{ + "description":"A filter list", + "message":"Malware protection" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Found a bug?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"I'm an advanced user, show me advanced options" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arabic" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage AdBlock can use. Please unsubscribe from some filter lists!" }, - "lang_czech":{ - "description":"language", - "message":"Czech" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Pay what you want!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"What's your email address?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Want to see what makes AdBlock tick?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Invalid list URL. It'll be deleted." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Hide a section of a webpage" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"General" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"or AdBlock for Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videos and Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Great! Now let's find out which extension is the cause. Go through and enable each extension one by one. The extension that brings back the ad(s) is the one you need to uninstall to get rid of the ads." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Edit" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"or Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Got a question or new idea?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"You forgot to attach a screenshot! We can't help you without seeing the ad(s) you're reporting." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Pay what you want!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"OR, just click this button for us to do all of the above: Disable all other extensions" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"This is a filter list problem. Report it here: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Learn more about malware" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Note: your report may become publicly available. Keep that in mind before including anything private." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Reload the page with the ad." + "filteritalian":{ + "description":"language", + "message":"Italian" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Install Firefox $chrome$ if you don't have it.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock updates" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Does the ad still appear?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Adblock Warning Removal list (removes warnings about using ad blockers)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Make sure you're using the right language filter(s):" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Other Filter Lists" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Make sure your filter lists are up to date:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"French" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Something went wrong while checking updates." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blocked element:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Click the Safari menu → Preferences → Extensions." }, - "typeobject":{ - "description":"A resource type", - "message":"interactive object" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Submit" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"updated right now" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"updated $days$ days ago", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Unsubscribed." + }, + "typemedia":{ "description":"A resource type", - "message":"frame" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (privacy protection)" + "message":"Latvian" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Report an ad on this page" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Block an ad on this page" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Clean up this list" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Stop blocking ads:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"German" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Error saving the uploaded file." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Be careful: this filter blocks all $elementtype$ elements on the page!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"That matches $matchcount$ items on this page.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"here" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"In what language is that page written?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Failed to fetch this filter!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Are you sure you want to remove the $count$ blocks that you have created on $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages AdBlock won't run on." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"image" + "message":"hiding" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"And manually create a ticket, and copy and paste the information below into the \"Fill in any details you think will help us understand your issue\" section." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Does the ad appear in or before a film or any other plugin like a Flash game?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"To hide the button, right click it and choose Hide Button. You can show it again under chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russian and Ukrainian" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Romanian" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Something went wrong while checking updates." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"We've disabled all other extensions. Now we'll reload the page with the ad. One second, please." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Whitelisted resource" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Spanish" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Be careful: this filter blocks all $elementtype$ elements on the page!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Czech and Slovak" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Enable ClickToFlash compatibility mode" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Frame type: " + "no":{ + "description":"A negative response to a question", + "message":"No" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Select Language -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"The filter, which can be changed on the Options page:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Install Adblock Plus for Firefox $chrome$ if you don't have it.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Hide this button" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Blocked resource" + "other":{ + "description":"Multiple choice option", + "message":"Other" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, you can still block this ad for yourself on the Options page. Thanks!" + }, + "lang_russian":{ + "description":"language", + "message":"Russian" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Does the ad appear in or before a film or any other plugin like a Flash game?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Why don't you send us a bug report?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (privacy protection)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ will be $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"The filter, which can be changed on the Options page:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Or enter a URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"The following filter:
$filter$
has an error:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"Loading..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Close" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Have our team requested some debug info? Click here for that!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Only block ads on these sites:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage AdBlock can use. Please unsubscribe from some filter lists!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"The number of filter list rules exceeds the 50,000 limit, and has been automatically reduced. Please unsubscribe from some filter lists or disable Safari Content Blocking!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Report an ad on this page" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Allow AdBlock to collect anonymous filter list usage and data" + "message":"Show debug statements in Console Log (which slows down AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, you can still block this ad for yourself on the Options page. Thanks!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Frame domain: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"The most popular Chrome extension, with over 40 million users! Blocks ads all over the web." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Found a bug?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Submit" + "lang_czech":{ + "description":"language", + "message":"Czech" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"That's not an image file. Please upload a .png, .gif, or .jpg file." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Show links to the filter lists" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Allow some non-intrusive advertising" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Swedish" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Remove from list" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Select Language -- " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Finnish" + "message":"French" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Edit" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"That file is too big. Please make sure your file is less than 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Support" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"The following information will also be included in the ad report." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Block an ad by its URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"This is a filter list problem. Report it here: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Version $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the \"Enabled\" checkbox next to every extension except for AdBlock. Leave AdBlock enabled." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"The purpose of this question is to determine who should receive your report. If you answer this question incorrectly, the report will be sent to the wrong people, so it may get ignored." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Show links to the filter lists" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Reporting ads is voluntary. It helps other people by enabling the filter list maintainers to block the ad for everyone. If you're not feeling altruistic right now, that's okay. Close this page and block the ad just for yourself." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"English only" + "yes":{ + "description":"A positive response to a question", + "message":"Yes" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Help spread the word!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"The source code is freely available!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Dutch" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"We'll only use this to contact you if we need more information." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"That matches 1 item on this page." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"updated $hours$ hours ago", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Back" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock has blocked a download from a site known to host malware." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legend: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Click this: Disable Acceptable Ads" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Enable ClickToFlash compatibility mode" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domain of page to apply on" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Support" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock updates" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Please go to our support website." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"To pause AdBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > AdBlock, and uncheck 'Enable AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Something went wrong. No resources have been sent through. This page will now close. Try reloading the website." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Learn more about malware" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Site:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Acceptable Ads (recommended)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Looks good" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause AdBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > AdBlock, and uncheck 'Enable AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Open the extensions page." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - click for details" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for AdBlock:" } } \ No newline at end of file diff --git a/_locales/es/messages.json b/_locales/es/messages.json index 63b9786f..09c6f0c6 100644 --- a/_locales/es/messages.json +++ b/_locales/es/messages.json @@ -1,901 +1,951 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Informar de un anuncio" + "filterdanish":{ + "description":"language", + "message":"Danés" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Lista de filtros de bloqueo de publicidad" + "spread_the_word":{ + "description":"Text of a share link", + "message":"¡Ayuda a correr la voz!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Sitio:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"¿Tienes alguna pregunta o idea nueva?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permitir no bloquear anuncios en canales específicos de Youtube" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Recibiendo... Por favor, espera." + }, + "tabgeneral":{ + "description":"A tab on the options page", + "message":"General" }, "filterannoyances":{ "description":"A filter list", "message":"Fanboy's Annoyances (elimina las molestias en internet)" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"En ese navegador, suscríbete a las mismas listas que tengas en éste." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ en esta página", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - Haz click para más detalles" + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"URL de lista inválida. Será eliminada." }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polaco" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"En ese navegador, carga la página con el anuncio." + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opciones generales" }, - "filterswedish":{ - "description":"A filter list", - "message":"Sueco" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"¿Qué novedades hay en la última versión? ¡Compruébalo en la lista de cambios!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS que bloquear" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Bloquear más anuncios:" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Cerrar" }, - "lang_russian":{ - "description":"language", - "message":"Ruso" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"No quiero comprobar esto" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"¡Paga lo que quieras!" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock no actuará en ninguna de estas páginas:" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Subscripción desactivada." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Mostrar anuncios en todas partes excepto en estos dominios..." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Bloquear un anuncio por su URL" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Ten cuidado: ¡si cometes un error muchos filtros, incluyendo los oficiales, podrían estropearse también!
Lee el tutorial de la sintaxis de filtros para aprender como añadir filtros avanzados a la lista negra y blanca." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Griego" + "message":"Eslovaco" }, - "filterchinese":{ - "description":"language", - "message":"Chino" + "yes":{ + "description":"A positive response to a question", + "message":"Sí" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Vídeos y Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Protección contra software malicioso" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"¿Aparece el anuncio también en ese navegador?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"¿Qué crees que es correcto sobre este anuncio cada vez que visitas la página?" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Último paso: ¿Qué hace esto un anuncio?" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Habilitar AdBlock en esta página" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"No actuar en esta página" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Atrás" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Rumano" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Mostrar número de anuncios bloqueados en el botón de AdBlock" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Para ocultar el botón haz click derecho y elige \"Ocultar botón\". Puedes volverlo a mostrar en chrome://chrome/extensions." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Las listas de filtros bloquean la mayoría de los anuncios de la red. También puedes:" + "filterisraeli":{ + "description":"language", + "message":"Hebreo" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"¡El código fuente está disponible para todos!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Esta característica de AdBlock no funciona en este sitio porque utiliza tecnología obsoleta. Puedes prohibir o permitir recursos manualmente en la pestaña 'Personalizar' de la página de opciones." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Checo y Eslovaco" + }, + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + }, + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Otras listas de filtros" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opciones" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Tu ordenador puede estar infectado por malware. Haz click aquí para obtener más información." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Recibiré actualizaciones automáticamente, aunque también puedes actualizar ahora" }, "catblock_status_paused":{ "description":"Message shown in toolbar button when CatBlock is paused", "message":"CatBlock is paused." }, + "typeunknown":{ + "description":"A resource type", + "message":"desconocido" + }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Mostrar anuncios en una web o dominio" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Eso incluye 1 elemento en la página." + "filterturkish":{ + "description":"A filter list", + "message":"Turco" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Ocultar una sección de la página" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"No se bloquean anuncios en el canal $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Cuantas más listas de filtros uses, más lentamente se ejecutará AdBlock. Utilizar demasiadas listas podría incluso llegar a hacer que el navegador se cerrase inesperadamente en determinados sitios web. Pulsa 'De acuerdo' para ser suscriptor de esta lista de todas formas." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Suscríbete a ese filtro, y vuelve a intentarlo: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opciones generales" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Tu ordenador puede estar infectado por malware. Haz click aquí para obtener más información." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock no actuará en ninguna de estas páginas:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"No tenemos un filtro determinado para ese idioma.
Por favor, busca un link con este idioma $link$ o bloquea este anuncio por ti mismo en la pestaña de 'Personalizar'.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Suscribirse" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Soy un usuario avanzado, muéstrame opciones avanzadas" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Haz clic en el anuncio, y te echaré una mano para bloquearlo." }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Ocultar este botón" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Recibiré actualizaciones automáticamente, aunque también puedes actualizar ahora" - }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Haz clic aquí: ¡Actualizar mis filtros!" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formato: ~sitio1.com|~sitio2.com|~noticias.sitio3.org" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock está pausado." - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Eso incluye $matchcount$ elementos en la página.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"¡También tenemos una página en la que puedes echar un vistazo a toda la gente que hace posible AdBlock!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesio" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tipo" - }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"¡Hay una actualización disponible para AdBlock! Dirígete $here$ para actualizar.
Atención: Si quieres recibir actualizaciones automáticamente, haz clic en Safari > Preferencias > Extensiones > Actualizaciones
y marca la opción 'Instalar actualizaciones automáticamente'.", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } - }, - "filterturkish":{ - "description":"A filter list", - "message":"Turco" + "typestylesheet":{ + "description":"A resource type", + "message":"definición de estilo" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"¿Qué es esto?" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Actualizaciones de AdBlock" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Lo siento, AdBlock está desactivado en esta página por una de tus listas de filtros." }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Lista de filtros elegidos" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"¿Deseas que AdBlock te notifique cuando detecte malware?" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"No te sucribas a más de los que necesitas, ¡cada uno ralentiza un poquito tu navegación! Los créditos y otras listas las puedes encontrar aquí." + "updateddayago":{ + "description":"Label for subscription", + "message":"Actualizado hace un día" }, - "typestylesheet":{ - "description":"A resource type", - "message":"definición de estilo" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Esta característica de AdBlock no funciona en este sitio porque utiliza tecnología obsoleta. Puedes prohibir o permitir recursos manualmente en la pestaña 'Personalizar' de la página de opciones." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"El propósito de esta pregunta es determinar quién debe recibir su informe. Si contestas de forma equivocada, el informe se enviará a las personas equivocadas, y podría ser ignorado." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"¡No se ha especificado un filtro!" }, - "filtereasylist_plus_polish":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Polaco" + "message":"Alemán" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Añadir elementos al menú de clic derecho" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Suscribirse a listas de filtros" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Bloquear este anuncio" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Griego" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"Actualizado hace $hours$ horas", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, "updatedsecondsago":{ "description":"Label for subscription", "message":"Actualizado hace $seconds$ segundos", "placeholders":{ "seconds":{ - "example":"15", - "content":"$1" + "content":"$1", + "example":"15" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"¿Nuestro equipo te ha solicitado información de depuración? ¡Haz clic aquí para enviárnosla!" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"¿No estás seguro? Tan solo pulsa '¡Bloquéalo!' debajo." }, - "typeobject":{ - "description":"A resource type", - "message":"objeto interactivo" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"En ese navegador, carga la página con el anuncio." }, - "filterhungarian":{ - "description":"language", - "message":"Húngaro" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"¡Háznoslo saber en nuestro sitio de soporte!" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"URL de lista inválida. Será eliminada." + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Comprobación de malware" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Nota: su informe puede hacerse público. Téngalo en cuenta antes de incluir algo privado." + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Bloquear anuncios solo en estos sitios:" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Recargar la página." + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "typepage":{ - "description":"A resource type", - "message":"página" + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personalizar" }, - "filterdutch":{ - "description":"language", - "message":"Holandés" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Para informar de un anuncio, debes estar conectado a internet." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"¡No te olvides de guardar!" + "buttonok":{ + "description":"OK button", + "message":"¡Ok!" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ será $value$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"No se bloquean anuncios en el canal $name$", "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Cerrar" + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Ocultar una sección de la página" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Elemento bloqueado:" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"El filtro es inválido: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Mostrar número de anuncios bloqueados en el menú de AdBlock" }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Aviso: ¡No se ha especificado un filtro!" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Informar de un anuncio" }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permitir que AdBlock recoja anónimamente datos sobre el uso de las listas de filtros" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Búlgaro" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"¿Deseas que AdBlock te notifique cuando detecte malware?" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"No actuar en páginas de este dominio" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Lista de filtros elegidos" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Mostrar anuncios en todas partes excepto en estos dominios..." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Bloquear más anuncios:" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Mostrar número de anuncios bloqueados en el menú de AdBlock" + "lang_ukranian":{ + "description":"language", + "message":"Ucraniano" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opciones" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tipo" + }, + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"El dominio o URL en el cual AdBlock no debería bloquear nada" }, "whitelistertitle2":{ "description":"The title of the whitelister dialog", "message":"No utilizar AdBlock en..." }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" - }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Anuncios bloqueados:" - }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Filtros personalizados de AdBlock (recomendado)" - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Añadir filtros para otro idioma: " - }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letón" - }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Las extensiones que habían sido deshabilitadas han sido activadas de nuevo." - }, "blockurlwithtext":{ "description":"Message of the url-blocking area", "message":"Bloquear las URLs que contengan este texto" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS que bloquear" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Excluir" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Para ocultar el botón, vaya a opera://externsions y marque la opción 'Ocultar de la barra de herramientas'. Puedes mostrarlo de nuevo desmarcando esta opción." + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Compruébalo en Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Haz clic en el anuncio, y te echaré una mano para bloquearlo." + "savebutton":{ + "description":"Save button", + "message":"Guardar" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Informar de un anuncio en esta página" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Se ve bien" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Personalizar AdBlock" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ruso y ucraniano" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"No se ha encontrado malware conocido." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Recibiendo... Por favor, espera." + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permitir que AdBlock recoja anónimamente datos sobre el uso de las listas de filtros" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Ten cuidado: ¡si cometes un error muchos filtros, incluyendo los oficiales, podrían estropearse también!
Lee el tutorial de la sintaxis de filtros para aprender como añadir filtros avanzados a la lista negra y blanca." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Solución para los vídeos de Hulu.com que no se reproducen (requiere reiniciar el navegador)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Soporte de AdBlock" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandés" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Personalizar AdBlock" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Ocultar este botón" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"¡AdBlock está actualizado!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Lista de filtros de bloqueo de publicidad" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ en total", + "updateddaysago":{ + "description":"Label for subscription", + "message":"Actualizado hace $days$ días", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "days":{ + "content":"$1", + "example":"15" } } }, - "filterisraeli":{ - "description":"language", - "message":"Hebreo" + "typeobject":{ + "description":"A resource type", + "message":"objeto interactivo" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Lo siento, AdBlock está desactivado en esta página por una de tus listas de filtros." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"¿Qué crees que es correcto sobre este anuncio cada vez que visitas la página?" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Anuncios bloqueados:" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "typemain_frame":{ + "description":"A resource type", + "message":"página" + }, + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Coreano" }, "undo_last_block":{ "description":"Menu entry to let the user cancel the result of running the blacklist wizard", "message":"Deshacer mis bloqueos en este dominio" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Por favor escribe el filtro correcto debajo y pulsa Aceptar" - }, - "updateddayago":{ - "description":"Label for subscription", - "message":"Actualizado hace un día" - }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar manualmente tus filtros:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ en esta página", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Mostrar enlaces a las listas de filtros" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"¿No estás seguro? Tan solo pulsa '¡Bloquéalo!' debajo." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (recomendado)" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"Actualizado hace una hora" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Paso 1: Averigua qué bloquear" }, - "optionsversion":{ - "description":"Version number", - "message":"Versión $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"¡También tenemos una página en la que puedes echar un vistazo a toda la gente que hace posible AdBlock!" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Borrar de la lista" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Sitio:" }, - "other":{ - "description":"Multiple choice option", - "message":"Otro" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"aquí" }, - "typehiding":{ + "typepopup":{ "description":"A resource type", - "message":"ocultando" + "message":"ventana emergente" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Listas de filtros" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Si ves un anuncio, no hagas un informe de errores, ¡haz un informe de anuncios!" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"¿El anuncio aparece antes del vídeo o plugin (como un juego en Flash), o aparece en él?" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"¡AdBlock está actualizado!" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Otras listas de filtros" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Recargar la página." }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"o Chrome" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Sólo en inglés" }, - "buttonblockit":{ - "description":"Block button", - "message":"¡Bloquéalo!" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Estás usando una versión antigua de AdBlock. Por favor ve al administrador de extensiones, activa el modo para desarrolladores y haz click en \"Actualizar extensiones ahora\"" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"¡Completado!" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock está pausado." }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Bloquear un anuncio en esta página" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"O, simplemente haz clic en este botón para que hagamos nosotros todo indicado arriba: Desactivar todas las demás extensiones" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"No quiero comprobar esto" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"¿Qué novedades hay en la última versión? ¡Compruébalo en la lista de cambios!" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "filterantisocial":{ + "description":"A filter list", + "message":"Lista de filtros Antisocial (elimina los botones de las redes sociales)" }, - "lang_english":{ - "description":"language", - "message":"Inglés" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Encontrando anuncios...

Esto solo tardará un momento." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personalizar" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Soy un usuario avanzado, muéstrame opciones avanzadas" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pausar AdBlock" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"En ese navegador, suscríbete a las mismas listas que tengas en éste." }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"¿Estás seguro de que deseas suscribirte a la lista de filtros $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Bloquear un anuncio" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Abre la página de extensiones para activar las extensiones que fueron desactivadas anteriormente." + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Dominio de la página que bloquear" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Aviso: ¡en todos los demás sitios web verás anuncios!
Esto se salta las normas de todos los otros filtros para estos sitios." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Coreano" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Las extensiones que habían sido deshabilitadas han sido activadas de nuevo." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Página:" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "foundbug":{ + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"¿Has encontrado un error?" + "message":"¿Quieres ver los engranajes que mueven AdBlock?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Paso 1: Averigua qué bloquear" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Filtros personalizados de AdBlock (recomendado)" }, - "lang_czech":{ - "description":"language", - "message":"Checho" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Cuantas más listas de filtros uses, más lentamente se ejecutará AdBlock. Utilizar demasiadas listas podría incluso llegar a hacer que el navegador se cerrase inesperadamente en determinados sitios web. Pulsa 'De acuerdo' para ser suscriptor de esta lista de todas formas." + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"¿Qué es esto?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"o AdBlock para Chrome" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Bloquear un anuncio" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Los créditos por la traducción son para:" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formato: ~sitio1.com|~sitio2.com|~noticias.sitio3.org" }, - "filterdanish":{ - "description":"language", - "message":"Danés" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typesub_frame":{ - "description":"A resource type", - "message":"marco" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Vídeos y Flash" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Editar" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Las listas de filtros bloquean la mayoría de los anuncios de la red. También puedes:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Encontrando anuncios...

Esto solo tardará un momento." + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Para ocultar el botón, haz clic derecho en la barra de herramientas de Safari y selecciona 'Personalizar barra de herramientas', a continuación arrastra el botón de AdBlock fuera de la barra. Puedes volverlo a mostrar arrastrándolo de vuelta a la barra de herramientas." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"El dominio o URL en el cual AdBlock no debería bloquear nada" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Has excedido el límite de espacio de Dropbox. Elimina algunas entradas de tus filtros personalizados o desactivados y vuélvelo a intentar." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Comprobando la existencia de actualizaciones (sólo debe tardar unos pocos segundos)..." + "filterhungarian":{ + "description":"language", + "message":"Húngaro" }, - "typescript":{ - "description":"A resource type", - "message":"script" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"o Chrome" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"No actuar en páginas de este dominio" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Suscribirse" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Recarga la página con el anuncio." + "pwyw":{ + "description":"Text of a payment request link", + "message":"¡Paga lo que quieras!" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Instalar Firefox $chrome$ si no lo tienes.", + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar filtros desactivados:" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Hay un problema de la lista de filtros. Informa de él aquí: $link$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Actualizaciones de AdBlock" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Elemento bloqueado:" }, - "no":{ - "description":"A negative response to a question", - "message":"No" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Nota: su informe puede hacerse público. Téngalo en cuenta antes de incluir algo privado." }, - "lang_ukranian":{ - "description":"language", - "message":"Ucraniano" + "typepage":{ + "description":"A resource type", + "message":"página" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"Actualizado hace $minutes$ minutos", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francés" + "adstillappear":{ + "description":"Question on ad report page", + "message":"¿Sigue apareciendo el anuncio?" + }, + "typeother":{ + "description":"A resource type", + "message":"otro" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Haz clic aquí: ¡Actualizar mis filtros!" + }, + "filteritalian":{ + "description":"language", + "message":"Italiano" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Para ocultar el botón, vaya a opera://externsions y marque la opción 'Ocultar de la barra de herramientas'. Puedes mostrarlo de nuevo desmarcando esta opción." + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Algo ha fallado durante la comprobación de actualizaciones." }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"O, simplemente haz clic en este botón para que hagamos nosotros todo indicado arriba: Desactivar todas las demás extensiones" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Haz clic en el menú de Safari → Preferencias → Extensiones." }, "typeobject_subrequest":{ "description":"A resource type", "message":"object_subrequest" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"Actualizado ahora mismo" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Enviar" }, - "savebutton":{ - "description":"Save button", - "message":"Guardar" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Página:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Aviso: ¡en todos los demás sitios web verás anuncios!
Esto se salta las normas de todos los otros filtros para estos sitios." + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Desactivar estas notificaciones" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Recarga la página con el anuncio." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Subscribiéndose a la lista de filtros..." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Subscripción desactivada." }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"Actualizado hace $days$ días", + "typemedia":{ + "description":"A resource type", + "message":"audio/vídeo" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"marco" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (protección de la privacidad)" + "message":"Letón" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Aprender más sobre el malware" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Bloquear un anuncio en esta página" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Checo y Eslovaco" + "buttonblockit":{ + "description":"Block button", + "message":"¡Bloquéalo!" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Estás usando una versión antigua de AdBlock. Por favor ve al administrador de extensiones, activa el modo para desarrolladores y haz click en \"Actualizar extensiones ahora\"" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Para de bloquear anuncios:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opciones de AdBlock" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permitir no bloquear anuncios en canales específicos de Youtube" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Comprobación de malware" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"¿En que idioma está escrita esa página?" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Limpiar esta lista" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Desmarca la casilla de \"Activado\" de cada extensión excepto la de AbBlock. Deja AdBlock activado." }, - "filterantisocial":{ - "description":"A filter list", - "message":"Lista de filtros Antisocial (elimina los botones de las redes sociales)" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Mostrar datos debug en la consola (lo que ralentiza AdBlock)" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Borrar de la lista" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Has excedido el límite de espacio de Dropbox. Elimina algunas entradas de tus filtros personalizados o desactivados y vuélvelo a intentar." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Reactivar AdBlock" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"No podemos bloquear por el momento anuncios dentro de aplicaciones Flash u otros plugins. Estamos esperando que sea soportado por el navegador y WebKit." }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "filtereasylist_plus_german":{ + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Desliza el regulador para determinar en qué páginas del dominio AdBlock no se ejecutará." + }, + "typehiding":{ + "description":"A resource type", + "message":"ocultando" + }, + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock está desactivado en esta página." + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"¿El anuncio aparece antes del vídeo o plugin (como un juego en Flash), o aparece en él?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ruso y ucraniano" + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Alemán" + "message":"Español" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Bloquear este anuncio" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Ten cuidado: ¡Esto bloqueará todos los elementos de tipo $elementtype$ de la página!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"aquí" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Activar modo de compatibilidad con ClickToFlash" }, - "yes":{ - "description":"A positive response to a question", - "message":"Sí" + "no":{ + "description":"A negative response to a question", + "message":"No" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Solución para los vídeos de Hulu.com que no se reproducen (requiere reiniciar el navegador)" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Habilitar AdBlock en esta página" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Excluir" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"El filtro, que puede cambiarse en la página de opciones:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"¿En que idioma está escrita esa página?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Mostrar número de anuncios bloqueados en el botón de AdBlock" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"¡Falló!" + }, + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pausar AdBlock" + }, + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"El siguiente filtro:
$filter$
tiene un error:
$message$", + "placeholders":{ + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" + } + } + }, + "lang_english":{ + "description":"language", + "message":"Inglés" + }, + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Añadir elementos al menú de clic derecho" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Vale, puedes seguir bloqueando el anuncio tú mismo en la página de opciones. ¡Gracias!" + }, + "lang_russian":{ + "description":"language", + "message":"Ruso" }, "confirm_undo_custom_filters":{ "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", "message":"¿Estás seguro de que quieres eliminar los $count$ bloqueos que has creado para $host$?", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } + }, + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Estás utilizando una versión antigua de Safari. Consigue la última versión para utilizar el botón de AdBlock de la barra para pausar AdBlock, añadir páginas a la lista blanca, e informar de anuncios. Actualizar ahora." + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (protección de la privacidad)" + }, + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ será $value$", + "placeholders":{ + "attribute":{ + "content":"$1", + "example":"class" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "typeimage":{ - "description":"A resource type", - "message":"imagen" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"O introduce una URL:" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Los créditos por la traducción son para:" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"¡Completado!" + }, + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Reactivar AdBlock" + }, + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Añadir filtros para otro idioma: " }, "loading":{ "description":"Generic message displayed during processes that take some time", @@ -905,360 +955,350 @@ "description":"Message at the top of the blacklist options tab", "message":"Haz clic derecho en un anuncio de la página para bloquearlo -- o bloquéalo aquí manualmente." }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Para ocultar el botón haz click derecho y elige \"Ocultar botón\". Puedes volverlo a mostrar en chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumano" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editar filtros desactivados:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "filteracceptable_ads":{ + "filtermalware":{ "description":"A filter list", - "message":"Anuncios Aceptables (recomendado)" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Algo ha fallado durante la comprobación de actualizaciones." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Para ocultar el botón, haz clic derecho en la barra de herramientas de Safari y selecciona 'Personalizar barra de herramientas', a continuación arrastra el botón de AdBlock fuera de la barra. Puedes volverlo a mostrar arrastrándolo de vuelta a la barra de herramientas." - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"Actualizado hace un minuto" - }, - "typemain_frame":{ - "description":"A resource type", - "message":"página" - }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "message":"Protección contra software malicioso" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Informar de un anuncio en esta página" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Mostrar datos debug en la consola (lo que ralentiza AdBlock)" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Instalar Firefox $chrome$ si no lo tienes.", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"O introduce una URL:" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Mueve la barra hasta que el anuncio esté correctamente bloqueado, y se vea bien." }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Estás utilizando una versión antigua de Safari. Consigue la última versión para utilizar el botón de AdBlock de la barra para pausar AdBlock, añadir páginas a la lista blanca, e informar de anuncios. Actualizar ahora." + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Has excedido el límite de almacenamiento que AdBlock puede usar. ¡Por favor, elimina tu suscripción a algunas listas de filtros!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Seleccionar idioma -- " + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"¡La extensión más popular de Chrome, con más de 40 millones de usuarios! Bloquea anuncios de todo internet." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"¿Has encontrado un error?" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Haz clic en el menú de Safari → Preferencias → Extensiones." + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Aprender más sobre el malware" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Para de bloquear anuncios:" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"¡La extensión más popular de Chrome, con más de 40 millones de usuarios! Bloquea anuncios de todo internet." + "typescript":{ + "description":"A resource type", + "message":"script" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"¿Sigue apareciendo el anuncio?" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "tabsupport":{ + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Soporte" - }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Búlgaro" + "message":"Listas de filtros" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"¿Quieres ver los engranajes que mueven AdBlock?" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Desactivar estas notificaciones" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"No se ha encontrado malware conocido." + "filterchinese":{ + "description":"language", + "message":"Chino" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"¡Falló!" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"El filtro es inválido: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"El filtro, que puede cambiarse en la página de opciones:" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Subscribiéndose a la lista de filtros..." }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editar manualmente tus filtros:" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Abre la página de extensiones para activar las extensiones que fueron desactivadas anteriormente." }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"El siguiente filtro:
$filter$
tiene un error:
$message$", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Eso incluye $matchcount$ elementos en la página.", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "typepopup":{ - "description":"A resource type", - "message":"ventana emergente" + "updatedhourago":{ + "description":"Label for subscription", + "message":"Actualizado hace una hora" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Mueve la barra hasta que el anuncio esté correctamente bloqueado, y se vea bien." + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tipo" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Seleccionar idioma -- " }, - "lang_slovak":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"Eslovaco" - }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Suscribirse a listas de filtros" + "message":"Francés" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"¿Aparece el anuncio también en ese navegador?" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesio" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"No actuar en esta página" + "typeimage":{ + "description":"A resource type", + "message":"imagen" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Bloquear anuncios solo en estos sitios:" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Editar" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"¡Háznoslo saber en nuestro sitio de soporte!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"¡Fallo al recibir esta lista!" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Último paso: ¿Qué hace esto un anuncio?" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ en total", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Has excedido el límite de almacenamiento que AdBlock puede usar. ¡Por favor, elimina tu suscripción a algunas listas de filtros!" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Soporte" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"No podemos bloquear por el momento anuncios dentro de aplicaciones Flash u otros plugins. Estamos esperando que sea soportado por el navegador y WebKit." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Bloquear un anuncio por su URL" }, - "buttonok":{ - "description":"OK button", - "message":"¡Ok!" + "buttoncancel":{ + "description":"Cancel button", + "message":"Cancelar" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Vale, puedes seguir bloqueando el anuncio tú mismo en la página de opciones. ¡Gracias!" + "savereminder":{ + "description":"Reminder to press save", + "message":"¡No te olvides de guardar!" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"General" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Anuncios Aceptables (recomendado)" }, - "typeother":{ - "description":"A resource type", - "message":"otro" + "optionsversion":{ + "description":"Version number", + "message":"Versión $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Enviar" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"¡No se ha especificado un filtro!" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"El propósito de esta pregunta es determinar quién debe recibir su informe. Si contestas de forma equivocada, el informe se enviará a las personas equivocadas, y podría ser ignorado." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"¿Estás seguro de que deseas suscribirte a la lista de filtros $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"desconocido" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"¡El código fuente está disponible para todos!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Finlandés" + "message":"Holandés" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Por favor escribe el filtro correcto debajo y pulsa Aceptar" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock está desactivado en esta página." + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"¡Hay una actualización disponible para AdBlock! Dirígete $here$ para actualizar.
Atención: Si quieres recibir actualizaciones automáticamente, haz clic en Safari > Preferencias > Extensiones > Actualizaciones
y marca la opción 'Instalar actualizaciones automáticamente'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"audio/vídeo" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Eso incluye 1 elemento en la página." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japonés" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Permitir alguna publicidad no molesta" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Limpiar esta lista" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Hay un problema de la lista de filtros. Informa de él aquí: $link$", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"Actualizado hace $hours$ horas", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Desmarca la casilla de \"Activado\" de cada extensión excepto la de AbBlock. Deja AdBlock activado." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Atrás" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Mostrar enlaces a las listas de filtros" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Sólo en inglés" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Cancelar" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opciones de AdBlock" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"¡Ayuda a correr la voz!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Desliza el regulador para determinar en qué páginas del dominio AdBlock no se ejecutará." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock ha bloqueado una descarga de un sitio conocido por alojar software malicioso." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Compruébalo en Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"No te sucribas a más de los que necesitas, ¡cada uno ralentiza un poquito tu navegación! Los créditos y otras listas las puedes encontrar aquí." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Activar modo de compatibilidad con ClickToFlash" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Comprobando la existencia de actualizaciones (sólo debe tardar unos pocos segundos)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Suscríbete a ese filtro, y vuelve a intentarlo: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Otro" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Dominio de la página que bloquear" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"Actualizado ahora mismo" + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"¿Nuestro equipo te ha solicitado información de depuración? ¡Haz clic aquí para enviárnosla!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"Actualizado hace $minutes$ minutos", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Para informar de un anuncio, debes estar conectado a internet." + "lang_czech":{ + "description":"language", + "message":"Checho" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (recomendado)" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Permitir alguna publicidad no molesta" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "filterswedish":{ + "description":"A filter list", + "message":"Sueco" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"¡Fallo al recibir esta lista!" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Soporte de AdBlock" }, - "filteritalian":{ - "description":"language", - "message":"Italiano" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tipo" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Español" + "typesubdocument":{ + "description":"A resource type", + "message":"marco" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Se ve bien" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"Actualizado hace un minuto" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Si ves un anuncio, no hagas un informe de errores, ¡haz un informe de anuncios!" + "typesub_frame":{ + "description":"A resource type", + "message":"marco" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"¿Tienes alguna pregunta o idea nueva?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - Haz click para más detalles" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Aviso: ¡No se ha especificado un filtro!" } } \ No newline at end of file diff --git a/_locales/fi/messages.json b/_locales/fi/messages.json index f8194d86..9d2d4dd1 100644 --- a/_locales/fi/messages.json +++ b/_locales/fi/messages.json @@ -1,1546 +1,1586 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Liitä ruutukaappaus:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Tunnettuja haittaohjelmia ei löytynyt." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Tilaa samat suodatinlistat kyseisessä selaimessa kuin sinulla on tässä." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Onko sinulla kysymys tai ehdotus?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Lataa sivu, jolla on mainos, sillä selaimella." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Asetukset" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Ruotsi" + "message":"EasyList (suositeltu)" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Estä lisää mainoksia:" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ tällä sivulla", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"venäjä" + "message":"puola" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Poistettu käytöstä." + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"Vastaava CSS" }, - "filterchinese":{ - "description":"language", - "message":"kiina" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Poista käytöstä" }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Jos olet luonut toimivan suodattimen \"estä mainos\" -toiminnon avulla, liitä se alla olevaan ruutuun:" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"En halua tarkistaa tätä" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Epäsosiaalinen suodatinluottelo (poistaa some-painikkeet)" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Ole varovainen: jos teet virheen tässä, myös viralliset suodattimet voivat lakata toimimasta!
Lue suodattimen syntaksiopas saadaksesi lisätietoja suodattimien muokkauksesta." }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Löysitkö mainoksen netistä? Autamme sinua ilmoittamaan siitä!" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Näkyykö mainos myös siinä selaimessa?" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Näytä estettyjen mainosten määrän AdBlock-painikkeessa" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Jos et myöskään halua nähdä tällaisia mainoksia, voit jättää hyväksyttävien mainosten suodatinlistan pois päältä." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Lähdekoodi on vapaasti saatavilla!" + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"liettua" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"päivitetty minuutti sitten" + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Ota suodatinlista käyttöön, ja yritä sitten uudestaan: $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Suodattimen haku epäonnistui!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"Tietokoneesi voi olla haittaohjelman saastuttama. Klikkaa tästä saadaksesi lisää tietoja." }, - "linkblockadbyurl":{ + "linkunblock":{ "description":"Link on the 'Customize' tab", - "message":"Estä mainos sen osoitteen avulla" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Piilota tämä painike" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Automaattiset päivitykset ovat käytössä; voit myös päivittää nyt" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Muoto: ~sivu1.com|~sivu2.com|~uutiset.sivu3.org" + "message":"Näytä mainokset verkko-osoitteessa tai verkkotunnuksessa" }, - "filtereasylist_plus_estonian":{ + "lang_slovak":{ "description":"language", - "message":"viro" + "message":"Slovakki" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tyyppi" + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Asenna AdBlock Plus Firefoxille $chrome$ jos sinulla ei ole sitä.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock-päivitys on saatavilla! Napsauta $here$ päivittääksesi.
Huomaa: Jos haluat saada päivitykset automaattisesti, napsauta Safari > Asetukset > Lisäosat > Päivitykset
ja merkitse kohta 'Asenna päivitykset automaattisesti'.", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Tälle kielelle ei ole oletussuodatinlistaa.
Yritä löytää sopiva lista tälle kielelle $link$ tai estä tämä mainos itse 'Mukauta' -välilehdellä.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "link":{ + "content":"", + "example":"here" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Mikä tämä on?" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Napsauta mainosta estääksesi sen." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "topframe":{ + "description":"Resource list page: frame type", + "message":"Pääkehys" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Älä ota käyttöön liian monta suodatinta -- jokainen hidastaa vähän lisää! Tekijöiden tiedot ja lisälistoja löytyy täältä." + "typestylesheet":{ + "description":"A resource type", + "message":"tyylimääritelmä" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Tämä AdBlock-ominaisuus ei toimi tällä sivustolla, koska sitä käytetään vanhentuneella tekniikalla. Voit lisätä kohteita mustalle tai valkoisille listalle manuaalisesti \"Mukauta\"-välilehdessä." + "typeunknown":{ + "description":"A resource type", + "message":"tuntematon" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"puola" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"AdBlock on poistettu käytöstä tällä sivulla (suodatinlistojen perusteella)." }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Lisätietoja hyväksyttävistä mainoksista." + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"päivitetty $seconds$ sekuntia sitten", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Kolmas osapuoli" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Suodatinta ei määritetty!" }, - "filterhungarian":{ + "filtereasylist_plus_greek":{ "description":"language", - "message":"unkari" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Huomautus: ilmoituksesi saatetaan julkaista. Pidä se mielessä ennen kuin sisällytät mitään yksityistä." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Poista joitakin suodatinlistoja käytöstä. Lisätietoja AdBlockin asetuksissa." + "message":"kreikka" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Suodattimen alkuperä:\n$list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Käytät vanhaa versiota AdBlockista. Siirry lisäosasivulle, ota 'Kehittäjätila' käyttöön ja napsauta 'Päivitä lisäosat nyt'" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"AdBlock on poistettu käytöstä tällä sivulla (suodatinlistojen perusteella)." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Mikä on nimesi?" }, - "filtericelandic":{ - "description":"language", - "message":"islanti" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Korjaa ongelma, jossa Hulu.com-videot eivät toimi (vaatii selaimen uudelleenkäynnistyksen)" }, "blacklisterwarningnofilter":{ "description":"Warns the user that no filter was specified", "message":"Varoitus: suodatinta ei määritetty!" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock on pois käytöstä tällä sivulla." + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Mukauta" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Näytä mainokset kaikkialla paitsi näissä verkkotunnuksissa..." + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Löysitkö mainoksen netistä? Autamme sinua ilmoittamaan siitä!" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Asetukset" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"viro" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." - }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Estetyt mainokset:" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"bulgaria" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Lisää suodattimia toiselle kielelle: " + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Sallittu resurssi" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Napsauta mainosta estääksesi sen." + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Sisällöneston sääntöjen raja ylitetty" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"TAI, klikkaa tätä painiketta, niin teemme kaiken puolestasi: Poista kaikki muut laajennukset käytöstä" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Älä käytä AdBlockia..." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Estä osoitteet, jotka sisältävät tämän tekstin" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Upeaa! Olet valmis." + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Sulje" }, - "other":{ - "description":"Multiple choice option", - "message":"Muu" + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Tarkista Firefoxissa $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock-tuki" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Viimeinen vaihe: mikä tekee tästä mainoksen?" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Mukauta AdBlockia" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Vaadittuja tietoja puuttuu tai ne ovat virheellisiä. Tarkista kysymykset, jotka on reunustettu punaisella." + "filtereasylist_plun_korean":{ + "description":"language", + "message":"korea" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Virhe tallennettaessa ladattua tiedostoa." + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Mikset lähettäisi meille virheilmoitusta?" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Kirjoita oikea suodatin alle ja napsauta OK" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"suomi" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Vaihe 1: määritä, mitä estetään" + "typescript":{ + "description":"A resource type", + "message":"komentosarja" }, - "filterdanish":{ + "lang_ukranian":{ "description":"language", - "message":"tanska" + "message":"ukraina" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ tällä sivulla", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Tunnettuja haittaohjelmia ei löytynyt." }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Alikehys" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Poista joitakin suodatinlistoja käytöstä. Lisätietoja AdBlockin asetuksissa." }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"päivitetty tunti sitten" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Lisäksi löydät kaikki AdBlockin takana olevat henkilöt täältä!" }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"korea" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"tästä" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"tai Chrome" + "typepopup":{ + "description":"A resource type", + "message":"ponnahdusikkuna" }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Mikä on nimesi?" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Jos näet mainoksen, ethän tee virheilmoitusta, vaan tee ilmoitus mainoksesta!" }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Chromen suosituin lisäosa. Yli 40 miljoonaa käyttäjää! Estää kaikki mainokset." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Näytä kaikki pyynnöt" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Lataa sivu uudelleen." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"En halua tarkistaa tätä" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Millä kielellä sivu on kirjoitettu?" + }, + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock on pysäytetty." }, "catblock_options":{ "description":"Title of the CatBlock options page tab", "message":"CatBlock Options" }, - "yes":{ - "description":"A positive response to a question", - "message":"Kyllä" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Jatka AdBlockin käyttöä" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Kumoa estoni tässä verkkotunnuksessa" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Etsitään mainoksia...

Tämä kestää hetken." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Mukauta" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock on pois käytöstä tällä sivulla." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pysäytä AdBlock" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Tilaa samat suodatinlistat kyseisessä selaimessa kuin sinulla on tässä." }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Oletko varma, että haluat tilata suodatinlistan $title$?", + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Estä mainos" + }, + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Varoitus: näet kaikissa muissa sivustoissa mainoksia!
Tämä ohittaa kaikki filtterit muissa sivustoissa." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock-päivitys on saatavilla! Napsauta $here$ päivittääksesi.
Huomaa: Jos haluat saada päivitykset automaattisesti, napsauta Safari > Asetukset > Lisäosat > Päivitykset
ja merkitse kohta 'Asenna päivitykset automaattisesti'.", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Missä kohtaa sivua mainos tarkalleen ottaen on? Miltä mainos näyttää?" - }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"tai AdBlock Chromelle" - }, - "typestylesheet":{ - "description":"A resource type", - "message":"tyylimääritelmä" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Valmis!" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlockin mukautetut listat (suositeltu)" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tyyppi" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Sisällöneston sääntöjen raja ylitetty" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Mikä tämä on?" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Etsitään mainoksia...

Tämä kestää hetken." + "filterjapanese":{ + "description":"language", + "message":"japani" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Suodattimen alkuperä:\n$list$", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Osoite tai verkkotunnus, jossa AdBlockin ei pitäisi estää mitään" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Ota suodatinlistoja käyttöön" }, - "typescript":{ - "description":"A resource type", - "message":"komentosarja" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Sivusto:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ yhteensä", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Lisää suodattimia toiselle kielelle: " }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Vastaava suodatin" }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Valmista! Olemme yhteydessä pian, todennäköisesti päivän tai loma-aikoina parin päivän kuluessa. Odotellessa voit lukea AdBlockilta saamasi sähköpostin. Löydät linkin lähettämääsi pyyntöön ohjesivustollemme. Jos haluat seurata edistymistä sähköpostistasi, se hoituu myös siellä!" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Suodatinlistat estävät suurimman osan mainoksista. Voit myös:" }, - "no":{ - "description":"A negative response to a question", - "message":"Ei" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Piilottaaksesi painikkeen, klikkaa hiiren oikealla Safarin työkaluriviä ja valitse Mukauta työkaluriviä, sitten vedä AdBlock-painike pois työkaluriviltä. Voit näyttää sen uudelleen vetämällä sen takaisin työkaluriviin." }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Joku meni vikaan. Resursseja ei kuitenkaan ole lähetetty. Tämä sivu sulkeutuu nyt. Yritä päivittää verkkosivu." + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Olet ylittänyt Dropboxin kokorajoituksen. Poista kohteita mukautetuista tai käytöstä poistetuista suodattimista ja yritä uudelleen." }, - "lang_ukranian":{ - "description":"language", - "message":"ukraina" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Ota käyttöön" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"päivitetty $minutes$ minuuttia sitten", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "contentblockingwarning":{ + "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", + "message":"Huomaa: mainosten salliminen tietyillä sivuilla ei ole mahdollista, kun Safarin sisällönesto on käytössä." }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Et enää tilaa hyväksyttävät mainokset -suodatinlistaa." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Estetty kohde:" }, - "filtermalware":{ - "description":"A filter list", - "message":"Haittaohjelmien suodatus" + "typepage":{ + "description":"A resource type", + "message":"sivu" }, - "savebutton":{ - "description":"Save button", - "message":"Tallenna" + "typeother":{ + "description":"A resource type", + "message":"muu" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Varoitus: näet kaikissa muissa sivustoissa mainoksia!
Tämä ohittaa kaikki filtterit muissa sivustoissa." + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Napsauta tästä: Päivitä suodattimeni!" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Poista nämä ilmoitukset käytöstä" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Otetaan suodatinlistaa käyttöön..." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Piilotettu elementti" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Käytät vanhaa versiota AdBlockista. Siirry lisäosasivulle, ota 'Kehittäjätila' käyttöön ja napsauta 'Päivitä lisäosat nyt'" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Jos haluat piilottaa painikkeen, siirry osoitteeseen opera://extensions ja valitse ruutu 'Piilota työkaluriviltä'. Voit ottaa painikkeen käyttöön uudestaan poistamalla valinnan ruudusta." }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlockin asetukset" + "typeobject_subrequest":{ + "description":"A resource type", + "message":"object_subrequest" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Sivu:" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Mainoksia lisäävien haittaohjelmien tarkistus:" + "buttonblockit":{ + "description":"Block button", + "message":"Estä!" }, - "debuginlogoption":{ + "allow_whitelisting_youtube_channels":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Näytä virheilmoitukset Virhekonsolissa (hidastaa AdBlockin toimintaa)" - }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Olet ylittänyt Dropboxin kokorajoituksen. Poista kohteita mukautetuista tai käytöstä poistetuista suodattimista ja yritä uudelleen." - }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Jatka AdBlockin käyttöä" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Korjaa ongelma, jossa Hulu.com-videot eivät toimi (vaatii selaimen uudelleenkäynnistyksen)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Poista käytöstä" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Poista kaikki laajennukset käytöstä, paitsi AdBlock:" + "message":"Salli tiettyjen YouTube-kanavien mainosten näyttäminen" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Kiitokset käännöksestä seuraaville:" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"LADATAAN..." + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Mainosten estäminen Flash- ja muiden lisäosien sisällä ei vielä ole mahdollista. Odotamme tukea selaimelta ja WebKitiltä." }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Klikkaa hiiren oikealla painikkeella mainosta sivulla -- tai estä se tässä manuaalisesti." + "filterhungarian":{ + "description":"language", + "message":"unkari" }, - "contentblockingwarning":{ - "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", - "message":"Huomaa: mainosten salliminen tietyillä sivuilla ei ole mahdollista, kun Safarin sisällönesto on käytössä." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Estä tämä mainos" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Käytämme sähköpostiosoitettasi vain silloin, jos tarvitsemme lisätietoja sinulta." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Salli AdBlock tällä sivulla" }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Muokkaa suodattimia, jotka poistettu käytöstä:" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Näytä estettyjen mainosten määrän AdBlock-painikkeessa" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Virhe!" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Ota Safarin sisällönesto käyttöön" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pysäytä AdBlock" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Mikä on sähköpostiosoitteesi?" + "lang_english":{ + "description":"language", + "message":"englanti" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Piilottaaksesi painikkeen, klikkaa hiiren oikealla Safarin työkaluriviä ja valitse Mukauta työkaluriviä, sitten vedä AdBlock-painike pois työkaluriviltä. Voit näyttää sen uudelleen vetämällä sen takaisin työkaluriviin." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Lisää kohteet oikean klikkauksen valikkoon" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Virhe käsiteltäessä pyyntöä." + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Siirry tukisivustollemme." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Mainostenestovaroitusten poisto (poistaa varoitukset mainostenestäjistä)" }, "typemain_frame":{ "description":"A resource type", "message":"sivu" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" - }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Valmista! Mainoksen sisältänyt sivu on nyt päivitetty. Tarkista, onko mainos edelleen sivulla. Tule sitten takaisin tälle sivulle ja vastaa alla olevaan kysymykseen." - }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Tai syötä osoite:" - }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Käytät Safarin vanhaa versiota. Lataa uusin versio käyttääksesi AdBlockin työkalurivin painiketta AdBlockin toiminnan keskeyttämiseen, verkkosivujen mainosteneston käytöstä poistoon, ja mainoksista ilmoittamiseen. Päivitä nyt." + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Oletko varma, että haluat poistaa $count$ estoa, jotka olet estänyt verkkotunnuksessa $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Napsauta Safari-valikkoa → Asetukset → Lisäosat." + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Selite: " }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Lopeta mainosten estäminen:" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "buttonblockit":{ - "description":"Block button", - "message":"Estä!" + "updatedminutesago":{ + "description":"Label for subscription", + "message":"päivitetty $minutes$ minuuttia sitten", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Näkyykö mainos edelleen?" + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Liitä ruutukaappaus:" }, - "filtereasylist_plus_bulgarian":{ + "filtereasylist_plus_romanian":{ "description":"language", - "message":"bulgaria" - }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Hienoa! Selvitetäänpä nyt, mistä laajennuksesta ongelma johtuu. Ota laajennukset yksi kerrallaan käyttöön. Laajennus, jonka käyttöönoton myötä mainos palaa, on sellainen, joka sinun tulee poistaa päästäksesi eroon mainoksesta." - }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Virhe!" + "message":"romania" }, - "manualfilteredit":{ + "manualexcludefilteredit":{ "description":"Subtitle on the 'Customize' tab", - "message":"Muokkaa suodattimia manuaalisesti:" + "message":"Muokkaa suodattimia, jotka poistettu käytöstä:" }, - "filteritalian":{ - "description":"language", - "message":"italia" + "subframe":{ + "description":"Resource list page: frame type", + "message":"Alikehys" }, - "typepopup":{ - "description":"A resource type", - "message":"ponnahdusikkuna" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Päivitä sivu, joka sisältää mainoksen." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tyyppi" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Ota Safarin sisällönesto käyttöön" }, - "lang_slovak":{ - "description":"language", - "message":"Slovakki" + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Asenna Firefox $chrome$ jos sinulla ei ole sitä.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Ota suodatinlistoja käyttöön" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Suodatinlistat" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Voit kytkeä tämän takaisin päälle ja tukea sivustoja, joista pidät, valitsemalla \"Salli osa ei-häiritsevästä mainonnasta\" alla." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Jos olet luonut toimivan suodattimen \"estä mainos\" -toiminnon avulla, liitä se alla olevaan ruutuun:" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Näkyykö mainos myös siinä selaimessa?" + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Tiedosto on liian iso. Varmista, että tiedosto on alle 10 Mt." }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Älä käytä tällä sivulla" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Olen edistynyt käyttäjä, näytä edistyneet asetukset" }, - "filtereasylist_plus_lithuania":{ + "filterchinese":{ "description":"language", - "message":"liettua" - }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Kerro meille tukisivustolla!" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock on pysäytetty." + "message":"kiina" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Mainosten estäminen Flash- ja muiden lisäosien sisällä ei vielä ole mahdollista. Odotamme tukea selaimelta ja WebKitiltä." + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Suodatin ei kelpaa: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "buttonok":{ - "description":"OK button", - "message":"OK" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Otetaan suodatinlistaa käyttöön..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Mitä uutta uusimmassa versiossa? Katso muutosloki!" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Avaa laajennukset-sivu ottaaksesi käyttöön laajennukset, jotka oli poistettu aiemmin käytöstä." }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Jos et myöskään halua nähdä tällaisia mainoksia, voit jättää hyväksyttävien mainosten suodatinlistan pois päältä." + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Poista nämä ilmoitukset käytöstä" }, - "typeother":{ - "description":"A resource type", - "message":"muu" + "filterturkish":{ + "description":"A filter list", + "message":"Turkki" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Suodatinta ei määritetty!" + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Älä ota käyttöön liian monta suodatinta -- jokainen hidastaa vähän lisää! Tekijöiden tiedot ja lisälistoja löytyy täältä." }, - "typeunknown":{ + "typesubdocument":{ "description":"A resource type", - "message":"tuntematon" + "message":"kehys" }, - "typemedia":{ - "description":"A resource type", - "message":"ääni tai video" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesia" }, - "filterjapanese":{ - "description":"language", - "message":"japani" + "typeimage":{ + "description":"A resource type", + "message":"kuva" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Salli osa ei-häiritsevästä mainonnasta" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ yhteensä", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Peruuta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Voit raahata alla olevaa palkkia määrittääksesi sivut, joilla AdBlock ei ole käytössä." + "savereminder":{ + "description":"Reminder to press save", + "message":"Muista tallentaa!" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Viimeinen vaihe: kerro meille ongelmasta." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Tarkista Firefoxissa $chrome$", + "typeselector":{ + "description":"A resource type", + "message":"valitsin" + }, + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "filtericelandic":{ + "description":"language", + "message":"islanti" + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Oletko varma, että haluat tilata suodatinlistan $title$?", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Ilmoittaaksesi mainoksesta sinun täytyy olla yhteydessä internetiin." - }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (suositeltu)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Estä mainokset vain näillä sivuilla:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Ladattiin sivu verkkotunnuksessa:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Mainoksen ilmoittaminen" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Laajennukset, jotka oli aiemmin poistettu käytöstä, on nyt otettu takaisin käyttöön." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Mainostenestolistat" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Kuinka?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Puhdista lista" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Salli tiettyjen YouTube-kanavien mainosten näyttäminen" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Auta välittämään sanaa!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Kolmas osapuoli" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (poistaa ärsyttävät kohteet verkosta)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - napsauta saadaksesi tietoja" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlockin asetukset" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Virhe käsiteltäessä pyyntöä." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"päivitetty $hours$ tuntia sitten", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"päivitetty tunti sitten" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Venäjä ja ukraina" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Tarkistetaan päivityksiä (kestää vain muutaman sekunnin)..." }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Salli AdBlockin kerätä nimettömiä tietoja suodatinlistojen käytöstä ja datasta" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"päivitetty juuri nyt" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Laajennukset, jotka oli aiemmin poistettu käytöstä, on nyt otettu takaisin käyttöön." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Klikkaa hiiren oikealla painikkeella mainosta sivulla -- tai estä se tässä manuaalisesti." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"kreikka" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Mainoksia lisäävien haittaohjelmien tarkistus:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Piilota verkkosivun kohta" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock-tuki" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videot ja Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tyyppi" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Mitkä ehdot pitää mielestäsi täyttyä joka kerta tällä sivustolla käytäessä?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Raahaa säädintä oikealle niin kauan, että mainos häviää näkyvistä ja sivu näyttää hyvältä." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Salli AdBlock tällä sivulla" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"päivitetty minuutti sitten" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Edellinen" + "typesub_frame":{ + "description":"A resource type", + "message":"kehys" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Suodatinlistat estävät suurimman osan mainoksista. Voit myös:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Estetty resurssi" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Myös seuraavat tiedot sisältyvät virheilmoitukseen." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"tanska" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Tarkista hyväksyttävien mainosten suodatinlistat:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Näytä mainokset verkko-osoitteessa tai verkkotunnuksessa" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Voit kytkeä tämän takaisin päälle ja tukea sivustoja, joista pidät, valitsemalla \"Salli osa ei-häiritsevästä mainonnasta\" alla." }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Suodatin vastaa 1 kohdetta tällä sivulla." + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Ole varovainen: jos teet virheen tässä, myös viralliset suodattimet voivat lakata toimimasta!
Lue suodattimen syntaksiopas saadaksesi lisätietoja suodattimien muokkauksesta." + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Salli kanava $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "fetchinglabel":{ + "description":"Status label", + "message":"Haetaan... odota hetki." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Listan osoite ei kelpaa. Se poistetaan." }, "generaloptions":{ "description":"Title of first tab page", "message":"Yleiset asetukset" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock ei ole käytössä sivuilla, jotka vastaavat näitä ehtoja:" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Poista rasti ruudusta 'Käytössä' jokaiselta lisäosalta paitsi AdBlockilta. Jätä AdBlock käyttöön." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Lataa sivu, jolla on mainos, sillä selaimella." }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Tälle kielelle ei ole oletussuodatinlistaa.
Yritä löytää sopiva lista tälle kielelle $link$ tai estä tämä mainos itse 'Mukauta' -välilehdellä.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Näytä mainokset kaikkialla paitsi näissä verkkotunnuksissa..." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Ota käyttöön" + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Unohdit liittää kuvakaappauksen! Emme voi auttaa sinua, jos emme näe mainosta tai mainoksia, jota/joita olet ilmoittamassa." }, - "advanced_options2":{ + "catblock_debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Olen edistynyt käyttäjä, näytä edistyneet asetukset" + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"espanja" + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Ja luo pyyntö manuaalisesti. Kopioi ja liitä alla olevat tiedot \"Fill in any details you think will help us understand your issue\" -kohtaan." }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Ladattiin sivu verkkotunnuksessa:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Napsauta tästä: Päivitä suodattimeni!" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Piilottaaksesi painikkeen, napsauta sitä hiiren oikealla ja napsauta Piilota painike. Voit ottaa sen takaisin käyttöön kohdassa chrome://chrome/extensions." }, - "you_know_thats_a_bad_idea_right":{ + "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Mitä enemmän suodatinlistoja sinulla on käytössä, sitä hitaammin AdBlock toimii. Jos käytät liian paljon listoja, selaimesi saattaa jopa kaatua joillakin verkkosivuilla. Paina OK liittyäksesi listalle varoituksesta huolimatta." - }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Viimeinen vaihe: mikä tekee tästä mainoksen?" + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Suodatin vastaa $matchcount$ kohdetta tällä sivulla.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "filterisraeli":{ + "description":"language", + "message":"Heprea" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Lisäksi löydät kaikki AdBlockin takana olevat henkilöt täältä!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Tämä AdBlock-ominaisuus ei toimi tällä sivustolla, koska sitä käytetään vanhentuneella tekniikalla. Voit lisätä kohteita mustalle tai valkoisille listalle manuaalisesti \"Mukauta\"-välilehdessä." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesia" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tshekki ja slovakia" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turkki" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Kaikki muut laajennukset on nyt poistettu käytöstä. Sivu, jolla mainos on, päivitetään nyt. Hetki vain." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Estä mainos" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Muut suodatinlistat" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Mukautetut suodatinlistat" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Automaattiset päivitykset ovat käytössä; voit myös päivittää nyt" }, - "frameurl":{ - "description":"Resource list page: full URL of the frame", - "message":"Kehyksen osoite: " + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Näytä kaikki pyynnöt" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Tämän kysymyksen tarkoitus on se, kuka saa vastaanottaa raporttisi. Jos vastaat tähän kysymykseen väärin, raportti lähetetään väärille henkilöille, ja se saatetaan hylätä." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Lisää kohteet oikean klikkauksen valikkoon" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Mitä enemmän suodatinlistoja sinulla on käytössä, sitä hitaammin AdBlock toimii. Jos käytät liian paljon listoja, selaimesi saattaa jopa kaatua joillakin verkkosivuilla. Paina OK liittyäksesi listalle varoituksesta huolimatta." }, - "typeselector":{ - "description":"A resource type", - "message":"valitsin" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Upeaa! Olet valmis." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Estä tämä mainos" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Onko tiimi pyytänyt vianratkaisutietoja? Napsauta tästä saadaksesi ne!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Avaa laajennukset-sivu." }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Älä käytä AdBlockia..." + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Valmista! Olemme yhteydessä pian, todennäköisesti päivän tai loma-aikoina parin päivän kuluessa. Odotellessa voit lukea AdBlockilta saamasi sähköpostin. Löydät linkin lähettämääsi pyyntöön ohjesivustollemme. Jos haluat seurata edistymistä sähköpostistasi, se hoituu myös siellä!" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Mainoksista ilmoittaminen on vapaaehtoista. Mainoksista ilmoittamalla autat suodatinlistojen ylläpidossa, jolloin mainos piilotetaan jatkossa myös muilta. Jos et halua ilmoittaa nyt, asia on ok. Sulje tämä sivu ja estä mainos vain itseltäsi." + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Lisätietoja hyväksyttävistä mainoksista." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Piilotettu elementti" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Ilmoita, kun haittaohjelma havaitaan" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Lataa sivu uudelleen." + "updateddayago":{ + "description":"Label for subscription", + "message":"päivitetty päivä sitten" }, - "typepage":{ - "description":"A resource type", - "message":"sivu" + "frameurl":{ + "description":"Resource list page: full URL of the frame", + "message":"Kehyksen osoite: " }, - "filterdutch":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"hollanti" + "message":"saksa" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, "adreport_response_file_name":{ "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", "message":"Tiedoston nimi on liian pitkä. Anna tiedostolle lyhyempi nimi." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Muista tallentaa!" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"päivitetty $seconds$ sekuntia sitten", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Tarkistetaan päivityksiä (kestää vain muutaman sekunnin)..." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Älä käytä tällä sivulla" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Yleiset" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Kerro meille tukisivustolla!" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Ota suodatinlista käyttöön, ja yritä sitten uudestaan: $list_title$", + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "buttonok":{ + "description":"OK button", + "message":"OK" + }, + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Valmista! Mainoksen sisältänyt sivu on nyt päivitetty. Tarkista, onko mainos edelleen sivulla. Tule sitten takaisin tälle sivulle ja vastaa alla olevaan kysymykseen." + }, + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Kaikki resurssit" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Salli kanava $name$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Ilmoita, kun haittaohjelma havaitaan" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Resurssi" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Näytä estettyjen mainosten määrän AdBlock-valikossa" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Sivusto:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Mainoksen ilmoittaminen" + }, + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Kuinka?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Älä käytä tämän verkkotunnuksen sivuilla" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Mukautetut suodatinlistat" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Estä lisää mainoksia:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Vaadittuja tietoja puuttuu tai ne ovat virheellisiä. Tarkista kysymykset, jotka on reunustettu punaisella." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Osoite tai verkkotunnus, jossa AdBlockin ei pitäisi estää mitään" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlockin mukautetut listat (suositeltu)" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Et enää tilaa hyväksyttävät mainokset -suodatinlistaa." }, - "filterlatvian":{ + "filterannoyances":{ "description":"A filter list", - "message":"Latvia" - }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Varmista, että käytät oikean kielen suodatinlistaa/-listoja:" + "message":"Fanboy's Annoyances (poistaa ärsyttävät kohteet verkosta)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"Vastaava CSS" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock esti latauksen sivustolta, joka on levittänyt haittaohjelmia." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Jos haluat piilottaa painikkeen, siirry osoitteeseen opera://extensions ja valitse ruutu 'Piilota työkaluriviltä'. Voit ottaa painikkeen käyttöön uudestaan poistamalla valinnan ruudusta." + "savebutton":{ + "description":"Save button", + "message":"Tallenna" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Etkö ole varma? Paina vain 'Estä!'-painiketta." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Vastaava suodatin" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Haetaan... odota hetki." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Kaikki resurssit" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Viimeinen vaihe: kerro meille ongelmasta." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock on ajan tasalla!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Älä käytä tämän verkkotunnuksen sivuilla" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Tämän kysymyksen tarkoitus on se, kuka saa vastaanottaa raporttisi. Jos vastaat tähän kysymykseen väärin, raportti lähetetään väärille henkilöille, ja se saatetaan hylätä." }, - "filterisraeli":{ - "description":"language", - "message":"Heprea" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Näyttää hyvältä" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Raahaa säädintä oikealle niin kauan, että mainos häviää näkyvistä ja sivu näyttää hyvältä." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Estä osoitteet, jotka sisältävät tämän tekstin" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Salli AdBlockin kerätä nimettömiä tietoja suodatinlistojen käytöstä ja datasta" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Ilmoittaaksesi mainoksesta sinun täytyy olla yhteydessä internetiin." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Suodatinlistojen kohteiden määrä ylittää rajan 50 000, ja kohteita on poistettu automaattisesti. Poista joidenkin suodatinlistojen tilaus tai poista Safarin sisällönesto käytöstä!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Mainostenestolistat" }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"päivitetty päivä sitten" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Hyväksyttävät mainokset (suositus)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Klikkaa tästä: poista hyväksyttävät mainokset käytöstä" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versio $version$", + "message":"päivitetty $days$ päivää sitten", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Poista listalta" + "typeobject":{ + "description":"A resource type", + "message":"interaktiivinen objekti" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Et ladannut kuvatiedostoa. Lataa .png-, .gif- tai .jpg-tiedosto." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Mitkä ehdot pitää mielestäsi täyttyä joka kerta tällä sivustolla käytäessä?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Mikset lähettäisi meille virheilmoitusta?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Estetyt mainokset:" }, - "typehiding":{ - "description":"A resource type", - "message":"piilottaminen" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Suodatinlistat" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"arabia" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Kehysverkkotunnus: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Kumoa estoni tässä verkkotunnuksessa" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Pääkehys" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Muokkaa suodattimia manuaalisesti:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Valmis!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Vaihe 1: määritä, mitä estetään" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Resurssi" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Kirjoita oikea suodatin alle ja napsauta OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Estä mainos tällä sivulla" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Kiitokset käännöksestä seuraaville:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Varmista, että suodatinlistasi ovat ajan tasalla:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock on ajan tasalla!" }, - "lang_english":{ - "description":"language", - "message":"englanti" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Vain englanniksi" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Avaa laajennukset-sivu ottaaksesi käyttöön laajennukset, jotka oli poistettu aiemmin käytöstä." + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"TAI, klikkaa tätä painiketta, niin teemme kaiken puolestasi: Poista kaikki muut laajennukset käytöstä" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Sivun verkkotunnus, jossa käytetään" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Mitä uutta uusimmassa versiossa? Katso muutosloki!" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Sivu:" + "filterantisocial":{ + "description":"A filter list", + "message":"Epäsosiaalinen suodatinluottelo (poistaa some-painikkeet)" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Oletko löytänyt ohjelmavirheen?" + "filtermalware":{ + "description":"A filter list", + "message":"Haittaohjelmien suodatus" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"arabia" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock ei ole käytössä sivuilla, jotka vastaavat näitä ehtoja:" }, - "lang_czech":{ - "description":"language", - "message":"tšekki" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"AdBlock käyttää tällä hetkellä liikaa tilaa, koska suodattimia on käytössä liian paljon. Poista osa suodattimista käytöstä!" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Maksa mitä haluat!" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Mikä on sähköpostiosoitteesi?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Haluatko nähdä, kuinka AdBlock toimii?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Listan osoite ei kelpaa. Se poistetaan." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Piilota verkkosivun kohta" }, - "typesub_frame":{ - "description":"A resource type", - "message":"kehys" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Yleiset" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"tai AdBlock Chromelle" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videot ja Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Hienoa! Selvitetäänpä nyt, mistä laajennuksesta ongelma johtuu. Ota laajennukset yksi kerrallaan käyttöön. Laajennus, jonka käyttöönoton myötä mainos palaa, on sellainen, joka sinun tulee poistaa päästäksesi eroon mainoksesta." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Muokkaa" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"tai Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Onko sinulla kysymys tai ehdotus?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Muoto: ~sivu1.com|~sivu2.com|~uutiset.sivu3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Unohdit liittää kuvakaappauksen! Emme voi auttaa sinua, jos emme näe mainosta tai mainoksia, jota/joita olet ilmoittamassa." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Maksa mitä haluat!" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Jos näet mainoksen, ethän tee virheilmoitusta, vaan tee ilmoitus mainoksesta!" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Tämä on suodatinlistan ongelma. Ilmoita se tästä: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Lisätietoja haittaohjelmista" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Huomautus: ilmoituksesi saatetaan julkaista. Pidä se mielessä ennen kuin sisällytät mitään yksityistä." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Päivitä sivu, joka sisältää mainoksen." + "filteritalian":{ + "description":"language", + "message":"italia" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Asenna Firefox $chrome$ jos sinulla ei ole sitä.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock-päivitykset" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Näkyykö mainos edelleen?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Mainostenestovaroitusten poisto (poistaa varoitukset mainostenestäjistä)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Varmista, että käytät oikean kielen suodatinlistaa/-listoja:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Muut suodatinlistat" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Varmista, että suodatinlistasi ovat ajan tasalla:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"ranska" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Jokin meni vikaan tarkistettaessa päivityksiä." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Estetty kohde:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Napsauta Safari-valikkoa → Asetukset → Lisäosat." }, - "typeobject":{ - "description":"A resource type", - "message":"interaktiivinen objekti" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Lähetä" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"päivitetty juuri nyt" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"päivitetty $days$ päivää sitten", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Poistettu käytöstä." + }, + "typemedia":{ "description":"A resource type", - "message":"kehys" + "message":"ääni tai video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (yksityisyydensuoja)" + "message":"Latvia" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Raportoi mainoksesta tällä sivulla" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Estä mainos tällä sivulla" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Puhdista lista" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Lopeta mainosten estäminen:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"saksa" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Virhe tallennettaessa ladattua tiedostoa." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Varoitus: tämä suodatin estää kaikki tyypin $elementtype$ kohteet tällä sivulla!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Suodatin vastaa $matchcount$ kohdetta tällä sivulla.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"tästä" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Millä kielellä sivu on kirjoitettu?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Suodattimen haku epäonnistui!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Oletko varma, että haluat poistaa $count$ estoa, jotka olet estänyt verkkotunnuksessa $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Voit raahata alla olevaa palkkia määrittääksesi sivut, joilla AdBlock ei ole käytössä." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"kuva" + "message":"piilottaminen" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Ja luo pyyntö manuaalisesti. Kopioi ja liitä alla olevat tiedot \"Fill in any details you think will help us understand your issue\" -kohtaan." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Näkyykö mains videossa tai jossakin muussa vastaavassa, kuten Flash-pelissä tai ennen sitä?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Piilottaaksesi painikkeen, napsauta sitä hiiren oikealla ja napsauta Piilota painike. Voit ottaa sen takaisin käyttöön kohdassa chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Venäjä ja ukraina" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"romania" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Jokin meni vikaan tarkistettaessa päivityksiä." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Kaikki muut laajennukset on nyt poistettu käytöstä. Sivu, jolla mainos on, päivitetään nyt. Hetki vain." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Sallittu resurssi" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"espanja" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Varoitus: tämä suodatin estää kaikki tyypin $elementtype$ kohteet tällä sivulla!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tshekki ja slovakia" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"ClickToFlash-yhteensopivuustila" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Kehystyyppi: " + "no":{ + "description":"A negative response to a question", + "message":"Ei" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Valitse kieli -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Suodatin, jota voidaan muuttaa asetussivulla:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Asenna AdBlock Plus Firefoxille $chrome$ jos sinulla ei ole sitä.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Piilota tämä painike" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Estetty resurssi" + "other":{ + "description":"Multiple choice option", + "message":"Muu" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, voit edelleen estää mainoksen vain itsellesi Asetukset-sivulla. Kiitos!" + }, + "lang_russian":{ + "description":"language", + "message":"venäjä" + }, + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Käytät Safarin vanhaa versiota. Lataa uusin versio käyttääksesi AdBlockin työkalurivin painiketta AdBlockin toiminnan keskeyttämiseen, verkkosivujen mainosteneston käytöstä poistoon, ja mainoksista ilmoittamiseen. Päivitä nyt." }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Näkyykö mains videossa tai jossakin muussa vastaavassa, kuten Flash-pelissä tai ennen sitä?" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (yksityisyydensuoja)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ arvossa $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Suodatin, jota voidaan muuttaa asetussivulla:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Tai syötä osoite:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Seuraava suodatin:
$filter$
sisältää virheen:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Kehystyyppi: " }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Sulje" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"LADATAAN..." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Estä mainokset vain näillä sivuilla:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Onko tiimi pyytänyt vianratkaisutietoja? Napsauta tästä saadaksesi ne!" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"AdBlock käyttää tällä hetkellä liikaa tilaa, koska suodattimia on käytössä liian paljon. Poista osa suodattimista käytöstä!" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Suodatin ei kelpaa: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Suodatinlistojen kohteiden määrä ylittää rajan 50 000, ja kohteita on poistettu automaattisesti. Poista joidenkin suodatinlistojen tilaus tai poista Safarin sisällönesto käytöstä!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, voit edelleen estää mainoksen vain itsellesi Asetukset-sivulla. Kiitos!" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Raportoi mainoksesta tällä sivulla" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Näytä virheilmoitukset Virhekonsolissa (hidastaa AdBlockin toimintaa)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Kehysverkkotunnus: " }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Lähetä" + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Chromen suosituin lisäosa. Yli 40 miljoonaa käyttäjää! Estää kaikki mainokset." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Oletko löytänyt ohjelmavirheen?" }, - "filtereasylist_plus_finnish":{ + "lang_czech":{ "description":"language", - "message":"suomi" - }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" - }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Tiedosto on liian iso. Varmista, että tiedosto on alle 10 Mt." + "message":"tšekki" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Myös seuraavat tiedot sisältyvät virheilmoitukseen." + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Tämä on suodatinlistan ongelma. Ilmoita se tästä: $link$", - "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" - } - } + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Et ladannut kuvatiedostoa. Lataa .png-, .gif- tai .jpg-tiedosto." }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Poista rasti ruudusta 'Käytössä' jokaiselta lisäosalta paitsi AdBlockilta. Jätä AdBlock käyttöön." + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, "showlinkstolists2":{ "description":"Option on the 'Filter lists' tab of the Options page", "message":"Näytä linkit suodatinlistoille" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Vain englanniksi" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Salli osa ei-häiritsevästä mainonnasta" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Auta välittämään sanaa!" + "filterswedish":{ + "description":"A filter list", + "message":"Ruotsi" }, - "malwarenotificationmessage":{ - "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock esti latauksen sivustolta, joka on levittänyt haittaohjelmia." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Poista listalta" }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Selite: " + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"ClickToFlash-yhteensopivuustila" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Valitse kieli -- " + }, + "filtereasylist_plus_french":{ + "description":"language", + "message":"ranska" + }, + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Muokkaa" }, "tabsupport":{ "description":"A tab on the options page", "message":"Tuki" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Siirry tukisivustollemme." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Estä mainos sen osoitteen avulla" + }, + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Versio $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } + }, + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Missä kohtaa sivua mainos tarkalleen ottaen on? Miltä mainos näyttää?" + }, + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Mainoksista ilmoittaminen on vapaaehtoista. Mainoksista ilmoittamalla autat suodatinlistojen ylläpidossa, jolloin mainos piilotetaan jatkossa myös muilta. Jos et halua ilmoittaa nyt, asia on ok. Sulje tämä sivu ja estä mainos vain itseltäsi." + }, + "yes":{ + "description":"A positive response to a question", + "message":"Kyllä" + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Lähdekoodi on vapaasti saatavilla!" + }, + "filterdutch":{ + "description":"language", + "message":"hollanti" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Käytämme sähköpostiosoitettasi vain silloin, jos tarvitsemme lisätietoja sinulta." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Suodatin vastaa 1 kohdetta tällä sivulla." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"päivitetty $hours$ tuntia sitten", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Edellinen" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Klikkaa tästä: poista hyväksyttävät mainokset käytöstä" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Sivun verkkotunnus, jossa käytetään" + }, + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock-päivitykset" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Joku meni vikaan. Resursseja ei kuitenkaan ole lähetetty. Tämä sivu sulkeutuu nyt. Yritä päivittää verkkosivu." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Lisätietoja haittaohjelmista" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Hyväksyttävät mainokset (suositus)" }, "safaricontentblockingpausemessage":{ "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", "message":"Jos haluat keskeyttää AdBlockin toiminnan, kun sisällönesto on käytössä, valitse Safari (valikkopalkista) > Asetukset > Laajennukset > AdBlock ja poista rasti ruudusta 'Ota AdBlock käyttöön'." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" - }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Näyttää hyvältä" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - napsauta saadaksesi tietoja" }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Avaa laajennukset-sivu." + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Poista kaikki laajennukset käytöstä, paitsi AdBlock:" } } \ No newline at end of file diff --git a/_locales/fr/messages.json b/_locales/fr/messages.json index eea0b6bc..c173211d 100644 --- a/_locales/fr/messages.json +++ b/_locales/fr/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Joignez une capture d'écran :" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Aucun logiciel malveillant connu n'a été trouvé." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Dans ce navigateur, abonnez-vous aux mêmes listes de filtres que vous avez ici." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Une question ou une nouvelle idée ?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Dans cet autre navigateur, ouvrez la page avec la publicité." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Options" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Suédois" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Bloquer plus de publicités :" - }, - "lang_russian":{ - "description":"language", - "message":"Russe" + "message":"EasyList (recommandé)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Désabonné." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ sur cette page", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Chinois" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Si vous avez créé un filtre fonctionnel à l'aide de l'assistant \"bloquer une pub\", collez-le dans le champ ci-dessous :" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Liste de filtres Antisocial (supprime les boutons de réseaux sociaux)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Vous avez trouvé une pub sur une page web ? Nous allons vous aider à trouver le bon endroit pour la signaler !" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Afficher le nombre de pubs bloquées sur le bouton AdBlock" + "message":"Polonais" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Le code source est disponible librement !" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS correspondant :" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"Mis à jour il y a 1 minute." + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Exclure" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Impossible de récupérer ce filtre !" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Je ne veux pas vérifier cela" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Merci de relancer Safari pour terminer la désactivation du Blocage de Contenu." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Bloquer une publicité par son URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Masquer ce bouton" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Attention : faire une erreur ici peut entraîner un mauvais fonctionnement des filtres officiels.
Consultez le tutoriel de syntaxe pour apprendre à ajouter des filtres avancés." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Les listes seront mises à jour automatiquement. Vous pouvez aussi les mettre à jour maintenant" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Est-ce que la publicité apparaît aussi dans cet autre navigateur ?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format : ~site1.com|~site2.com|~news.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Si vous préférez ne pas voir des pubs telles que celle-ci, vous pouvez laisser la liste de filtres \"Publicités Acceptables\" désactivée." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Estonien" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Type" + "message":"Lituanien" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Il y a une mise à jour pour AdBlock ! Cliquez $here$ pour mettre à jour.
Note: si vous souhaitez recevoir des mises à jour automatiquement, il suffit de cliquer sur Safari > Préférences > Extensions > Mises à jour
et cocher l'option \"Installer automatiquement\".", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Abonnez-vous à cette liste de filtres, et réessayez : $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Qu'est-ce que c'est ?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Trop de filtres activés ralentissent la navigation, choisissez donc uniquement ceux qui vous sont utiles !
Les crédits et autres listes se trouvent ici." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Cette fonctionnalité d'AdBlock ne fonctionne pas sur ce site car celui-ci utilise des technologies obsolètes. Vous pouvez bloquer ou autoriser des ressources manuellement dans l'onglet \"Personnaliser\" des options AdBlock." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polonais" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"En savoir plus sur le programme Publicités Acceptables." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"Mis à jour il y a $seconds$ secondes.", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Votre ordinateur semble être infecté par des logiciels malveillants. Cliquez ici pour davantage d'informations." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Afficher les publicités sur une page ou un domaine" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Hongrois" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Note : votre rapport peut être rendu public. Gardez cela à l'esprit avant d'inclure quoi que ce soit de privé." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Désactivez quelques listes de filtres. Plus d'infos dans les Options AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Slovaque" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Origine du filtre :\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Installez Adblock Plus pour Firefox $chrome$ si vous ne l'avez pas.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Désolé, AdBlock est désactivé sur cette page par un ou plusieurs de vos filtres." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filtre invalide : $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Nous n'avons pas de liste de filtres pour cette langue.
Essayez de trouver une liste appropriée qui supporte cette langue $link$ ou bloquez cette publicité pour vous-même dans l'onglet \"Personnaliser\".", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Attention : aucun filtre spécifié !" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock est désactivé sur cette page." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Cliquez sur la pub à bloquer." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Afficher les publicités partout sauf sur ces domaines..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Premier cadre" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Options" + "typestylesheet":{ + "description":"A resource type", + "message":"définition de style" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"inconnu" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Désolé, AdBlock est désactivé sur cette page par un ou plusieurs de vos filtres." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Pubs bloquées :" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Ajouter des filtres pour une autre langue : " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Tierce-partie" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Cliquez sur la pub à bloquer." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Pas de filtre spécifié !" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"une recherche de photos (ex : course de voilier)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grec" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Si vous voyez une publicité sur un site, n'envoyez pas un rapport de bogue, mais signalez-nous la publicité !" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Vous utilisez une version obsolète d'AdBlock. Merci d'aller sur la page des extensions, activer le 'Mode développeur' et cliquer sur 'Mettre à jour les extensions maintenant'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Génial ! Il n'y a rien d'autre à faire." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Quel est votre nom ?" }, - "other":{ - "description":"Multiple choice option", - "message":"Autre" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Contourner le problème des vidéos Hulu.com qui ne se lisent pas (nécessite un redémarrage de votre navigateur)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Support AdBlock" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Attention : aucun filtre spécifié !" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personnaliser" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Vous avez trouvé une pub sur une page web ? Nous allons vous aider à trouver le bon endroit pour la signaler !" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estonien" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Personnaliser AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Les informations requises sont invalides ou manquantes. Veuillez remplir les questions marquées en rouge." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgare" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Erreur lors de l'enregistrement du fichier téléversé." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Resource autorisée" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Merci d'entrer le filtre correct ci-dessous et appuyer sur OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Limite de Blocage de Contenu dépassée" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Étape 1 : Indiquer quoi bloquer" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Cochez la case à côté des séries de photos que vous désirez utiliser." }, - "filterdanish":{ - "description":"language", - "message":"Danois" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Ne pas exécuter AdBlock sur..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ sur cette page", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Bloquer les URL contenant ce texte :" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Fermer" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Vérifier dans Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Sous-cadre" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Étape 2 : Options de blocage" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"Mis à jour il y a 1 heure." + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Si vous voyez une publicité sur un site, n'envoyez pas un rapport de bogue, mais signalez-nous la publicité !" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Coréen" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ou Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Quel est votre nom ?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"La plus populaire des extensions Chrome, avec plus de 40 millions d'utilisateurs ! Bloque la publicité sur le web." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Vous utilisez une ancienne version de Safari. Merci de mettre à jour vers la dernière version afin de pouvoir utiliser le bouton de la barre d'outils pour désactiver AdBlock, autoriser des sites web, ou rapporter des pubs. Mettre à jour maintenant." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Afficher toutes les requêtes" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandais" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Je ne veux pas vérifier cela" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"Options CatBlock" + "lang_ukranian":{ + "description":"language", + "message":"Ukrainien" }, - "yes":{ - "description":"A positive response to a question", - "message":"Oui" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Aucun logiciel malveillant connu n'a été trouvé." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Annuler mes blocages sur ce domaine" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Désactivez quelques listes de filtres. Plus d'infos dans les Options AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personnaliser" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Vous avez été désabonné de la liste de filtres Publicités Acceptables parce que vous avez activé le Blocage de Contenu Safari. Vous ne pouvez pas activer les deux à la fois. (Pourquoi ?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Désactiver AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Nous avons également une page sur laquelle vous pouvez trouver les contributeurs AdBlock !" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Êtes-vous certain de vouloir vous abonner à la liste de filtres $title$ ?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"ici" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Où exactement se trouve la pub sur cette page ? À quoi ressemble-t-elle ?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ou AdBlock pour Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Recharger la page." }, - "typestylesheet":{ - "description":"A resource type", - "message":"définition de style" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Dans quelle langue cette page est-elle écrite ?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock est désactivé." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"(expérimental)" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"Options CatBlock" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Limite de Blocage de Contenu dépassée" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Réactiver AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Recherche des pubs...

Cela peut prendre un moment." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"URL Flickr photoset (ex : $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock est désactivé sur cette page." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Le domaine ou l'URL où AdBlock ne doit rien bloquer :" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Dans ce navigateur, abonnez-vous aux mêmes listes de filtres que vous avez ici." }, - "typescript":{ - "description":"A resource type", - "message":"script" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Bloquer une pub" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ au total", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Attention : vous verrez les pubs sur tous les autres sites !
Ceci annule tous les autres filtres pour ces sites." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Il y a une mise à jour pour AdBlock ! Cliquez $here$ pour mettre à jour.
Note: si vous souhaitez recevoir des mises à jour automatiquement, il suffit de cliquer sur Safari > Préférences > Extensions > Mises à jour
et cocher l'option \"Installer automatiquement\".", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Tout est bon ! Nous entrerons bientôt en contact avec vous, probablement dans un jour, deux si c'est un jour férié. En attendant, vous allez recevoir un email d'AdBlock avec un lien vers votre discussion sur notre site de support. Si vous préférez continuer par e-mail, c'est aussi possible !" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Terminé !" }, - "no":{ - "description":"A negative response to a question", - "message":"Non" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Filtres personnalisés AdBlock (recommandé)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Quelque chose s'est mal passé. Aucune ressource n'a été envoyée. Cette page va maintenant se fermer. Essayez de recharger le site web." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Type" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Qu'est-ce que c'est ?" + }, + "filterjapanese":{ "description":"language", - "message":"Ukrainien" + "message":"Japonais" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"Mis à jour il y a $minutes$ minutes.", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Origine du filtre :\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Vous avez été désabonné de la liste de filtres Publicités Acceptables parce que vous avez activé le Blocage de Contenu Safari. Vous ne pouvez pas activer les deux à la fois. (Pourquoi ?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Vous n'êtes plus abonné à la liste de filtres Publicités Acceptables." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Protection contre les logiciels malveillants" - }, - "savebutton":{ - "description":"Save button", - "message":"Enregistrer" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Attention : vous verrez les pubs sur tous les autres sites !
Ceci annule tous les autres filtres pour ces sites." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Désactiver ces notifications" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Abonnement à la liste de filtres..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Abonnement aux listes de filtres" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Vous utilisez une version obsolète d'AdBlock. Merci d'aller sur la page des extensions, activer le 'Mode développeur' et cliquer sur 'Mettre à jour les extensions maintenant'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Type de cadre : " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Options AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Ajouter des filtres pour une autre langue : " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Filtre correspondant" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Recherche de logiciels malveillants qui pourraient injecter de la pub :" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Les listes de filtres bloquent la plupart des publicités, mais vous pouvez également :" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Afficher les messages de débogage dans la Console (ralentit AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Pour masquer ce bouton, faites un clic droit dessus et choisissez \"Personnaliser la barre d'outils\". Vous pouvez ensuite le faire glisser hors de la barre d'outils. Pour l'afficher à nouveau, glissez-le dans la barre d'outils." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Vous avez dépassé la limite de stockage de Dropbox. Effacez quelques entrées de vos filtres personnalisés ou désactivés, et essayez à nouveau." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Réactiver AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Contourner le problème des vidéos Hulu.com qui ne se lisent pas (nécessite un redémarrage de votre navigateur)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Exclure" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Désactivez toutes les extensions à part AdBlock :" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Traduction par :" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"Chargement..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Faites un clic droit sur une pub pour la bloquer, ou bloquez-la ici manuellement." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"S'abonner" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Note : Autoriser la pub sur une page ou un site n'est pas supporté lorsque le Blocage de Contenu Safari est activé." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Nous ne l'utiliserons que pour vous contacter si nous avons besoin de plus de détails." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Modifier les filtres désactivés :" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Élément bloqué :" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"page" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Activer le Blocage de Contenu Safari" + "typeother":{ + "description":"A resource type", + "message":"autre" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Quelle est votre adresse e-mail ?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Cliquez ici : Mettre à jour mes filtres !" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Pour masquer ce bouton, faites un clic droit dessus et choisissez \"Personnaliser la barre d'outils\". Vous pouvez ensuite le faire glisser hors de la barre d'outils. Pour l'afficher à nouveau, glissez-le dans la barre d'outils." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Une erreur est survenue pendant le traitement de votre requête." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Élément masqué" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Pour masquer ce bouton, allez sur opera://extensions et cochez \"Cacher de la barre d'outils\". Vous pouvez l'afficher à nouveau en décochant cette option." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"page" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Ajouter des Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Page :" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Terminé ! La page avec la pub a été rechargée. Veuillez vérifier si la pub a disparu, puis revenez sur cette page et répondez à la question suivante." + "buttonblockit":{ + "description":"Block button", + "message":"Bloquer" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Ou entrez une URL :" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Autoriser la pub sur certaines chaînes YouTube uniquement" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Vous utilisez une ancienne version de Safari. Merci de mettre à jour vers la dernière version afin de pouvoir utiliser le bouton de la barre d'outils pour désactiver AdBlock, autoriser des sites web, ou rapporter des pubs. Mettre à jour maintenant." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Allez dans le menu Safari → Préférences → Extensions." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"une recherche de photos (ex : course de voilier)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Ne pas bloquer les publicités :" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Il est pour le moment impossible de bloquer les publicités dans Flash et les autres plugins." }, - "buttonblockit":{ - "description":"Block button", - "message":"Bloquer" + "filterhungarian":{ + "description":"language", + "message":"Hongrois" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Est-ce que la publicité est toujours là ?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Bloquer cette pub" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgare" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Formidable ! Maintenant, il faut trouver quelle extension en est la cause. Activez à nouveau vos extensions une par une. L'extension qui ramène la publicité est celle que vous devez désinstaller pour vous débarrasser de cette pub." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Activer AdBlock sur cette page" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Afficher le nombre de pubs bloquées sur le bouton AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Erreur !" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Modifier vos filtres manuellement :" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Désactiver AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Italien" - }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "message":"Anglais" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Type" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Afficher les éléments AdBlock dans le menu du clic droit" }, - "lang_slovak":{ - "description":"language", - "message":"Slovaque" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Merci d'aller sur notre site de support." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Abonnement aux listes de filtres" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Avertissements Adblock (supprime les messages au sujet de l'utilisation de bloqueurs de publicité)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Vous pouvez vous y réabonner et soutenir les sites que vous aimez en sélectionnant \"Autoriser certaines publicités non-intrusives\" ci-dessous." + "typemain_frame":{ + "description":"A resource type", + "message":"page" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Est-ce que la publicité apparaît aussi dans cet autre navigateur ?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Êtes-vous sûr de vouloir supprimer les $count$ blocages que vous avez créé sur $host$ ?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Désactiver sur cette page" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Légende : " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"Mis à jour il y a $minutes$ minutes.", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Joignez une capture d'écran :" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Lituanien" + "message":"Roumain" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Faites-le nous savoir sur notre site de support !" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Modifier les filtres désactivés :" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock est désactivé." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Sous-cadre" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Il est pour le moment impossible de bloquer les publicités dans Flash et les autres plugins." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Actualisez la page qui contient la publicité." }, - "buttonok":{ - "description":"OK button", - "message":"OK" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Activer le Blocage de Contenu Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installez Firefox $chrome$ si vous ne l'avez pas.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Général" + "message":"Listes de filtres" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Si vous préférez ne pas voir des pubs telles que celle-ci, vous pouvez laisser la liste de filtres \"Publicités Acceptables\" désactivée." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Si vous avez créé un filtre fonctionnel à l'aide de l'assistant \"bloquer une pub\", collez-le dans le champ ci-dessous :" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Votre ordinateur semble être infecté par des logiciels malveillants. Cliquez ici pour davantage d'informations." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Ce fichier est trop gros. Merci de joindre un fichier inférieur à 10 Mo." }, - "typeother":{ - "description":"A resource type", - "message":"autre" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock ne s'exécutera pas sur les pages correspondantes à :" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Pas de filtre spécifié !" + "filterchinese":{ + "description":"language", + "message":"Chinois" }, - "typeunknown":{ - "description":"A resource type", - "message":"inconnu" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filtre invalide : $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Abonnement à la liste de filtres..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Ouvrez la page des extensions pour activer les extensions précédemment désactivées." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Désactiver ces notifications" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Turc" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Trop de filtres activés ralentissent la navigation, choisissez donc uniquement ceux qui vous sont utiles !
Les crédits et autres listes se trouvent ici." + }, + "typesubdocument":{ "description":"A resource type", - "message":"audio/vidéo" + "message":"cadre" }, - "filterjapanese":{ - "description":"language", - "message":"Japonais" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonésien" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Autoriser certaines publicités non-intrusives" + "typeimage":{ + "description":"A resource type", + "message":"image" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ au total", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Annuler" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Faites glisser les curseurs ci-dessous pour choisir les pages sur lesquelles AdBlock ne devra rien faire." + "savereminder":{ + "description":"Reminder to press save", + "message":"N'oubliez pas d'enregistrer !" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"sélecteur" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Le Blocage de Contenu Safari a été désactivé car vous avez choisi d'autoriser les publicités non-intrusives. Vous ne pouvez pas activer les deux à la fois. (Pourquoi ?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Dernière étape : signalez-nous le problème." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Vérifier dans Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Islandais" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Pour signaler une publicité, vous devez être connecté à Internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Listes de filtres pour le blocage de publicités" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (recommandé)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Bloquer les pubs uniquement sur ces sites :" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"ID Flickr photoset (ex : $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Chargé sur la page avec le domaine :\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Signaler une publicité" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Les extensions précédemment désactivées ont été réactivées." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Listes de filtres pour le blocage de publicités" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Comment ?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Nettoyer cette liste" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Autoriser la pub sur certaines chaînes YouTube uniquement" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Faites passer le mot !" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Tierce-partie" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (supprime les éléments agaçants sur le Web)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - cliquez pour plus de détails" + "optionstitle":{ + "description":"Title for the options page", + "message":"Options AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Une erreur est survenue pendant le traitement de votre requête." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"Mis à jour il y a $hours$ heures.", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"Mis à jour il y a 1 heure." }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russe et ukrainien" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Recherche de mises à jour (ne devrait pas prendre plus de quelques secondes)…" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Quoi de neuf dans la dernière version ? Découvrez-le dans les notes de version !" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"Mis à jour à l'instant." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Les extensions précédemment désactivées ont été réactivées." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Faites un clic droit sur une pub pour la bloquer, ou bloquez-la ici manuellement." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grec" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Recherche de logiciels malveillants qui pourraient injecter de la pub :" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Masquer une section d'une page web" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Support AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Vidéos et Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Type" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Quelles caractéristiques vont systématiquement correspondre à cette pub, à chaque fois que vous visiterez cette page ?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Faites glisser le curseur jusqu'à ce que la pub disparaisse, et que l'élément bloqué semble correct." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Activer AdBlock sur cette page" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"Mis à jour il y a 1 minute." }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Retour" + "typesub_frame":{ + "description":"A resource type", + "message":"cadre" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Les listes de filtres bloquent la plupart des publicités, mais vous pouvez également :" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Resource bloquée" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Les informations suivantes figureront également dans votre rapport." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Danois" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Vérifiez les filtres Publicités Acceptables :" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Afficher les publicités sur une page ou un domaine" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Vous pouvez vous y réabonner et soutenir les sites que vous aimez en sélectionnant \"Autoriser certaines publicités non-intrusives\" ci-dessous." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Récupération en cours..." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"URL de liste invalide. Elle sera supprimée." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Options générales" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Décochez la case 'Activée' à côté de chaque extension à part AdBlock. Gardez AdBlock activé." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Dans cet autre navigateur, ouvrez la page avec la publicité." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Afficher les publicités partout sauf sur ces domaines..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Vous avez oublié de joindre une capture d'écran ! Nous ne pouvons pas vous aider sans voir la pub que vous signalez." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Ceci s'applique à 1 élément sur cette page." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Créez-y une discussion manuellement, et copiez/collez les informations ci-dessous dans le champ \"Fill in any details you think will help us understand your issue\"." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Attention : faire une erreur ici peut entraîner un mauvais fonctionnement des filtres officiels.
Consultez le tutoriel de syntaxe pour apprendre à ajouter des filtres avancés." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Autoriser la pub sur la chaîne $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Pour masquer ce bouton, faites un clic droit dessus et choisissez \"Masquer le bouton\". Pour l'afficher à nouveau, allez dans chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Options générales" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock ne s'exécutera pas sur les pages correspondantes à :" + "filterisraeli":{ + "description":"language", + "message":"Hébreu" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Nous n'avons pas de liste de filtres pour cette langue.
Essayez de trouver une liste appropriée qui supporte cette langue $link$ ou bloquez cette publicité pour vous-même dans l'onglet \"Personnaliser\".", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Cette fonctionnalité d'AdBlock ne fonctionne pas sur ce site car celui-ci utilise des technologies obsolètes. Vous pouvez bloquer ou autoriser des ressources manuellement dans l'onglet \"Personnaliser\" des options AdBlock." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"S'abonner" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tchèque et slovaque" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Je suis un utilisateur avancé, afficher les options avancées" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Nous avons désactivé toutes les autres extensions. Nous allons maintenant recharger la page avec la pub. Un moment, s'il vous plaît." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Espagnol" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Autres listes de filtres" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Chargé sur la page avec le domaine :\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Les listes seront mises à jour automatiquement. Vous pouvez aussi les mettre à jour maintenant" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Cliquez ici : Mettre à jour mes filtres !" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Afficher toutes les requêtes" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Plus vous utilisez de listes, plus AdBlock sera lent. Utiliser trop de listes peut même faire planter votre navigateur. Appuyez sur OK si vous êtes certain de vouloir vous abonner à cette liste." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Étape 2 : Options de blocage" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Génial ! Il n'y a rien d'autre à faire." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Ceci s'applique à $matchcount$ éléments sur cette page.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"(expérimental)" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Nous avons également une page sur laquelle vous pouvez trouver les contributeurs AdBlock !" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Ouvrez la page des extensions." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonésien" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Tout est bon ! Nous entrerons bientôt en contact avec vous, probablement dans un jour, deux si c'est un jour férié. En attendant, vous allez recevoir un email d'AdBlock avec un lien vers votre discussion sur notre site de support. Si vous préférez continuer par e-mail, c'est aussi possible !" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turc" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"En savoir plus sur le programme Publicités Acceptables." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Bloquer une pub" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Est-ce qu'AdBlock doit vous prévenir si un logiciel malveillant est détecté ?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Listes de filtres personnalisées" + "updateddayago":{ + "description":"Label for subscription", + "message":"Mis à jour il y a 1 jour." }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL du cadre : " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Le but de cette question est de déterminer qui doit recevoir votre rapport. Si vous répondez incorrectement à cette question, le rapport ne sera pas envoyé aux bonnes personnes, et il pourrait être ignoré." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Afficher les éléments AdBlock dans le menu du clic droit" - }, - "typeselector":{ - "description":"A resource type", - "message":"sélecteur" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Bloquer cette pub" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Notre équipe vous a demandé des infos de débogage ? Cliquez ici pour cela !" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Allemand" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Ne pas exécuter AdBlock sur..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Signaler des publicités est purement volontaire. En le faisant, vous aidez les autres utilisateurs en permettant aux listes de filtres de bloquer cette pub pour tout le monde. Si toutefois vous ne vous sentez pas particulièrement altruiste en ce moment, ce n'est pas grave. Vous pouvez fermer cette page et uniquement bloquer cette pub pour vous-même." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Le nom du fichier est trop long. Merci de donner un nom plus court au fichier." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Élément masqué" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"Mis à jour il y a $seconds$ secondes.", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Recharger la page." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Désactiver sur cette page" }, - "typepage":{ - "description":"A resource type", - "message":"page" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Faites-le nous savoir sur notre site de support !" }, - "filterdutch":{ - "description":"language", - "message":"Néerlandais" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Le nom du fichier est trop long. Merci de donner un nom plus court au fichier." + "buttonok":{ + "description":"OK button", + "message":"OK" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"N'oubliez pas d'enregistrer !" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Terminé ! La page avec la pub a été rechargée. Veuillez vérifier si la pub a disparu, puis revenez sur cette page et répondez à la question suivante." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Recherche de mises à jour (ne devrait pas prendre plus de quelques secondes)…" + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Toutes les resources" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Abonnez-vous à cette liste de filtres, et réessayez : $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Autoriser la pub sur la chaîne $name$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Est-ce qu'AdBlock doit vous prévenir si un logiciel malveillant est détecté ?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Resource" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Afficher le nombre de pubs bloquées dans le menu AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Site :" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Signaler une publicité" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Filtres personnalisés AdBlock (recommandé)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Comment ?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Ne rien bloquer sur les pages de ce domaine" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Listes de filtres personnalisées" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Bloquer plus de publicités :" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Les informations requises sont invalides ou manquantes. Veuillez remplir les questions marquées en rouge." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Le domaine ou l'URL où AdBlock ne doit rien bloquer :" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letton" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Vous n'êtes plus abonné à la liste de filtres Publicités Acceptables." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Assurez-vous d'utiliser les bons filtres pour votre langue :" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (supprime les éléments agaçants sur le Web)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS correspondant :" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock a bloqué un téléchargement d'un site connu pour servir des logiciels malveillants." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Pour masquer ce bouton, allez sur opera://extensions et cochez \"Cacher de la barre d'outils\". Vous pouvez l'afficher à nouveau en décochant cette option." + "savebutton":{ + "description":"Save button", + "message":"Enregistrer" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Vous ne savez pas ? Appuyez simplement sur \"Bloquer\" ci-dessous." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Filtre correspondant" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Récupération en cours..." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Toutes les resources" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Dernière étape : signalez-nous le problème." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock est à jour !" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Ne rien bloquer sur les pages de ce domaine" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Où exactement se trouve la pub sur cette page ? À quoi ressemble-t-elle ?" }, - "filterisraeli":{ - "description":"language", - "message":"Hébreu" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"OK" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Faites glisser le curseur jusqu'à ce que la pub disparaisse, et que l'élément bloqué semble correct." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Bloquer les URL contenant ce texte :" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Autoriser AdBlock à recueillir des données anonymes sur l'utilisation des listes de filtres" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Ajoutez des photos depuis Flickr ! Vous pouvez entrer :" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Pour signaler une publicité, vous devez être connecté à Internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"La quantité de règles dans vos listes de filtres excède 50 000 et a été automatiquement réduite. Merci de vous désabonner de quelques listes ou de désactiver le Blocage de Contenu Safari !" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Êtes-vous certain de vouloir vous abonner à la liste de filtres $title$ ?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"Mis à jour il y a 1 jour." - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Publicités Acceptables (recommandé)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Cliquez ici : Désactiver les Publicités Acceptables" - }, - "optionsversion":{ - "description":"Version number", - "message":"Version $version$", + "message":"Mis à jour il y a $days$ jours.", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Retirer de la liste" + "typeobject":{ + "description":"A resource type", + "message":"objet interactif" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Ceci n'est pas une image. Merci de joindre un fichier .png, .gif, ou .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Quelles caractéristiques vont systématiquement correspondre à cette pub, à chaque fois que vous visiterez cette page ?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Pourquoi ne pas nous envoyer un rapport de bogue ?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Pubs bloquées :" }, - "typehiding":{ - "description":"A resource type", - "message":"masqué" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Listes de filtres" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arabe" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domaine du cadre : " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Annuler mes blocages sur ce domaine" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Premier cadre" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Modifier vos filtres manuellement :" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Terminé !" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Étape 1 : Indiquer quoi bloquer" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Resource" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Merci d'entrer le filtre correct ci-dessous et appuyer sur OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Bloquer une pub sur cette page" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Traduction par :" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Vérifiez que vos filtres sont à jour :" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock est à jour !" }, - "lang_english":{ - "description":"language", - "message":"Anglais" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Anglais uniquement" }, - "filtericelandic":{ - "description":"language", - "message":"Islandais" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"SOIT, cliquez simplement sur ce bouton pour faire toutes les étapes ci-dessus: Désactiver toutes les autres extensions" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Ouvrez la page des extensions pour activer les extensions précédemment désactivées." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Quoi de neuf dans la dernière version ? Découvrez-le dans les notes de version !" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domaine de la page :" + "filterantisocial":{ + "description":"A filter list", + "message":"Liste de filtres Antisocial (supprime les boutons de réseaux sociaux)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Page :" + "filtermalware":{ + "description":"A filter list", + "message":"Protection contre les logiciels malveillants" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Avez-vous trouvé un bogue ?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Je suis un utilisateur avancé, afficher les options avancées" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arabe" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Vous avez dépassé la quantité de stockage que peut utiliser AdBlock. Désabonnez-vous de quelques listes de filtres !" }, - "lang_czech":{ - "description":"language", - "message":"Tchèque" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Payez ce que vous voulez !" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Quelle est votre adresse e-mail ?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Aimeriez-vous voir comment AdBlock fonctionne ?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"URL de liste invalide. Elle sera supprimée." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Masquer une section d'une page web" }, - "typesub_frame":{ - "description":"A resource type", - "message":"cadre" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Général" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ou AdBlock pour Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Vidéos et Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Formidable ! Maintenant, il faut trouver quelle extension en est la cause. Activez à nouveau vos extensions une par une. L'extension qui ramène la publicité est celle que vous devez désinstaller pour vous débarrasser de cette pub." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Éditer" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ou Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Une question ou une nouvelle idée ?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format : ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Vous avez oublié de joindre une capture d'écran ! Nous ne pouvons pas vous aider sans voir la pub que vous signalez." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Payez ce que vous voulez !" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"SOIT, cliquez simplement sur ce bouton pour faire toutes les étapes ci-dessus: Désactiver toutes les autres extensions" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Il y a un problème avec la liste de filtres. Rapportez-le ici : $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Plus d'infos sur les logiciels malveillants" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Note : votre rapport peut être rendu public. Gardez cela à l'esprit avant d'inclure quoi que ce soit de privé." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Actualisez la page qui contient la publicité." + "filteritalian":{ + "description":"language", + "message":"Italien" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installez Firefox $chrome$ si vous ne l'avez pas.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"ID Flickr photoset (ex : $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Mises à jour AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Est-ce que la publicité est toujours là ?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Avertissements Adblock (supprime les messages au sujet de l'utilisation de bloqueurs de publicité)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Assurez-vous d'utiliser les bons filtres pour votre langue :" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Autres listes de filtres" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Vérifiez que vos filtres sont à jour :" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Français" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Quelque chose s'est mal passé lors de la vérification des mises à jour." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Élément bloqué :" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Allez dans le menu Safari → Préférences → Extensions." }, - "typeobject":{ - "description":"A resource type", - "message":"objet interactif" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Envoyer" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"Mis à jour à l'instant." + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"Mis à jour il y a $days$ jours.", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"URL Flickr photoset (ex : $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Désabonné." + }, + "typemedia":{ "description":"A resource type", - "message":"cadre" + "message":"audio/vidéo" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (protection de la vie privée)" + "message":"Letton" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Signaler une publicité sur cette page" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Bloquer une pub sur cette page" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Nettoyer cette liste" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Ne pas bloquer les publicités :" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Allemand" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Erreur lors de l'enregistrement du fichier téléversé." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Attention : ce filtre bloque tous les éléments de type $elementtype$ sur cette page !", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Ceci s'applique à $matchcount$ éléments sur cette page.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"ici" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Dans quelle langue cette page est-elle écrite ?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Impossible de récupérer ce filtre !" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Êtes-vous sûr de vouloir supprimer les $count$ blocages que vous avez créé sur $host$ ?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Faites glisser les curseurs ci-dessous pour choisir les pages sur lesquelles AdBlock ne devra rien faire." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"image" + "message":"masqué" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Créez-y une discussion manuellement, et copiez/collez les informations ci-dessous dans le champ \"Fill in any details you think will help us understand your issue\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Est-ce que la publicité s'affiche dans ou avant une vidéo, ou dans un plugin comme par exemple un jeu Flash ?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Pour masquer ce bouton, faites un clic droit dessus et choisissez \"Masquer le bouton\". Pour l'afficher à nouveau, allez dans chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russe et ukrainien" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Roumain" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Quelque chose s'est mal passé lors de la vérification des mises à jour." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Nous avons désactivé toutes les autres extensions. Nous allons maintenant recharger la page avec la pub. Un moment, s'il vous plaît." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Resource autorisée" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Espagnol" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Attention : ce filtre bloque tous les éléments de type $elementtype$ sur cette page !", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tchèque et slovaque" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Activer le mode de compatibilité ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Type de cadre : " + "no":{ + "description":"A negative response to a question", + "message":"Non" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Sélectionnez une langue -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Le filtre, qui peut être changé dans les options :" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Installez Adblock Plus pour Firefox $chrome$ si vous ne l'avez pas.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Masquer ce bouton" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Resource bloquée" + "other":{ + "description":"Multiple choice option", + "message":"Autre" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"D'accord, vous pouvez tout de même bloquer cette publicité pour vous-même dans les options." + }, + "lang_russian":{ + "description":"language", + "message":"Russe" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Est-ce que la publicité s'affiche dans ou avant une vidéo, ou dans un plugin comme par exemple un jeu Flash ?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Pourquoi ne pas nous envoyer un rapport de bogue ?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (protection de la vie privée)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ sera $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Le filtre, qui peut être changé dans les options :" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Ou entrez une URL :" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Le filtre suivant :
$filter$
est erroné :
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Cochez la case à côté des séries de photos que vous désirez utiliser." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"Chargement..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Fermer" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Notre équipe vous a demandé des infos de débogage ? Cliquez ici pour cela !" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Bloquer les pubs uniquement sur ces sites :" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Vous avez dépassé la quantité de stockage que peut utiliser AdBlock. Désabonnez-vous de quelques listes de filtres !" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"La quantité de règles dans vos listes de filtres excède 50 000 et a été automatiquement réduite. Merci de vous désabonner de quelques listes ou de désactiver le Blocage de Contenu Safari !" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Signaler une publicité sur cette page" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Autoriser AdBlock à recueillir des données anonymes sur l'utilisation des listes de filtres" + "message":"Afficher les messages de débogage dans la Console (ralentit AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"D'accord, vous pouvez tout de même bloquer cette publicité pour vous-même dans les options." + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domaine du cadre : " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"La plus populaire des extensions Chrome, avec plus de 40 millions d'utilisateurs ! Bloque la publicité sur le web." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Avez-vous trouvé un bogue ?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Envoyer" + "lang_czech":{ + "description":"language", + "message":"Tchèque" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Ceci n'est pas une image. Merci de joindre un fichier .png, .gif, ou .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Ajoutez des photos depuis Flickr ! Vous pouvez entrer :" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Afficher les liens des listes de filtres" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Autoriser certaines publicités non-intrusives" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Suédois" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Retirer de la liste" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Ajouter des Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Sélectionnez une langue -- " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Finlandais" + "message":"Français" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Éditer" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Ce fichier est trop gros. Merci de joindre un fichier inférieur à 10 Mo." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Support" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Les informations suivantes figureront également dans votre rapport." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Bloquer une publicité par son URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Il y a un problème avec la liste de filtres. Rapportez-le ici : $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Version $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Décochez la case 'Activée' à côté de chaque extension à part AdBlock. Gardez AdBlock activé." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Le but de cette question est de déterminer qui doit recevoir votre rapport. Si vous répondez incorrectement à cette question, le rapport ne sera pas envoyé aux bonnes personnes, et il pourrait être ignoré." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Afficher les liens des listes de filtres" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Signaler des publicités est purement volontaire. En le faisant, vous aidez les autres utilisateurs en permettant aux listes de filtres de bloquer cette pub pour tout le monde. Si toutefois vous ne vous sentez pas particulièrement altruiste en ce moment, ce n'est pas grave. Vous pouvez fermer cette page et uniquement bloquer cette pub pour vous-même." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Anglais uniquement" + "yes":{ + "description":"A positive response to a question", + "message":"Oui" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Faites passer le mot !" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Le code source est disponible librement !" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Néerlandais" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Nous ne l'utiliserons que pour vous contacter si nous avons besoin de plus de détails." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Ceci s'applique à 1 élément sur cette page." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"Mis à jour il y a $hours$ heures.", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Retour" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock a bloqué un téléchargement d'un site connu pour servir des logiciels malveillants." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Légende : " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Cliquez ici : Désactiver les Publicités Acceptables" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Activer le mode de compatibilité ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domaine de la page :" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Support" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Mises à jour AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Merci d'aller sur notre site de support." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Pour désactiver AdBlock lorsque le Blocage de Contenu est activé, cliquez sur Safari (dans la barre des menus) > Préférences > Extensions > AdBlock, et désélectionnez \"Activer AdBlock\"." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Quelque chose s'est mal passé. Aucune ressource n'a été envoyée. Cette page va maintenant se fermer. Essayez de recharger le site web." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Plus d'infos sur les logiciels malveillants" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Site :" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Publicités Acceptables (recommandé)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"OK" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Pour désactiver AdBlock lorsque le Blocage de Contenu est activé, cliquez sur Safari (dans la barre des menus) > Préférences > Extensions > AdBlock, et désélectionnez \"Activer AdBlock\"." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Ouvrez la page des extensions." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - cliquez pour plus de détails" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Désactivez toutes les extensions à part AdBlock :" } } \ No newline at end of file diff --git a/_locales/gu/messages.json b/_locales/gu/messages.json index 1a6e62ff..b1571edb 100644 --- a/_locales/gu/messages.json +++ b/_locales/gu/messages.json @@ -1,889 +1,927 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - જાહેરાત જાણ કરો" - }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"આપે બ્લોકીંગ કરેલી જાહેરાત ની યાદી ફિલ્ટર દ્વારા" - }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"સાઇટ:" + "filterdanish":{ + "description":"language", + "message":"ડેનિશ" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"ચોક્કસ YouTube ની ચેનલો વ્હાઇટલિસ્ટિંગ પરવાનગી આપો" + "spread_the_word":{ + "description":"Text of a share link", + "message":"તેનો પ્રસાર માટે મદદ કરો!" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"કોઈ જાણીતા malware મળ્યા નથી." + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"એક પ્રશ્ન અથવા નવા વિચારો છે?" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - વિગતો માટે ક્લિક કરો" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"આ બટન છુપાવો" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"આ બ્રાઉઝર માં, જાહેરાત સાથે પેજ​ ને લોડ કરો." + "filterjapanese":{ + "description":"language", + "message":"Japanese" }, - "filterswedish":{ + "filterannoyances":{ "description":"A filter list", - "message":"સ્વિડીશ" + "message":"Fanboy's Annoyances (વેબ પર ત્રાસ દૂર કરે છે)" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"પ્રકાર" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ આ પાનાં પર", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"વધુ જાહેરાતો અવરોધિત કરો:" + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"અમાન્ય સૂચી URL. તે કાઢી નાખવામાં આવશે." }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"રશિયન" + "message":"પોલિશ" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"તમે શું કરવા માંગો છો તેના માટે ની ચૂકવણી કરો!" + "generaloptions":{ + "description":"Title of first tab page", + "message":"સામાન્ય વિકલ્પો" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"ઉમેદવારી દૂર." + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"તેના URL દ્વારા જાહેરાત અવરોધિત કરો" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS સાથે મેળ" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"ગ્રીક" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"'Enabled checkbox' ને અનચેક કરો AdBlock ની સિવાય દરેક વિસ્તરણ માટે આગામી થશે.\nAdBlock ને સક્રિય કરો." }, - "filterchinese":{ + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"હું આ ચકાસવા માટે નથી માંગતો" + }, + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock કોઈપણ પાનાં બંધબેસતી પર ચાલશે નહીં:" + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"આ ડોમેન્સ સિવાય બધે જાહેરાતો બતાવવા ..." + }, + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"કાળજી રાખો: તમે ખૂબ ભાંગી મળી શકે છે, અહીં એક ભૂલ સત્તાવાર ગાળકો સહિત અન્ય ગાળકો, ઘણો બનાવવા માટે જો!
આ વાંચોફિલ્ટર વાક્યરચના ટ્યુટોરીયલઅદ્યતન બ્લેકલિસ્ટ અને વ્હાઇટલિસ્ટ ગાળકો માં કેવી રીતે ઉમેરવુ તે શીખવા માટે." + }, + "lang_slovak":{ "description":"language", - "message":"ચિની" + "message":"સ્લોવેક" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"વિડિઓઝ અને Flash" + "yes":{ + "description":"A positive response to a question", + "message":"હા" }, - "filtermalware":{ - "description":"A filter list", - "message":"Malware સુરક્ષા" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"શું તમે વિચારો છો કે જો તમે આ જાહેરાત તમને આ પૃષ્ઠની મુલાકાત લો દર વખતે ઓપન​ થાય છે તે વિશે સાચું આ છે?" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"આ જાહેરાત બ્રાઉઝરમાં બહુ દેખાય છે?" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"આ પાનાં પર AdBlock ની સક્રિય કરો" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"બાકાત" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"પાછા" + "savebutton":{ + "description":"Save button", + "message":"સેવ કરો" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"આ પાનાં પર ચાલુ નથી" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"AdBlock ના બટન પર જાહેરાતોના નંબર બતાવો" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"રોમાનિયન" }, - "filterlatvian":{ - "description":"A filter list", - "message":"લાતવિયન" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"આ બટન છુપાવવા માટે, તેને અધિકાર ક્લિક કરો અને છુપાવો બટન પસંદ કરો. તમે હેઠળ તે ફરીથી બતાવી શકે છે chrome://chrome/extensions." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"વેબ પર સૌથી વધુ જાહેરાતો આ એડબ્લોક ગાળક યાદીઓ મા છે. તમે પણ કરી શકો છો:" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"સ્ત્રોત કોડ મુક્ત રીતે ઉપલબ્ધ છે!" + "filterisraeli":{ + "description":"language", + "message":"હિબ્રુ" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"તે ટેકનોલોજી તારીખ બહાર વાપરે છે કારણ કે આ AdBlock ની સુવિધાને આ સાઇટ પર કામ કરતું નથી. તમે જાતે વ્હાઇટલિસ્ટ સંસાધનો બ્લેકલીસ્ટ કરી શકો છો અથવા 'Customize' Tab માં options page પર જાઓ." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "other":{ + "description":"Multiple choice option", + "message":"અન્ય" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"વેબ પેજ અથવા ડોમેન પર બતાવો જાહેરાતો" + "filterczech":{ + "description":"Language names for a filter list", + "message":"ઝેક અને સ્લોવેક" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"આ પાનાં પર 1 આઇટમ સાથે બંધબેસે છે." + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"વેબ પૃષ્ઠ વિભાગ ના છુપાવવા માટે" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"અન્ય ફિલ્ટર યાદી" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"વ્હાઇટલિસ્ટ $name$ ચેનલ", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"વિકલ્પો" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"સામાન્ય વિકલ્પો" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"તમારા કમ્પ્યુટર ને મૉલવેર દ્વારા ચેપ લાગ્યો છે.વધુ માહિતી માટે. વધુ માહિતી માટે.અહીં ક્લિક કરો." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock કોઈપણ પાનાં બંધબેસતી પર ચાલશે નહીં:" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"હું આપમેળે અપડેટ્સ મેળવીશ; તમે હમાણાજ અપડેટ કરી શકો છો" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"લાવતી ... કૃપા કરીને રાહ જુઓ." + }, + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"વેબ પેજ અથવા ડોમેન પર બતાવો જાહેરાતો" + }, + "filterturkish":{ + "description":"A filter list", + "message":"ટર્કિશ" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"તમે વધુ ફિલ્ટર યાદીઓ નો ઉપયોગ કરી શકો છો, જો AdBlock ધીમી ઝડપે ચાલતુ હોય તો. ઘણી બધી યાદીઓ ઉપયોગ કરીને પણ કેટલીક વેબસાઇટ્સ પર તમારા બ્રાઉઝર ક્રેશ કરી શકે છે. ઓકે દબાવો તેમ છતાં આ યાદી ઉમેદવારી નોંધાવવા માટે." }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"અમે તે ભાષા માટે મૂળભૂત ગાળક યાદી નથી.
આ ભાષામાં $link$ આધાર આપે છે કે યોગ્ય યાદી શોધવા પ્રયત્ન કરો અથવા પર તમારા માટે આ જાહેરાત અવરોધિત કૃપા કરીને 'Customize tab' પર જાઓ.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"સબ્સ્ક્રાઇબ કરો" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"હું ઉન્નત વપરાશકર્તા છું મને ઉચ્ચ વિકલ્પો બતાવવા" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"આ જાહેરાત પર ક્લિક કરો, અને હું તેને અવરોધિત કરી આપીશ." }, - "lang_czech":{ - "description":"language", - "message":"ઝેક" + "typestylesheet":{ + "description":"A resource type", + "message":"શૈલી વ્યાખ્યા" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"આ બટન છુપાવો" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock ની નવી સુધારાઓ" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"હું આપમેળે અપડેટ્સ મેળવીશ; તમે હમાણાજ અપડેટ કરી શકો છો" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"માફ કરશો, AdBlock ની તમારી ફિલ્ટર યાદીઓની એક પછી આ પૃષ્ઠ પર નિષ્ક્રિય થયેલ છે." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"આ ક્લિક કરો:મારા ગાળકો અપડેટ કરો" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"AdBlock મૉલવેર શોધે છે ત્યારે તમને જાણ કરી એ?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"ફોર્મેટ: ~ site1.com | ~ site2.com | ~ news.site3.org" + "updateddayago":{ + "description":"Label for subscription", + "message":"સુધારાશે 1 દિવસ પહેલાં" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"છેલ્લું પગલું: શું આ જાહેરાત કરે છે?" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"કે આ પાનાં પર $matchcount$ વસ્તુઓ મેળ ખાય છે.", + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + }, + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"કોઈ ફિલ્ટર સ્પષ્ટ કરેલા નથી!" + }, + "filtereasylist_plus_german":{ + "description":"language", + "message":"જર્મન" + }, + "filtereasylist_plus_greek":{ + "description":"language", + "message":"ગ્રીક" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"સુધારાશે $seconds$ સેકન્ડ પહેલા", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"અમે એક પાનું રાખ્યું છે સાથે સાથે જે આપડા જેવા લોકો ની મદદ કરવા માટે AdBlock ઉપયોગી છે!" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"ચોક્કસ નહિં?માત્ર નીચે 'Block it!' દબાવો." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"ઇન્ડોનેશિયન" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"આ બ્રાઉઝર માં, જાહેરાત સાથે પેજ​ ને લોડ કરો." }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"પ્રકાર" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"અમને અમારી સપોર્ટ સાઇટ પર જણાવો!" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock ની માટે એક અપડેટ જ નથી! અપડેટ કરવા માટે $here$ જાઓ.
નોંધ: જો તમે આપોઆપ સુધારાઓ મેળવવા માંગો છો, તેના માટે Safari પર ક્લિક કરો > પસંદગીઓ > એક્સ્ટેન્શન્સ > સુધારાઓ
અને 'આપમેળે અપડેટ્સ સ્થાપિત' વિકલ્પ પર તપાસો.", + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"ફક્ત આ સાઇટ્સ પર જાહેરાતો અવરોધિત કરો:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"કસ્ટમાઇઝ" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"જાહેરાત જાણ માટે, તમે ઇન્ટરનેટ સાથે જોડાયેલ હોવું જ જોઈએ." + }, + "buttonok":{ + "description":"OK button", + "message":"ઓકે!" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"વ્હાઇટલિસ્ટ $name$ ચેનલ", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "filterturkish":{ + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"વેબ પૃષ્ઠ વિભાગ ના છુપાવવા માટે" + }, + "typesubdocument":{ + "description":"A resource type", + "message":"ફ્રેમ" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"ટર્કિશ" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"આ શું છે?" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"AdBlock ના મેનુ માં જાહેરાતો બતાવો સંખ્યા બતાવો" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - જાહેરાત જાણ કરો" + }, + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"બલ્ગેરિયન" + }, + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"તાજેતરની પ્રકાશનમાં નવી શું છે? ચેન્જલોગ જોવો!" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"આ ડોમેન પર પૃષ્ઠો પર ચલાવવા નથી" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"કસ્ટમ ફિલ્ટર યાદી" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"તમને જરૂર કરતાં વધુ સબ્સ્ક્રાઇબ નથી -- દરેક એક એક નાના બીટ તમને શાંત કરે છે! ક્રેડિટ અને વધુ યાદીઓ મળી શકે અહીં." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"વધુ જાહેરાતો અવરોધિત કરો:" }, - "typestylesheet":{ - "description":"A resource type", - "message":"શૈલી વ્યાખ્યા" + "lang_ukranian":{ + "description":"language", + "message":"યુક્રેનિયન" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"યાદીમાંથી દૂર કરો" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"આ પ્રશ્ન હેતુ તમારી રિપોર્ટની પ્રાપ્ત કરીશું જે નક્કી કરવા માટે છે.તમે આ પ્રશ્નનો જવાબ ખોટા આપ શો તો,આ અહેવાલ ખોટા લોકો મોકલવામાં આવશે,તેથી તે અવગણવામાં આવી શકે છે." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"આ ડોમેઇન અથવા url AdBlock અવરોધિત ન જોઈએ" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"પોલિશ" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"ચેતવણી: કોઈ ફિલ્ટર સ્પષ્ટ!" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"જમણી ક્લિક ના મેનૂ પર આઇટમ્સ ઉમેરો" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"આ લખાણ સમાવતી બ્લોક URL ને" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"આ જાહેરાત અવરોધિત કરો" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"બંધ કરો" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"સુધારાયેલ $hours$ કલાક પહેલા", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Firefox માટે ચેક કરો $chrome$", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"સુધારાશે $seconds$ સેકન્ડ પહેલા", + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"છેલ્લું પગલું: શું આ જાહેરાત કરે છે?" + }, + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"શું તમે ખરેખર દૂર કરવા માંગો છો $count$ તમે બ્લોકો માં $host$ પર રચના કરી છે?", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"અમારી ટીમ કેટલાક ડિબગ માહિતી માટે વિનંતી કરી છે? તે માટે! અહીં જાઓ!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"ઑબ્જેક્ટ_પેટાવિનંતી" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "filterhungarian":{ - "description":"language", - "message":"હંગેરિયન" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"સારી દેખાય છે" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"અમાન્ય સૂચી URL. તે કાઢી નાખવામાં આવશે." + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"નોંધ: તમારી રિપોર્ટની જાહેરમાં ઉપલબ્ધ બની જાય છે. ખાનગી કંઈપણ સહિત પહેલાં ધ્યાનમાં રાખવા." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"કસ્ટમાઇઝ AdBlock" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"પૃષ્ઠને ફરીથી લોડ કરો." + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"કોઈ જાણીતા malware મળ્યા નથી." }, - "typepage":{ - "description":"A resource type", - "message":"પાનું" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Hulu.com ની દરેક બાજુએ વિડિઓઝ પ્લે ના થાય તો (તમારા બ્રાઉઝર પુનઃશરૂ જરૂરી છે)" }, - "filterdutch":{ + "filtereasylist_plus_finnish":{ "description":"language", - "message":"ડચ" + "message":"ફિનિશ" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"સેવ કરવાનું ભૂલો નહિં!" - }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ હશે $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } - }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"બંધ કરો" - }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"અવરોધિત તત્વ:" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"આપે બ્લોકીંગ કરેલી જાહેરાત ની યાદી ફિલ્ટર દ્વારા" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"ગાળક અયોગ્ય છે:$exception$", + "updateddaysago":{ + "description":"Label for subscription", + "message":"સુધારાયેલ $days$ દિવસોપહેલા", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"ચેતવણી: કોઈ ફિલ્ટર સ્પષ્ટ!" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"AdBlock મૉલવેર શોધે છે ત્યારે તમને જાણ કરી એ?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"આ ડોમેન્સ સિવાય બધે જાહેરાતો બતાવવા ..." - }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"તે ટેકનોલોજી તારીખ બહાર વાપરે છે કારણ કે આ AdBlock ની સુવિધાને આ સાઇટ પર કામ કરતું નથી. તમે જાતે વ્હાઇટલિસ્ટ સંસાધનો બ્લેકલીસ્ટ કરી શકો છો અથવા 'Customize' Tab માં options page પર જાઓ." - }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"AdBlock ના મેનુ માં જાહેરાતો બતાવો સંખ્યા બતાવો" - }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"વિકલ્પો" - }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"AdBlock ચલાવવા નથી ..." - }, - "typexmlhttprequest":{ + "typeobject":{ "description":"A resource type", - "message":"XMLHttp માગણી" + "message":"ઇન્ટરેક્ટિવ પદાર્થ" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"શું તમે વિચારો છો કે જો તમે આ જાહેરાત તમને આ પૃષ્ઠની મુલાકાત લો દર વખતે ઓપન​ થાય છે તે વિશે સાચું આ છે?" }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"અવરોધિત જાહેરાતો:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock વૈવિધ્યપૂર્ણ ગાળકો (ભલામણ)" - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"અન્ય ભાષા માટે ફિલ્ટર્સ ઉમેરો: " - }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (વેબ પર ત્રાસ દૂર કરે છે)" + "typemain_frame":{ + "description":"A resource type", + "message":"પાનું" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS સાથે મેળ" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"કોરિયન" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"આ બટન છુપાવવા માટે, આ લિંક પર જાઓ opera://extensions અને તપાસો 'ટૂલબાર છુપાવ્યા' વિકલ્પ પસંદ કરો. તમે તે વિકલ્પ ચકાસ્યા વગર તેને ફરીથી બતાવી શકો છો." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"આ ડોમેન પર મારી બ્લોકો પૂર્વવત્ કરો" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"આ જાહેરાત પર ક્લિક કરો, અને હું તેને અવરોધિત કરી આપીશ." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"જાતે જ તમારી ગાળકો ફેરફાર કરો:" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"ગાળક યાદીઓ લિંક્સ બતાવો" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"આ પેજ પર ની જાહેરાતો ની જાણ કરો" + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (ભલામણ)" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"પગલું 1: અવરોધિત કરવા ની આકૃતિ અથવા રસ્તો" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"અમે એક પાનું રાખ્યું છે સાથે સાથે જે આપડા જેવા લોકો ની મદદ કરવા માટે AdBlock ઉપયોગી છે!" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"સાઇટ:" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"રશિયન અને યુક્રેનિયન" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"અહીં" }, - "typescript":{ + "typepopup":{ "description":"A resource type", - "message":"સ્ક્રિપ્ટ" - }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"કાળજી રાખો: તમે ખૂબ ભાંગી મળી શકે છે, અહીં એક ભૂલ સત્તાવાર ગાળકો સહિત અન્ય ગાળકો, ઘણો બનાવવા માટે જો!
આ વાંચોફિલ્ટર વાક્યરચના ટ્યુટોરીયલઅદ્યતન બ્લેકલિસ્ટ અને વ્હાઇટલિસ્ટ ગાળકો માં કેવી રીતે ઉમેરવુ તે શીખવા માટે." - }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock નો આધાર" - }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"કસ્ટમાઇઝ AdBlock" + "message":"પોપઅપ" }, "latest_version":{ "description":"On the Options > Support page, shows when there are no updates available for AdBlock", "message":"AdBlock ની અપ ટુ ડેટ છે!" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"કુલ $count$", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"પૃષ્ઠને ફરીથી લોડ કરો." }, - "filterisraeli":{ - "description":"language", - "message":"હિબ્રુ" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"માત્ર ઇંગલિશ" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"માફ કરશો, AdBlock ની તમારી ફિલ્ટર યાદીઓની એક પછી આ પૃષ્ઠ પર નિષ્ક્રિય થયેલ છે." + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"તમને AdBlock ની ના જૂના આવૃત્તિ વાપરી રહ્યા છો.કૃપા કરીને એકસટેન્શન પૃષ્ઠ પર જાઓ, અને 'વિકાસકર્તા મોડ' સક્રિય કરો અને 'હવે અપડેટ કરો એક્સ્ટેન્શન' ક્લિક કરો" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"આ લખાણ સમાવતી બ્લોક URL ને" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock થોભાવવામાં અવાયું છે." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"આ ડોમેન પર મારી બ્લોકો પૂર્વવત્ કરો" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"ફરીથી AdBlock ચાલુ કરો" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"નીચે બરાબર ફિલ્ટર લખો અને કૃપા કરીને પ્રેસ કરો" + "filterantisocial":{ + "description":"A filter list", + "message":"Anticocial ફિલ્ટર યાદી(સામાજિક મીડિયા બટનો દૂર કરે)" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"સુધારાશે 1 દિવસ પહેલાં" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"જાહેરાતો શોધવા ...

આ માત્ર ત્યારે જ એક ક્ષણ લેવા પડશે." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"બીટા" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"હું ઉન્નત વપરાશકર્તા છું મને ઉચ્ચ વિકલ્પો બતાવવા" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ આ પાનાં પર", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"જાહેરાત અવરોધિત કરો" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"ચોક્કસ નહિં?માત્ર નીચે 'Block it!' દબાવો." + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"અથવા એક URL દાખલ કરો:" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1 કલાક પહેલા સુધારાશે" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"ચેતવણી: અન્ય તમામ સાઇટ્સ પર જાહેરાતો દેખાળવા માં આવશે!
તે સાઇટ્સ માટે અન્ય તમામ ગાળક નામંજૂર કરે છે." }, - "optionsversion":{ - "description":"Version number", - "message":"આવૃત્તિ $version$", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock ની માટે એક અપડેટ જ નથી! અપડેટ કરવા માટે $here$ જાઓ.
નોંધ: જો તમે આપોઆપ સુધારાઓ મેળવવા માંગો છો, તેના માટે Safari પર ક્લિક કરો > પસંદગીઓ > એક્સ્ટેન્શન્સ > સુધારાઓ
અને 'આપમેળે અપડેટ્સ સ્થાપિત' વિકલ્પ પર તપાસો.", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"યાદીઓ ફિલ્ટર કરવા માટે સબ્સ્ક્રાઇબ કરો" - }, - "other":{ - "description":"Multiple choice option", - "message":"અન્ય" - }, - "typehiding":{ - "description":"A resource type", - "message":"છૂપાઇ" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"ફિલ્ટર યાદીઓ" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock ની નિશાની બનાવે છે તે જોવા માંગો છો?" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock વૈવિધ્યપૂર્ણ ગાળકો (ભલામણ)" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"આ જાહેરાતમાં અથવા ફિલ્મ કે એક Flash રમત જેવી અન્ય કોઇ પ્લગઇન પહેલાં દેખાય છે?" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"પ્રકાર" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"અન્ય ફિલ્ટર યાદી" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"આ શું છે?" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"અથવા Chrome" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"જનરલ" }, - "buttonblockit":{ - "description":"Block button", - "message":"અવરોધિત કરો!" + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"અથવા Chrome માટે AdBlock" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"સમાપ્ત થયું!" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"યાદીઓ ફિલ્ટર કરવા માટે સબ્સ્ક્રાઇબ કરો" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"આ પાનાં પર જાહેરાત અવરોધિત કરો" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"અનુવાદ માટે ક્રેડિટ જાય:" }, - "no":{ - "description":"A negative response to a question", - "message":"ના" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"ફોર્મેટ: ~ site1.com | ~ site2.com | ~ news.site3.org" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"હું આ ચકાસવા માટે નથી માંગતો" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"વિડિઓઝ અને Flash" }, - "lang_english":{ - "description":"language", - "message":"ઇંગલિશ" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"વેબ પર સૌથી વધુ જાહેરાતો આ એડબ્લોક ગાળક યાદીઓ મા છે. તમે પણ કરી શકો છો:" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"કસ્ટમાઇઝ" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"આ બટન છુપાવવા માટે,Safari ની ટૂલબાર પર જમણી ક્લિક કરો અને કસ્ટમાઇઝ ટૂલબાર પસંદ કરો,પછી AdBlock ના બટનને ટૂલબાર બહાર ખેંચો.તમે ટૂલબાર પાછું ખેંચીને તેને ફરીથી બતાવી શકો છો." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"AdBlock થોભાવો" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"તમે ડ્રૉપબૉક્સ માપ મર્યાદા વટાવી દીધી છે. તમારી વૈવિધ્યપૂર્ણ અથવા અક્ષમ ફિલ્ટર કેટલાક પ્રવેશોને દૂર કરો અને ફરી પ્રયત્ન કરો." }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"શું તમે ખરેખર સૂચિ ફિલ્ટર ઉમેદવારી નોંધાવવા માટે માગો છો $title$ ?", + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"ડોમેન ના પેજ પર લાગુ કરવા" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"અથવા Chrome" }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"કોરિયન" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"સબ્સ્ક્રાઇબ કરો" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"પાનું:" + "pwyw":{ + "description":"Text of a payment request link", + "message":"તમે શું કરવા માંગો છો તેના માટે ની ચૂકવણી કરો!" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"શું તમને ભૂલ મળી?" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"નિષ્ક્રિય ગાળકો માં ફેરફાર કરો:" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"પગલું 1: અવરોધિત કરવા ની આકૃતિ અથવા રસ્તો" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"આ એક ફિલ્ટર યાદી સમસ્યા છે. તેને અહીં જાણ અહી કરો: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"અવરોધિત તત્વ:" }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"તમે વધુ ફિલ્ટર યાદીઓ નો ઉપયોગ કરી શકો છો, જો AdBlock ધીમી ઝડપે ચાલતુ હોય તો. ઘણી બધી યાદીઓ ઉપયોગ કરીને પણ કેટલીક વેબસાઇટ્સ પર તમારા બ્રાઉઝર ક્રેશ કરી શકે છે. ઓકે દબાવો તેમ છતાં આ યાદી ઉમેદવારી નોંધાવવા માટે." + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"નોંધ: તમારી રિપોર્ટની જાહેરમાં ઉપલબ્ધ બની જાય છે. ખાનગી કંઈપણ સહિત પહેલાં ધ્યાનમાં રાખવા." }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"અથવા Chrome માટે AdBlock" + "typepage":{ + "description":"A resource type", + "message":"પાનું" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"જાહેરાત અવરોધિત કરો" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "adstillappear":{ + "description":"Question on ad report page", + "message":"શું આ જાહેરાત હજુ દેખાય છે?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "typeother":{ + "description":"A resource type", + "message":"અન્ય" }, - "filterdanish":{ + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"આ ક્લિક કરો:મારા ગાળકો અપડેટ કરો" + }, + "filteritalian":{ "description":"language", - "message":"ડેનિશ" + "message":"ઇટાલિયન" }, - "typesub_frame":{ - "description":"A resource type", - "message":"ફ્રેમ" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"ફેરફાર કરો" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"આ બટન છુપાવવા માટે, આ લિંક પર જાઓ opera://extensions અને તપાસો 'ટૂલબાર છુપાવ્યા' વિકલ્પ પસંદ કરો. તમે તે વિકલ્પ ચકાસ્યા વગર તેને ફરીથી બતાવી શકો છો." }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"જાહેરાતો શોધવા ...

આ માત્ર ત્યારે જ એક ક્ષણ લેવા પડશે." + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"અપડેટ્સ તપાસ કરતી વખતે કંઈક ખોટું થયું હતું." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"આ ડોમેઇન અથવા url AdBlock અવરોધિત ન જોઈએ" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"આ સફારી મેનુ પર​ ક્લિક કરો → પસંદગીઓ → એક્સ્ટેન્શન્સ." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"અપડેટ્સ માટે તપાસી રહ્યું છે (માત્ર થોડી સેકન્ડોમાં માં થઇ જશે)..." + "typeobject_subrequest":{ + "description":"A resource type", + "message":"ઑબ્જેક્ટ_પેટાવિનંતી" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"આ જાહેરાત આ પૃષ્ઠ પર યોગ્ય રીતે અવરોધિત છે, ત્યાં સુધી આ બદલવા માટે સ્લાઇડર સ્લાઇડ કરો,અને અવરોધિત તત્વ ઉપયોગી લાગે શકે તેવ હોય તો." + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"પાનું:" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"આ ડોમેન પર પૃષ્ઠો પર ચલાવવા નથી" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"આ જાહેરાત સાથે પૃષ્ઠને ફરીથી લોડ કરો." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Firefox $chrome$ જો તમરી પાસે ન હોય તો.", + "unsubscribedlabel":{ + "description":"Status label", + "message":"ઉમેદવારી દૂર." + }, + "typemedia":{ + "description":"A resource type", + "message":"ઓડિયો/વિડિયો" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock ની નવી સુધારાઓ" - }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"'Enabled checkbox' ને અનચેક કરો AdBlock ની સિવાય દરેક વિસ્તરણ માટે આગામી થશે.\nAdBlock ને સક્રિય કરો." + "filterlatvian":{ + "description":"A filter list", + "message":"લાતવિયન" }, - "lang_ukranian":{ - "description":"language", - "message":"યુક્રેનિયન" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"આ પાનાં પર જાહેરાત અવરોધિત કરો" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"સુધારાયેલ $minutes$ મિનિટ પહેલા", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "buttonblockit":{ + "description":"Block button", + "message":"અવરોધિત કરો!" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"ફ્રેન્ચ" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"જાહેરાતો અવરોધિત કરવાનું બંધ કરો:" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"તમને એક જાહેરાત જોઈ રહ્યાં છો, તો ક્ષતિ અહેવાલ બનાવા ની જરૂર નથીજાહેરાત રિપોર્ટ!" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"ચોક્કસ YouTube ની ચેનલો વ્હાઇટલિસ્ટિંગ પરવાનગી આપો" }, - "typeobject":{ - "description":"A resource type", - "message":"ઇન્ટરેક્ટિવ પદાર્થ" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"કઈ ભાષામાં તે પૃષ્ઠ લખાયેલ છે?" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"હમણાં અપડેટ કરો" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "savebutton":{ - "description":"Save button", - "message":"સેવ કરો" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"યાદીમાંથી દૂર કરો" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"ચેતવણી: અન્ય તમામ સાઇટ્સ પર જાહેરાતો દેખાળવા માં આવશે!
તે સાઇટ્સ માટે અન્ય તમામ ગાળક નામંજૂર કરે છે." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"આ સૂચનાઓ અક્ષમ કરો" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"અમે હજુ સુધી Flash અંદર જાહેરાતો અને અન્ય પ્લગઈનો અવરોધિત કરી શકતા નથી. પણ આપણે બ્રાઉઝર અને WebKit ટેકા ની રાહ જોઈ રહ્યા છીએ." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"ઉમેદવારી સૂચિ ફિલ્ટર કરો ..." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"સુધારાયેલ $days$ દિવસોપહેલા", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"તમને પૃષ્ઠો AdBlock પર ચાલશે નહીં અને કાઈ બદલવા માટે નીચે સ્લાઇડ કરી શકો છો." }, - "typesubdocument":{ + "typehiding":{ "description":"A resource type", - "message":"ફ્રેમ" + "message":"છૂપાઇ" }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (ગોપનીયતા રક્ષણ)" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock આ પાનાં પર નિષ્ક્રિય થયેલ છે." }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"malware વિશે વધુ જાણો" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"આ જાહેરાતમાં અથવા ફિલ્મ કે એક Flash રમત જેવી અન્ય કોઇ પ્લગઇન પહેલાં દેખાય છે?" }, - "filterczech":{ + "filterrussian":{ "description":"Language names for a filter list", - "message":"ઝેક અને સ્લોવેક" + "message":"રશિયન અને યુક્રેનિયન" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"તમને AdBlock ની ના જૂના આવૃત્તિ વાપરી રહ્યા છો.કૃપા કરીને એકસટેન્શન પૃષ્ઠ પર જાઓ, અને 'વિકાસકર્તા મોડ' સક્રિય કરો અને 'હવે અપડેટ કરો એક્સ્ટેન્શન' ક્લિક કરો" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"સ્પેનિશ" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock ના વિકલ્પો" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"આ જાહેરાત અવરોધિત કરો" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"આ યાદી સાફ કરો" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "filterantisocial":{ - "description":"A filter list", - "message":"Anticocial ફિલ્ટર યાદી(સામાજિક મીડિયા બટનો દૂર કરે)" + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"કાળજી રાખો: પૃષ્ઠ પર આ ગાળક બધા $elementtype$ તત્વો સાથે બ્લોકો છે!", + "placeholders":{ + "elementtype":{ + "content":"$1", + "example":"DIV" + } + } }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"ડિબગ સ્ટેટમેન્ટ કન્સોલ લોગ માં બતાવો (AdBlock ડાઉન પડી જાય છે)" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"ClickToFlash સુસંગતતા સ્થિતિ સક્રિય કરો" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"તમે ડ્રૉપબૉક્સ માપ મર્યાદા વટાવી દીધી છે. તમારી વૈવિધ્યપૂર્ણ અથવા અક્ષમ ફિલ્ટર કેટલાક પ્રવેશોને દૂર કરો અને ફરી પ્રયત્ન કરો." + "no":{ + "description":"A negative response to a question", + "message":"ના" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"ફરીથી AdBlock ચાલુ કરો" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"આ પાનાં પર AdBlock ની સક્રિય કરો" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"ફિલ્ટર દ્વારા, આ વિકલ્પો પાનાં પર બદલી શકાય છે:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"જર્મન" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"AdBlock ના બટન પર જાહેરાતોના નંબર બતાવો" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"કાળજી રાખો: પૃષ્ઠ પર આ ગાળક બધા $elementtype$ તત્વો સાથે બ્લોકો છે!", + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"સમાપ્ત થયું!" + }, + "typeunknown":{ + "description":"A resource type", + "message":"અજ્ઞાત" + }, + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"AdBlock થોભાવો" + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"આ ગાળક યાદી પર સબ્સ્ક્રાઇબ કરો,પછી ફરીથી પ્રયત્ન કરો: $list_title$", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"અહીં" + "lang_english":{ + "description":"language", + "message":"ઇંગલિશ" + }, + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"જમણી ક્લિક ના મેનૂ પર આઇટમ્સ ઉમેરો" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"ઠીક, તમે હજુ પણ પર તમારા માટે આ જાહેરાત અવરોધિત કરી શકો છો Options page પરથી. આભાર!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- ભાષા પસંદ કરો -- " + "lang_russian":{ + "description":"language", + "message":"રશિયન" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Hulu.com ની દરેક બાજુએ વિડિઓઝ પ્લે ના થાય તો (તમારા બ્રાઉઝર પુનઃશરૂ જરૂરી છે)" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"તમને એક જાહેરાત જોઈ રહ્યાં છો, તો ક્ષતિ અહેવાલ બનાવા ની જરૂર નથીજાહેરાત રિપોર્ટ!" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"બાકાત" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"તમને Safari ની જૂના આવૃત્તિ વાપરી રહ્યા છો. તાજેતરની આવૃત્તિ મેળવો અથવા AdBlock ની વિરામ માટે AdBlock ની ટૂલબાર પર જઈ ને વિરામ બટન પર ક્લિક કરો, વ્હાઇટલિસ્ટ વેબસાઇટ્સ,અને જાહેરાતો જાણ કરો.હમણાં જ સુધારો." }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"કઈ ભાષામાં તે પૃષ્ઠ લખાયેલ છે?" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (ગોપનીયતા રક્ષણ)" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"શું તમે ખરેખર દૂર કરવા માંગો છો $count$ તમે બ્લોકો માં $host$ પર રચના કરી છે?", + "typexmlhttprequest":{ + "description":"A resource type", + "message":"XMLHttp માગણી" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ હશે $value$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "attribute":{ + "content":"$1", + "example":"class" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "typeimage":{ - "description":"A resource type", - "message":"છબી" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"અનુવાદ માટે ક્રેડિટ જાય:" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"સમાપ્ત થયું!" + }, + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"અન્ય ભાષા માટે ફિલ્ટર્સ ઉમેરો: " }, "loading":{ "description":"Generic message displayed during processes that take some time", @@ -893,318 +931,320 @@ "description":"Message at the top of the blacklist options tab", "message":"જાહેરાત અવરોધિત કરવા માટે જમણી ક્લિક કરો -- અથવા જાતે તેને અહીં અવરોધિત કરો." }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"આ બટન છુપાવવા માટે, તેને અધિકાર ક્લિક કરો અને છુપાવો બટન પસંદ કરો. તમે હેઠળ તે ફરીથી બતાવી શકે છે chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"રોમાનિયન" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"નિષ્ક્રિય ગાળકો માં ફેરફાર કરો:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"અપડેટ્સ તપાસ કરતી વખતે કંઈક ખોટું થયું હતું." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"આ બટન છુપાવવા માટે,Safari ની ટૂલબાર પર જમણી ક્લિક કરો અને કસ્ટમાઇઝ ટૂલબાર પસંદ કરો,પછી AdBlock ના બટનને ટૂલબાર બહાર ખેંચો.તમે ટૂલબાર પાછું ખેંચીને તેને ફરીથી બતાવી શકો છો." - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"સુધારાયેલ 1 મિનિટ પહેલા" - }, - "typemain_frame":{ - "description":"A resource type", - "message":"પાનું" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "filtermalware":{ + "description":"A filter list", + "message":"Malware સુરક્ષા" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"આ પેજ પર ની જાહેરાતો ની જાણ કરો" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"ડિબગ સ્ટેટમેન્ટ કન્સોલ લોગ માં બતાવો (AdBlock ડાઉન પડી જાય છે)" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Firefox $chrome$ જો તમરી પાસે ન હોય તો.", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"અથવા એક URL દાખલ કરો:" - }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"તમને Safari ની જૂના આવૃત્તિ વાપરી રહ્યા છો. તાજેતરની આવૃત્તિ મેળવો અથવા AdBlock ની વિરામ માટે AdBlock ની ટૂલબાર પર જઈ ને વિરામ બટન પર ક્લિક કરો, વ્હાઇટલિસ્ટ વેબસાઇટ્સ,અને જાહેરાતો જાણ કરો.હમણાં જ સુધારો." - }, - "fetchinglabel":{ - "description":"Status label", - "message":"લાવતી ... કૃપા કરીને રાહ જુઓ." - }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" - }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"આ સફારી મેનુ પર​ ક્લિક કરો → પસંદગીઓ → એક્સ્ટેન્શન્સ." - }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"જાહેરાતો અવરોધિત કરવાનું બંધ કરો:" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"તમને તમારો સ્ટોરેજ જથ્થો વટાવી ઉપયોગ AdBlock કરી શકો છો. કેટલાક ફિલ્ટર યાદીઓ ઉમેદવારી દૂર કરો!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"40 મિલિયન વપરાશકર્તાઓ સાથે સૌથી લોકપ્રિય, Chrome એક્સ્ટેન્શન! બધી વેબ સાઇટ​ પર જાહેરાતો બ્લોકો કરો." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"શું આ જાહેરાત હજુ દેખાય છે?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"શું તમને ભૂલ મળી?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"સહાયતા" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"malware વિશે વધુ જાણો" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"બલ્ગેરિયન" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock ની નિશાની બનાવે છે તે જોવા માંગો છો?" + "typescript":{ + "description":"A resource type", + "message":"સ્ક્રિપ્ટ" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"સમાપ્ત થયું!" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"ફિલ્ટર દ્વારા, આ વિકલ્પો પાનાં પર બદલી શકાય છે:" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"ફિલ્ટર યાદીઓ" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"જાતે જ તમારી ગાળકો ફેરફાર કરો:" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"આ સૂચનાઓ અક્ષમ કરો" }, - "filteritalian":{ + "filterchinese":{ "description":"language", - "message":"ઇટાલિયન" + "message":"ચિની" }, - "typepopup":{ - "description":"A resource type", - "message":"પોપઅપ" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"ગાળક અયોગ્ય છે:$exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"ઉમેદવારી સૂચિ ફિલ્ટર કરો ..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"તાજેતરની પ્રકાશનમાં નવી શું છે? ચેન્જલોગ જોવો!" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"કે આ પાનાં પર $matchcount$ વસ્તુઓ મેળ ખાય છે.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "lang_slovak":{ - "description":"language", - "message":"સ્લોવેક" + "updatedhourago":{ + "description":"Label for subscription", + "message":"1 કલાક પહેલા સુધારાશે" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"આ જાહેરાત બ્રાઉઝરમાં બહુ દેખાય છે?" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"આ પાનાં પર ચાલુ નથી" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- ભાષા પસંદ કરો -- " + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"આ જાહેરાત આ પૃષ્ઠ પર યોગ્ય રીતે અવરોધિત છે, ત્યાં સુધી આ બદલવા માટે સ્લાઇડર સ્લાઇડ કરો,અને અવરોધિત તત્વ ઉપયોગી લાગે શકે તેવ હોય તો." + }, + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"ઇન્ડોનેશિયન" + }, + "typeimage":{ + "description":"A resource type", + "message":"છબી" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"ફક્ત આ સાઇટ્સ પર જાહેરાતો અવરોધિત કરો:" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"ફેરફાર કરો" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"અમને અમારી સપોર્ટ સાઇટ પર જણાવો!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"આ ગાળક મેળવે કરવામાં નિષ્ફળ!" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock થોભાવવામાં અવાયું છે." + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"કુલ $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"તમને તમારો સ્ટોરેજ જથ્થો વટાવી ઉપયોગ AdBlock કરી શકો છો. કેટલાક ફિલ્ટર યાદીઓ ઉમેદવારી દૂર કરો!" + "tabsupport":{ + "description":"A tab on the options page", + "message":"સહાયતા" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"અમે હજુ સુધી Flash અંદર જાહેરાતો અને અન્ય પ્લગઈનો અવરોધિત કરી શકતા નથી. પણ આપણે બ્રાઉઝર અને WebKit ટેકા ની રાહ જોઈ રહ્યા છીએ." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"તેના URL દ્વારા જાહેરાત અવરોધિત કરો" }, - "buttonok":{ - "description":"OK button", - "message":"ઓકે!" + "buttoncancel":{ + "description":"Cancel button", + "message":"રદ કરો" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"ઠીક, તમે હજુ પણ પર તમારા માટે આ જાહેરાત અવરોધિત કરી શકો છો Options page પરથી. આભાર!" + "savereminder":{ + "description":"Reminder to press save", + "message":"સેવ કરવાનું ભૂલો નહિં!" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"જનરલ" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "typeother":{ - "description":"A resource type", - "message":"અન્ય" + "optionsversion":{ + "description":"Version number", + "message":"આવૃત્તિ $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"કોઈ ફિલ્ટર સ્પષ્ટ કરેલા નથી!" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"આ પ્રશ્ન હેતુ તમારી રિપોર્ટની પ્રાપ્ત કરીશું જે નક્કી કરવા માટે છે.તમે આ પ્રશ્નનો જવાબ ખોટા આપ શો તો,આ અહેવાલ ખોટા લોકો મોકલવામાં આવશે,તેથી તે અવગણવામાં આવી શકે છે." }, - "typeunknown":{ - "description":"A resource type", - "message":"અજ્ઞાત" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"શું તમે ખરેખર સૂચિ ફિલ્ટર ઉમેદવારી નોંધાવવા માટે માગો છો $title$ ?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "filtereasylist_plus_finnish":{ + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"સ્ત્રોત કોડ મુક્ત રીતે ઉપલબ્ધ છે!" + }, + "filterdutch":{ "description":"language", - "message":"ફિનિશ" + "message":"ડચ" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"નીચે બરાબર ફિલ્ટર લખો અને કૃપા કરીને પ્રેસ કરો" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock આ પાનાં પર નિષ્ક્રિય થયેલ છે." + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"આ પાનાં પર 1 આઇટમ સાથે બંધબેસે છે." }, - "typemedia":{ - "description":"A resource type", - "message":"ઓડિયો/વિડિયો" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "filterjapanese":{ - "description":"language", - "message":"Japanese" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"આ યાદી સાફ કરો" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"આ એક ફિલ્ટર યાદી સમસ્યા છે. તેને અહીં જાણ અહી કરો: $link$", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"સુધારાયેલ $hours$ કલાક પહેલા", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"આ ગાળક મેળવે કરવામાં નિષ્ફળ!" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"પાછા" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"ગાળક યાદીઓ લિંક્સ બતાવો" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"માત્ર ઇંગલિશ" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"રદ કરો" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock ના વિકલ્પો" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"તેનો પ્રસાર માટે મદદ કરો!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"બીટા" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"તમને પૃષ્ઠો AdBlock પર ચાલશે નહીં અને કાઈ બદલવા માટે નીચે સ્લાઇડ કરી શકો છો." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Firefox માટે ચેક કરો $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"તમને જરૂર કરતાં વધુ સબ્સ્ક્રાઇબ નથી -- દરેક એક એક નાના બીટ તમને શાંત કરે છે! ક્રેડિટ અને વધુ યાદીઓ મળી શકે અહીં." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"ClickToFlash સુસંગતતા સ્થિતિ સક્રિય કરો" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"અપડેટ્સ માટે તપાસી રહ્યું છે (માત્ર થોડી સેકન્ડોમાં માં થઇ જશે)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"આ ગાળક યાદી પર સબ્સ્ક્રાઇબ કરો,પછી ફરીથી પ્રયત્ન કરો: $list_title$", + "filterhungarian":{ + "description":"language", + "message":"હંગેરિયન" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"ડોમેન ના પેજ પર લાગુ કરવા" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"હમણાં અપડેટ કરો" + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"અમારી ટીમ કેટલાક ડિબગ માહિતી માટે વિનંતી કરી છે? તે માટે! અહીં જાઓ!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"સુધારાયેલ $minutes$ મિનિટ પહેલા", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"જાહેરાત જાણ માટે, તમે ઇન્ટરનેટ સાથે જોડાયેલ હોવું જ જોઈએ." + "lang_czech":{ + "description":"language", + "message":"ઝેક" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"એક પ્રશ્ન અથવા નવા વિચારો છે?" + "filterswedish":{ + "description":"A filter list", + "message":"સ્વિડીશ" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock નો આધાર" }, - "yes":{ - "description":"A positive response to a question", - "message":"હા" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"પ્રકાર" }, - "filtereasylist_plus_spanish":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"સ્પેનિશ" + "message":"ફ્રેન્ચ" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"સારી દેખાય છે" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"સુધારાયેલ 1 મિનિટ પહેલા" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (ભલામણ)" + "typesub_frame":{ + "description":"A resource type", + "message":"ફ્રેમ" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - વિગતો માટે ક્લિક કરો" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"AdBlock ચલાવવા નથી ..." } } \ No newline at end of file diff --git a/_locales/hr/messages.json b/_locales/hr/messages.json index ec434b53..000c8c9b 100644 --- a/_locales/hr/messages.json +++ b/_locales/hr/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Dodajte snimak ekrana:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nije pronađen poznati zlonamjerni softver." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"U tom pregledniku, pretplatite se na iste liste filtera koje imate ovdje." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Imate pitanje ili novu ideju?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"U tom pregledniku pokrenite stranicu sa reklamom." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Postavke" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Švedski" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokirati još reklama:" - }, - "lang_russian":{ - "description":"language", - "message":"Ruski" + "message":"EasyList (preporučeno)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Odjavljeno." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"Blokirano na ovoj stranici: $count$", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Kineski" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Ako ste stvorili filter koji radi koristeći čarobnjaka \"Blokiraj oglas\", zalijepite ga u prostor ispod:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocijalna lista filtera (uklanja gumbe društevnih mreža)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Pronašli ste oglas na web-stranici? Pomoći ćemo Vam da pronađete pravo mjesto za prijaviti!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Pokaži broj blokiranih reklama na AdBlock gumbu" + "message":"Poljski" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Izvorni kod je slobodno dostupan!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"Da odgovara CSS-u" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"ažurirano prije 1 minutu" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Isključiti" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Neuspjelo dobavljanje ovog filtera!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Ne želim ovo provjeravati" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Ponovno pokrenite Safari kako bi završili isključivanje blokiranje sadržaja." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokirati reklamu po njezinom URL-u" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Sakrij dugme" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Budite oprezni: ako ovdje napravite pogrešku mnogo drugih filtera, uključujući službene, se može pokvariti!
Pročitajte sintaksni vodič za filtere kako bi naučili dodavati napredne filtere zabranjujućih i dopuštajućih lista." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Ažuriranja će se preuzimati automatski; također možete ažurirati sada" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Da li se reklama pojavljuje i u tom pregledniku?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~site1.com|~site2.com|~vijesti.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Ako ne želite vidjeti oglase poput ovog, možete napustiti filter listu Prihvatljivih oglasa." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Estonski" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tip" + "message":"Litvanski" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Postoji nova verzija za AdBlock! Idite $here$ kako biste ažurirali.
Bilješka: Ako želite primati ažuriranja automatski, samo kliknite u Safari > Postavke > Proširenja > Ažuriranja
i provjerite opciju 'Instaliraj ažuriranja automatski'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Prijavite se na ovu listu filtera, pa ponovno pokušajte: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Što je ovo?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Nemojte se prijavljivati na više nego Vam je potrebno -- svaka stavka dodatno usporava AdBlock! Impresum i ostale liste možete pronaći ovdje." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Ta AdBlock mogućnost ne radi na ovoj stranici jer koristi zastarjelu tehnologiju. Možete staviti na listu zabranjujućih i dopuštajućih filtera ručno u kartici 'Prilagodi' u postavkama." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Poljski" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Naučite više o programu Prihvatljivih oglasa." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"ažurirano prije $seconds$ sekundi", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Vaše računalo je možda zaraženo sa zlonamjernim softverom. Kliknite ovdje za više informacija." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"objektni podzahtjev" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Prikazati reklame na stranici ili domeni" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Mađarski" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Napomena: Vaše izvješće može biti javno dostupno. Imajte to na umu prije nego ćete staviti nešto privatno." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Molimo onemogućite neke liste filtera. Više informacija u AdBlock postavkama." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"slovački" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Podrijetlo filtera:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Instalirajte AdBlock Plus za Firefox $chrome$ ako ga nemate.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Isprika, AdBlock je onemogućen na ovoj stranici zbog neke od vaših lista filtera." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filter je neispravan: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Nemamo zadanu listu filtera za taj jezik.
Molim pronađite odgovarajuću listu koja podržava ovaj jezik $link$ ili blokirajte reklamu samo za sebe na kartici 'Prilagodi'.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Upozorenje: filter nije unesen!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock je onemogućen na ovoj stranici." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Kliknite reklamu i ja ću Vas voditi kroz blokiranje." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Prikaži reklame bilo gdje osim na slijedećim domenama..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Gornji okvir" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Postavke" + "typestylesheet":{ + "description":"A resource type", + "message":"definicija stila" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttp zahtjev" + "message":"nepoznato" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Isprika, AdBlock je onemogućen na ovoj stranici zbog neke od vaših lista filtera." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Blokirane reklame:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Reklamni filteri za drugi jezik: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Treće-strane" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Kliknite reklamu i ja ću Vas voditi kroz blokiranje." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Filter nije unesen!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grčki" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Ako vidite reklamu, nemojte napraviti prijavu greške, napravite prijavu reklame!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Koristite staru verziju AdBlock-a. Molim Vas posjetite stranicu proširenja, omogućite 'Način za razvojne programere' i kliknite 'Ažuriraj proširenja sada'." }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Savršeno! Sve je kompletno namješteno." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Kako se zovete?" }, - "other":{ - "description":"Multiple choice option", - "message":"Drugi" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Zaobilazno rješenje problema sa Hulu.com kad video ne radi (zahtijeva da se preglednik ponovno pokrene)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock podrška" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Upozorenje: filter nije unesen!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Prilagodi" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Pronašli ste oglas na web-stranici? Pomoći ćemo Vam da pronađete pravo mjesto za prijaviti!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estonski" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Prilagodi AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Tražene informacije nedostaju ili nisu valjane. Molimo ispunite pitanja koja su označena crveno." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bugarski" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Greška pri spremanju poslane datoteke." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Dopušteni resurs" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Molim Vas da ispravite filter ispod i kliknete OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Granica pravila blokiranog sadržaja je premašena" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Korak 1: Što blokirati?" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Danski" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Nemoj pokretati AdBlock na..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"Blokirano na ovoj stranici: $count$", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokirati URL-ove koji sadržavaju ovaj tekst" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Zatvori" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Provjerite u Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Podokvir" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Posljednji korak: Što ovo čini reklamom" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"ažurirano prije 1 sat" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Ako vidite reklamu, nemojte napraviti prijavu greške, napravite prijavu reklame!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Korejski" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ili Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Kako se zovete?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Najpopularnije Chrome proširenje, sa preko 40 milijuna korisnika! Blokira reklame na cijelom internetu." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Koristite staru verziju preglednika Safari. Nabavite zadnju verziju da biste mogi koristiti AdBlock dugme alatne trake za pauziranje AdBlock-a, da onemogućite AdBlock-a na nekim web stranicama ili prijavite reklame. Ažurirajte sad." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Pokaži sve zahtjeve" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finski" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Ne želim ovo provjeravati" + "typescript":{ + "description":"A resource type", + "message":"skripta" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Ukrajinski" }, - "yes":{ - "description":"A positive response to a question", - "message":"Da" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nije pronađen poznati zlonamjerni softver." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Vrati moja blokiranja na ovoj domeni" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Molimo onemogućite neke liste filtera. Više informacija u AdBlock postavkama." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Prilagodi" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Isključili smo vas iz Prihvatljivih oglasa zato što ste uključili Safari blokiranje sadržaja. Možete odabrati samo jedno po jedno. (Zašto?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pauziraj AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Također, imamo i stranicu na kojoj možete pronaći ljude koji su napravili AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Jeste li sigurni da se želite pretplatiti na popis filtera $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"ovdje" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Gdje točno na stranici se nalazi reklama? Kako izgleda?" + "typepopup":{ + "description":"A resource type", + "message":"skočni prozorčić" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttp zahtjev" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ili AdBlock za Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Ponovo učitajte stranicu." }, - "typestylesheet":{ - "description":"A resource type", - "message":"definicija stila" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Na kojem je jeziku stranica napisana?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock je pauziran." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Granica pravila blokiranog sadržaja je premašena" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Ponovo aktivirati AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Traženje reklama...

Ovo će potrajati trenutak." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock je onemogućen na ovoj stranici." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domena ili URL gdje AdBlock ne bi trebao blokirati ništa" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"U tom pregledniku, pretplatite se na iste liste filtera koje imate ovdje." }, - "typescript":{ - "description":"A resource type", - "message":"skripta" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokiraj reklamu" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"Ukupno blokirano: $count$", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Upozoranje: na svim drugim stranicama ćete vidjeti reklame!
Ovo nadilazi sve druge filtere za te stranice." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Postoji nova verzija za AdBlock! Idite $here$ kako biste ažurirali.
Bilješka: Ako želite primati ažuriranja automatski, samo kliknite u Safari > Postavke > Proširenja > Ažuriranja
i provjerite opciju 'Instaliraj ažuriranja automatski'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Sve gotovo! Uskoro ćemo se opet čuti, već kroz jedan dan vjerojatno, dva ako je praznik. U međuvremenu, potražite email od AdBlock-a. Naći ćete poveznicu za vašu prijavnicu na našoj stranici za pomoć. Ako preferirate koristiti email, možete i tako nastaviti!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Završeno!" }, - "no":{ - "description":"A negative response to a question", - "message":"Ne" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock prilagodljivi filteri (preporučeno)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Nešto je pošlo krivo. Resursi nisu poslani. Stranica će se sada zatvoriti. Pokušajte ponovno pokrenuti stranicu." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tip" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Što je ovo?" + }, + "filterjapanese":{ "description":"language", - "message":"Ukrajinski" + "message":"Japanski" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"ažurirano prije $minutes$ minuta", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Podrijetlo filtera:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Isključili smo vas iz Prihvatljivih oglasa zato što ste uključili Safari blokiranje sadržaja. Možete odabrati samo jedno po jedno. (Zašto?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Više niste pretplaćeni na liste prihvatljivih oglasa." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Zaštita od zločudnog softvera" - }, - "savebutton":{ - "description":"Save button", - "message":"Spremi" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Upozoranje: na svim drugim stranicama ćete vidjeti reklame!
Ovo nadilazi sve druge filtere za te stranice." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Onemogući ove obavijesti" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Pretplata na listu filtera..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Prijava na listu filtera" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Koristite staru verziju AdBlock-a. Molim Vas posjetite stranicu proširenja, omogućite 'Način za razvojne programere' i kliknite 'Ažuriraj proširenja sada'." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Vrsta okvira: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock postavke" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Reklamni filteri za drugi jezik: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Odgovarajući filter" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Provjeri za zloćudni softver koji možda umeće oglase:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Liste filtera blokiraju večinu reklama na internetu. Možete također:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Prikaži izjave uklanjanja pogreške u zapisu konzole (usporava AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Za skrivanje gumba, desnim klikom na alatnu traku Safari-ja odaberite Prilagodba alatne trake, a zatim povucite gumb AdBlock iz alatne trake. Možete ga ponovo prikazati povlačenjem natrag u alatnoj traci." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Premašili ste Dropbox ograničenje veličine. Molimo uklonite neke unose iz vaših prilagođenih ili onemogućenih filtera pa pokušajte ponovno." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Ponovo aktivirati AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Zaobilazno rješenje problema sa Hulu.com kad video ne radi (zahtijeva da se preglednik ponovno pokrene)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Isključiti" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Onemogućite sva proširenja osim AdBlock-a:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Zasluga za prijevod:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"POKRETANJE..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Desni klik na stranici na reklami za blokiranje -- ili ovdje blokiraj ručno." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Prijavi" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Napomena: Dodavanjem na listu dopuštenog (dopuštanje oglasa) stranice nije podržano sa blokiranjem sadržaja za Safari." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Koristiti ćemo ovo samo ako budemo trebali još informacija." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Uredi onemogućene filtere:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokirani element:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"stranica" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Omogući blokiranje sadržaja za Safari" + "typeother":{ + "description":"A resource type", + "message":"ostalo" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Vaša email adresa?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Klikni ovo: Ažuriraj moje filtere!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Za skrivanje gumba, desnim klikom na alatnu traku Safari-ja odaberite Prilagodba alatne trake, a zatim povucite gumb AdBlock iz alatne trake. Možete ga ponovo prikazati povlačenjem natrag u alatnoj traci." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Greška pri analiziranju vašeg zahtjeva." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Skriveni element" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Da maknete gumb, idite na opera://extensions i obilježite 'Makni sa alatne trake' opciju. Možete ga vratiti kasnije tako da poništite tu opciju." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"stranica" + "message":"objektni podzahtjev" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Stranica:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Gotovo! Ponovo smo pokrenuli stranicu sa reklamom. Molimo provjerite tu stranicu i je li oglas nestao. Onda se vratite na ovu stranicu i odgovorite na pitanje ispod." + "buttonblockit":{ + "description":"Block button", + "message":"Blokiraj!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Ili unesite URL:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dopusti postavljanje YouTube kanala na listu dopuštenih" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Koristite staru verziju preglednika Safari. Nabavite zadnju verziju da biste mogi koristiti AdBlock dugme alatne trake za pauziranje AdBlock-a, da onemogućite AdBlock-a na nekim web stranicama ili prijavite reklame. Ažurirajte sad." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Kliknite Safari menu → Postavke → Proširenja." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Zaustavi blokiranje reklama:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Još ne možemo blokirati reklame unutar Flash ili drugih dodataka. Čekamo da to podrže preglednik ili WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokiraj!" + "filterhungarian":{ + "description":"language", + "message":"Mađarski" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Da li se reklama još pojavljuje?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokiraj ovu reklamu" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bugarski" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Odlično! Pronađimo sada koje proširenje je uzrok. Prođite kroz listu i omogućite svako proširenje posebno. Proširenje koje donosi oglase nazad je ono koje bi trebali maknuti da se riješite reklama." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Omogući AdBlock na ovoj stranici" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Pokaži broj blokiranih reklama na AdBlock gumbu" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Neuspjelo!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Ručno urediti svoje filtere:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pauziraj AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Talijanski" - }, - "typepopup":{ - "description":"A resource type", - "message":"skočni prozorčić" + "message":"Engleski" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tip" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dodaj stavke na izbornik desnog klika" }, - "lang_slovak":{ - "description":"language", - "message":"slovački" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Molimo idite na našu stranicu za podršku." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Prijava na listu filtera" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"AdBlock lista uklanjanja upozorenja (uklanja upozorenja o korištenju blokera oglasa)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Možete ovo omogućite i podržati stranice koje volite odabiranjem \"Dopusti neke nenametljive reklame\" ispod." + "typemain_frame":{ + "description":"A resource type", + "message":"stranica" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Da li se reklama pojavljuje i u tom pregledniku?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Jeste li sigurni da želite maknuti $count$ blokiranja koje ste napravili na $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Nemoj pokretati na ovoj stranici" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legenda: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"ažurirano prije $minutes$ minuta", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Dodajte snimak ekrana:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Litvanski" + "message":"Rumunjski" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Recite nam na našoj stranici podrške!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Uredi onemogućene filtere:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock je pauziran." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Podokvir" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Još ne možemo blokirati reklame unutar Flash ili drugih dodataka. Čekamo da to podrže preglednik ili WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Ponovno pokreni stranicu sa reklamom." }, - "buttonok":{ - "description":"OK button", - "message":"U redu!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Omogući blokiranje sadržaja za Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Instalirajte Firefox $chrome$ ako ga nemate.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Općenito" + "message":"Liste filtera" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Ako ne želite vidjeti oglase poput ovog, možete napustiti filter listu Prihvatljivih oglasa." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Ako ste stvorili filter koji radi koristeći čarobnjaka \"Blokiraj oglas\", zalijepite ga u prostor ispod:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Vaše računalo je možda zaraženo sa zlonamjernim softverom. Kliknite ovdje za više informacija." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Ova datoteka je prevelika. Molimo provjerite veličinu, maksimalno je 10 MB." }, - "typeother":{ - "description":"A resource type", - "message":"ostalo" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock neće raditi na nijednoj stranici koja odgovara slijedećem:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Filter nije unesen!" + "filterchinese":{ + "description":"language", + "message":"Kineski" }, - "typeunknown":{ - "description":"A resource type", - "message":"nepoznato" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filter je neispravan: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Pretplata na listu filtera..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Otvori stranicu proširenja kako bi omogućili proširenja koja su bila onemogućena." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Onemogući ove obavijesti" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Turski" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Nemojte se prijavljivati na više nego Vam je potrebno -- svaka stavka dodatno usporava AdBlock! Impresum i ostale liste možete pronaći ovdje." + }, + "typesubdocument":{ "description":"A resource type", - "message":"audio/video" + "message":"okvir" }, - "filterjapanese":{ - "description":"language", - "message":"Japanski" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonezijski" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Dopusti neke nenametljive reklame" + "typeimage":{ + "description":"A resource type", + "message":"slika" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"Ukupno blokirano: $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Odustani" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Možete pomaknuti klizač ispod kako biste promjenili točno gdje želite da se AdBlock ne pokreće." + "savereminder":{ + "description":"Reminder to press save", + "message":"Ne zaboravite spremiti!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"za odabir" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Isključili smo Safari blokiranje sadržaja jer ste odlučili dopustiti prihvatljive oglase. Možete odabrati samo jedno po jedno. (Zašto?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Zadnji korak: prijavite grešku nama." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Provjerite u Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Islandski" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Da biste prijavili reklamu, morate biti spojeni na internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Liste filtera blokiranih reklama" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (preporučeno)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokiraj reklame samo na slijedećim stranicama:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Pokrenuto na stranici s domenom:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Prijavljivanje reklame" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Proširenja koja su prije bila onemogućena sada su omogućena." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Liste filtera blokiranih reklama" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Kako?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Očisti ovu listu" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dopusti postavljanje YouTube kanala na listu dopuštenih" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Pomozite proširiti ideju!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Treće-strane" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (uklanja dosadne smetnje sa Weba)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - kliknite za detalje" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock postavke" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Greška pri analiziranju vašeg zahtjeva." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"ažurirano prije $hours$ sati", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"ažurirano prije 1 sat" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ruski i ukrajinski" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Provjeravanje ažuriranja (trebalo bi trajati samo nekoliko sekundi)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Što je novo u posljednjem izdanju? Pogledajte popis promjena!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"upravo ažurirano" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Proširenja koja su prije bila onemogućena sada su omogućena." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Desni klik na stranici na reklami za blokiranje -- ili ovdje blokiraj ručno." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grčki" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Provjeri za zloćudni softver koji možda umeće oglase:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Sakriti dio stranice" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock podrška" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video i Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tip" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Što mislite da će biti istinito oko ove reklame svaki puta kad posjetite ovu stranicu?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Pomaknite klizač dok reklama nije blokirana ispravno na stranici te blokirani element ne izgleda upotrebljivo." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Omogući AdBlock na ovoj stranici" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"ažurirano prije 1 minutu" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Nazad" + "typesub_frame":{ + "description":"A resource type", + "message":"okvir" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Liste filtera blokiraju večinu reklama na internetu. Možete također:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Blokirani resurs" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Slijedeće informacije biti će također uključene u prijavu oglasa." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Danski" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Provjeri filtere Prihvatljivih oglasa:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Prikazati reklame na stranici ili domeni" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Možete ovo omogućite i podržati stranice koje volite odabiranjem \"Dopusti neke nenametljive reklame\" ispod." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Dobavljam... molim pričekajte." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Nepravilna lista URL. Bit će obrisana." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opće postavke" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Poništite 'Omogućeno' kvačicu pokraj svakog proširenja osim pokraj AdBlock-a. Ostavite AdBlock omogućen." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"U tom pregledniku pokrenite stranicu sa reklamom." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Prikaži reklame bilo gdje osim na slijedećim domenama..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Zaboravili ste prikvačiti snimak zaslona! Ne možemo Vam pomoći ako ne vidimo o kakvom se oglasu radi." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Ovo odgovara 1 stavci na ovoj stranici." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"I ručno napravite prijavnicu, kopirajte i zalijepite informacije ispod u sekciju \"Fill in any details you think will help us understand your issue\"." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Budite oprezni: ako ovdje napravite pogrešku mnogo drugih filtera, uključujući službene, se može pokvariti!
Pročitajte sintaksni vodič za filtere kako bi naučili dodavati napredne filtere zabranjujućih i dopuštajućih lista." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Dopusti $name$ kanal", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Sakrijte gumb tako da ga desnim klikom miša kliknete i odaberte Sakrij gumb. Možete gumb vratiti nazad u opcijama proširenja: chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opće postavke" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock neće raditi na nijednoj stranici koja odgovara slijedećem:" + "filterisraeli":{ + "description":"language", + "message":"Hebrejski" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Nemamo zadanu listu filtera za taj jezik.
Molim pronađite odgovarajuću listu koja podržava ovaj jezik $link$ ili blokirajte reklamu samo za sebe na kartici 'Prilagodi'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Ta AdBlock mogućnost ne radi na ovoj stranici jer koristi zastarjelu tehnologiju. Možete staviti na listu zabranjujućih i dopuštajućih filtera ručno u kartici 'Prilagodi' u postavkama." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Prijavi" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Češki i slovački" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Ja sam napredni korisnik, prikaži mi napredne postavke" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Onemogućili smo sva proširenja. Sada ćemo ponovno pokrenuti stranicu sa oglasom. Jednu sekundu, molim." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Španjolski" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Ostale liste filtera" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Pokrenuto na stranici s domenom:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Ažuriranja će se preuzimati automatski; također možete ažurirati sada" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Klikni ovo: Ažuriraj moje filtere!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Pokaži sve zahtjeve" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Što više lista fitera koristite, sporiji će biti AdBlock. Korištenje previše lista može čak srušiti Vaš preglednik na nekim stranicama. Pritisnite U redu da se ipak prijavite na ovu listu." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Posljednji korak: Što ovo čini reklamom" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Savršeno! Sve je kompletno namješteno." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Ovo odgovara $matchcount$ stavki na ovoj stranici.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Također, imamo i stranicu na kojoj možete pronaći ljude koji su napravili AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Otvori stranicu proširenja." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonezijski" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Sve gotovo! Uskoro ćemo se opet čuti, već kroz jedan dan vjerojatno, dva ako je praznik. U međuvremenu, potražite email od AdBlock-a. Naći ćete poveznicu za vašu prijavnicu na našoj stranici za pomoć. Ako preferirate koristiti email, možete i tako nastaviti!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turski" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Naučite više o programu Prihvatljivih oglasa." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokiraj reklamu" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Treba li vas AdBlock obavijestiti kada pronađe zloćudni softver?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Lista prilagođenih filtera" + "updateddayago":{ + "description":"Label for subscription", + "message":"ažurirano prije 1 dan" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL okvira: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Svrha ovog pitanja je da se utvrdi tko bi trebao primiti vaš izvještaj. Ako odgovorite netočno, izvještaj će biti poslan krivim ljudima pa tako možda i zanemaren." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dodaj stavke na izbornik desnog klika" - }, - "typeselector":{ - "description":"A resource type", - "message":"za odabir" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokiraj ovu reklamu" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Da li je naš tim zatražio informacije o grešci? Kliknite ovdje za to!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Njemački" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Nemoj pokretati AdBlock na..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Prijavljivanje oglasa je dobrovoljno. Pomaže drugima da također ne vide reklame tako što održavatelji lista filtera blokiraju oglas za sve. Ako se ne osjećate altruistički, to je isto u redu. Zatvorite ovu stranicu i blokirajte oglas samo sebi." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Naziv datoteke je prevelik. Molimo skratite naziv datoteke." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Skriveni element" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"ažurirano prije $seconds$ sekundi", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Ponovo učitajte stranicu." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Nemoj pokretati na ovoj stranici" }, - "typepage":{ - "description":"A resource type", - "message":"stranica" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Recite nam na našoj stranici podrške!" }, - "filterdutch":{ - "description":"language", - "message":"Nizozemski" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Naziv datoteke je prevelik. Molimo skratite naziv datoteke." + "buttonok":{ + "description":"OK button", + "message":"U redu!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Ne zaboravite spremiti!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Gotovo! Ponovo smo pokrenuli stranicu sa reklamom. Molimo provjerite tu stranicu i je li oglas nestao. Onda se vratite na ovu stranicu i odgovorite na pitanje ispod." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Provjeravanje ažuriranja (trebalo bi trajati samo nekoliko sekundi)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Svi resursi" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Prijavite se na ovu listu filtera, pa ponovno pokušajte: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Dopusti $name$ kanal", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Treba li vas AdBlock obavijestiti kada pronađe zloćudni softver?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Resurs" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Pokaži broj blokiranih reklama na AdBlock izborniku" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Lokacija:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Prijavljivanje reklame" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock prilagodljivi filteri (preporučeno)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Kako?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Onemogući pokretanje na stranicima ove domene" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Lista prilagođenih filtera" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokirati još reklama:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Tražene informacije nedostaju ili nisu valjane. Molimo ispunite pitanja koja su označena crveno." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domena ili URL gdje AdBlock ne bi trebao blokirati ništa" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Latvijski" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Više niste pretplaćeni na liste prihvatljivih oglasa." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Provjerite je li koristite ispravni filter za jezik:" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (uklanja dosadne smetnje sa Weba)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"Da odgovara CSS-u" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock je blokirao preuzimanje sa web stranice poznate po držanju zločudnih programa." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Da maknete gumb, idite na opera://extensions i obilježite 'Makni sa alatne trake' opciju. Možete ga vratiti kasnije tako da poništite tu opciju." + "savebutton":{ + "description":"Save button", + "message":"Spremi" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Niste sigurni? samo kliknite 'Blokiraj!' ispod." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Odgovarajući filter" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Dobavljam... molim pričekajte." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Svi resursi" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Zadnji korak: prijavite grešku nama." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock je ažuriran!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Onemogući pokretanje na stranicima ove domene" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Gdje točno na stranici se nalazi reklama? Kako izgleda?" }, - "filterisraeli":{ - "description":"language", - "message":"Hebrejski" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Izgleda u redu" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Pomaknite klizač dok reklama nije blokirana ispravno na stranici te blokirani element ne izgleda upotrebljivo." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokirati URL-ove koji sadržavaju ovaj tekst" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dopusti AdBlock-u anonimno prikupljanje podatka i korištenja liste filtara" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Da biste prijavili reklamu, morate biti spojeni na internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Broj pravila filter listi prešao je granicu od 50.000 i automatski je smanjen. Molimo odjavite se sa nekih listi ili onemogućite blokiranje sadržaja za Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Jeste li sigurni da se želite pretplatiti na popis filtera $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"ažurirano prije 1 dan" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Prihvatljivi oglasi (preporučeno)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Kliknite ovo: Onemogući Prihvatljive oglase" - }, - "optionsversion":{ - "description":"Version number", - "message":"Verzija $version$", + "message":"ažurirano prije $days$ dana", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Uklanjanje iz liste" + "typeobject":{ + "description":"A resource type", + "message":"interakivni objekt" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"To nije slikovna datoteka. Molimo pošaljite .png, .gif, ili .jpg datoteku." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Što mislite da će biti istinito oko ove reklame svaki puta kad posjetite ovu stranicu?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Zašto nam ne pošaljete izvještaj greške?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Blokirane reklame:" }, - "typehiding":{ - "description":"A resource type", - "message":"skrivanje" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Liste filtera" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arapski" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domena okvira: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Vrati moja blokiranja na ovoj domeni" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Gornji okvir" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Ručno urediti svoje filtere:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Završeno!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Korak 1: Što blokirati?" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Resurs" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Molim Vas da ispravite filter ispod i kliknete OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokiraj reklamu na ovoj stranici" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Zasluga za prijevod:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Provjerite stanje ažuriranja vaših filter lista:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock je ažuriran!" }, - "lang_english":{ - "description":"language", - "message":"Engleski" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Samo engleski" }, - "filtericelandic":{ - "description":"language", - "message":"Islandski" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ILI, samo kliknite ovaj gumb kako bi uradili sve ovo iznad: Onemogući sva druga proširenja" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Otvori stranicu proširenja kako bi omogućili proširenja koja su bila onemogućena." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Što je novo u posljednjem izdanju? Pogledajte popis promjena!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domena stranice na koju želite primijeniti" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocijalna lista filtera (uklanja gumbe društevnih mreža)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Stranica:" + "filtermalware":{ + "description":"A filter list", + "message":"Zaštita od zločudnog softvera" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Pronašli ste grešku?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Ja sam napredni korisnik, prikaži mi napredne postavke" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arapski" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Prešli ste preko omogućene memorije koje AdBlock koristi. Molim Vas da se odjavite od nekih listi filtera!" }, - "lang_czech":{ - "description":"language", - "message":"Češki" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Plati koliko želiš!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Vaša email adresa?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Želite li vidjeti kako radi AdBlock?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Nepravilna lista URL. Bit će obrisana." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Sakriti dio stranice" }, - "typesub_frame":{ - "description":"A resource type", - "message":"okvir" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Općenito" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ili AdBlock za Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video i Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Odlično! Pronađimo sada koje proširenje je uzrok. Prođite kroz listu i omogućite svako proširenje posebno. Proširenje koje donosi oglase nazad je ono koje bi trebali maknuti da se riješite reklama." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Promjeni" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ili Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Imate pitanje ili novu ideju?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~site1.com|~site2.com|~vijesti.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Zaboravili ste prikvačiti snimak zaslona! Ne možemo Vam pomoći ako ne vidimo o kakvom se oglasu radi." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Plati koliko želiš!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ILI, samo kliknite ovaj gumb kako bi uradili sve ovo iznad: Onemogući sva druga proširenja" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Ovo je problem sa listom filtera. Prijavi ga ovdje: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Naučite više o zloćudnom softveru" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Napomena: Vaše izvješće može biti javno dostupno. Imajte to na umu prije nego ćete staviti nešto privatno." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Ponovno pokreni stranicu sa reklamom." + "filteritalian":{ + "description":"language", + "message":"Talijanski" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Instalirajte Firefox $chrome$ ako ga nemate.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock ažuriranja" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Da li se reklama još pojavljuje?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"AdBlock lista uklanjanja upozorenja (uklanja upozorenja o korištenju blokera oglasa)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Provjerite je li koristite ispravni filter za jezik:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Ostale liste filtera" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Provjerite stanje ažuriranja vaših filter lista:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francuski" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Nešto je pošlo po zlu kod provjere ažuriranja." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokirani element:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Kliknite Safari menu → Postavke → Proširenja." }, - "typeobject":{ - "description":"A resource type", - "message":"interakivni objekt" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Pošalji" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"upravo ažurirano" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"ažurirano prije $days$ dana", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Odjavljeno." + }, + "typemedia":{ "description":"A resource type", - "message":"okvir" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (zaštita privatnosti)" + "message":"Latvijski" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Prijavi reklamu na ovoj stranici" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokiraj reklamu na ovoj stranici" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Očisti ovu listu" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Zaustavi blokiranje reklama:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Njemački" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Greška pri spremanju poslane datoteke." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Oprez: Ovaj filter blokira sve $elementtype$ elemente na stranici!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Ovo odgovara $matchcount$ stavki na ovoj stranici.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"ovdje" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Na kojem je jeziku stranica napisana?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Neuspjelo dobavljanje ovog filtera!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Jeste li sigurni da želite maknuti $count$ blokiranja koje ste napravili na $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Možete pomaknuti klizač ispod kako biste promjenili točno gdje želite da se AdBlock ne pokreće." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"slika" + "message":"skrivanje" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"I ručno napravite prijavnicu, kopirajte i zalijepite informacije ispod u sekciju \"Fill in any details you think will help us understand your issue\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Da li se reklama pojvljuje u ili prije filma odnosno drugih dodataka kao Flash igre?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Sakrijte gumb tako da ga desnim klikom miša kliknete i odaberte Sakrij gumb. Možete gumb vratiti nazad u opcijama proširenja: chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ruski i ukrajinski" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Rumunjski" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Nešto je pošlo po zlu kod provjere ažuriranja." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Onemogućili smo sva proširenja. Sada ćemo ponovno pokrenuti stranicu sa oglasom. Jednu sekundu, molim." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Dopušteni resurs" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Španjolski" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Oprez: Ovaj filter blokira sve $elementtype$ elemente na stranici!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Češki i slovački" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Omogući način kompatibilnosti ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Vrsta okvira: " + "no":{ + "description":"A negative response to a question", + "message":"Ne" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Odaberite jezik --" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filter, može se promjeniti u Postavkama:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Instalirajte AdBlock Plus za Firefox $chrome$ ako ga nemate.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Sakrij dugme" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Blokirani resurs" + "other":{ + "description":"Multiple choice option", + "message":"Drugi" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"U redu, još možete blokirati ovu reklamu samo za sebe u Postavkama. Hvala!" + }, + "lang_russian":{ + "description":"language", + "message":"Ruski" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Da li se reklama pojvljuje u ili prije filma odnosno drugih dodataka kao Flash igre?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Zašto nam ne pošaljete izvještaj greške?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (zaštita privatnosti)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ će biti $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filter, može se promjeniti u Postavkama:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Ili unesite URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Slijedeći filter:
$filter$
ima grešku:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"POKRETANJE..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Zatvori" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Da li je naš tim zatražio informacije o grešci? Kliknite ovdje za to!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokiraj reklame samo na slijedećim stranicama:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Prešli ste preko omogućene memorije koje AdBlock koristi. Molim Vas da se odjavite od nekih listi filtera!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Broj pravila filter listi prešao je granicu od 50.000 i automatski je smanjen. Molimo odjavite se sa nekih listi ili onemogućite blokiranje sadržaja za Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Prijavi reklamu na ovoj stranici" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dopusti AdBlock-u anonimno prikupljanje podatka i korištenja liste filtara" + "message":"Prikaži izjave uklanjanja pogreške u zapisu konzole (usporava AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"U redu, još možete blokirati ovu reklamu samo za sebe u Postavkama. Hvala!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domena okvira: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Najpopularnije Chrome proširenje, sa preko 40 milijuna korisnika! Blokira reklame na cijelom internetu." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Pronašli ste grešku?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Pošalji" + "lang_czech":{ + "description":"language", + "message":"Češki" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"To nije slikovna datoteka. Molimo pošaljite .png, .gif, ili .jpg datoteku." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Prikaži linkove na liste filtera" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Dopusti neke nenametljive reklame" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Švedski" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Uklanjanje iz liste" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Odaberite jezik --" + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Finski" + "message":"Francuski" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Promjeni" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Ova datoteka je prevelika. Molimo provjerite veličinu, maksimalno je 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Podrška" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Slijedeće informacije biti će također uključene u prijavu oglasa." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokirati reklamu po njezinom URL-u" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Ovo je problem sa listom filtera. Prijavi ga ovdje: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Verzija $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Poništite 'Omogućeno' kvačicu pokraj svakog proširenja osim pokraj AdBlock-a. Ostavite AdBlock omogućen." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Svrha ovog pitanja je da se utvrdi tko bi trebao primiti vaš izvještaj. Ako odgovorite netočno, izvještaj će biti poslan krivim ljudima pa tako možda i zanemaren." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Prikaži linkove na liste filtera" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Prijavljivanje oglasa je dobrovoljno. Pomaže drugima da također ne vide reklame tako što održavatelji lista filtera blokiraju oglas za sve. Ako se ne osjećate altruistički, to je isto u redu. Zatvorite ovu stranicu i blokirajte oglas samo sebi." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Samo engleski" + "yes":{ + "description":"A positive response to a question", + "message":"Da" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Pomozite proširiti ideju!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Izvorni kod je slobodno dostupan!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Nizozemski" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Koristiti ćemo ovo samo ako budemo trebali još informacija." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Ovo odgovara 1 stavci na ovoj stranici." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"ažurirano prije $hours$ sati", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Nazad" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock je blokirao preuzimanje sa web stranice poznate po držanju zločudnih programa." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legenda: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Kliknite ovo: Onemogući Prihvatljive oglase" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Omogući način kompatibilnosti ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domena stranice na koju želite primijeniti" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Podrška" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock ažuriranja" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Molimo idite na našu stranicu za podršku." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Kako bi pauzirali AdBlock sa omogućenim blokiranjem sadržaja, molimo odaberite Safari (u traci izbornika) > Postavke > Proširenja > AdBlock i odbilježite 'Omogući AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Nešto je pošlo krivo. Resursi nisu poslani. Stranica će se sada zatvoriti. Pokušajte ponovno pokrenuti stranicu." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Naučite više o zloćudnom softveru" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Lokacija:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Prihvatljivi oglasi (preporučeno)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Izgleda u redu" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Kako bi pauzirali AdBlock sa omogućenim blokiranjem sadržaja, molimo odaberite Safari (u traci izbornika) > Postavke > Proširenja > AdBlock i odbilježite 'Omogući AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Otvori stranicu proširenja." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - kliknite za detalje" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Onemogućite sva proširenja osim AdBlock-a:" } } \ No newline at end of file diff --git a/_locales/hu/messages.json b/_locales/hu/messages.json index 786f4496..3b36a709 100644 --- a/_locales/hu/messages.json +++ b/_locales/hu/messages.json @@ -1,1342 +1,1382 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Egy hirdetés bejelentése" + "filterdanish":{ + "description":"language", + "message":"Dán" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Hirdetés blokkoló szűrőlisták" + "disableaa":{ + "description":"Section header on the ad report page", + "message":"Az Elfogadható hirdetések szűrőinek ellenőrzése:" }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Kattintson ide: Elfogadható hirdetések letiltása" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Segítsen terjeszteni az igét!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Webhely:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Kérdése vagy új ötlete van?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Adott YouTube csatornák fehér listára tételének engedélyezése" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Lekérés... kérem várjon." }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nem található ismert kártevő." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Általános" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Abban a böngészőben iratkozzon fel ugyanazon szűrőlistákra, amelyekre itt is fel van." + "filterannoyances":{ + "description":"A filter list", + "message":"Fiúrajongói zaklatások (eltávolítja a weben található zavaró tényezőket)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - kattintson a részletekért" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"Ezen az oldalon $count$", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Érvénytelen lista URL. Törlődni fog." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Töltse be az oldalt a hirdetéssel abban a böngészőben." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Lengyel" }, - "filterswedish":{ - "description":"A filter list", - "message":"Svéd" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Általános opciók" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Mi új van a legújabb kiadásban? Nézze meg a változásnaplót!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"További hirdetéseket blokkolni:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"Egyeztetendő CSS" }, - "lang_russian":{ - "description":"language", - "message":"Orosz" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Törölje a jelölést az összes bővítmény melletti \"Engedélyezve\" jelölőnégyzetből az AdBlock kivételével. Hagyja az AdBlock-ot engedélyezve." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Az előzetesen letiltott bővítmények újraengedélyezésre kerültek." + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Nem szeretném ellenőrizni" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Leiratkozva." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Hirdetések megjelenítése mindenhol, kivéve ezekben a tartományokban..." }, - "filtericelandic":{ - "description":"language", - "message":"Izlandi" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Legyen óvatos: ha itt hibát vét, sok más szűrő, beleértve a hivatalosakat is, szintén meghibásodhatnak!
Olvassa el a szűrő mondattan oktatóanyagot, hogy megtudja hogyan kell összetett fekete lista és fehér lista szűrőket hozzáadni." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Görög" + "message":"Szlovák" }, - "filterchinese":{ - "description":"language", - "message":"Kínai" + "yes":{ + "description":"A positive response to a question", + "message":"Igen" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spanyol" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Kártevő védelem" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Abban a böngészőben is megjelenik a hirdetés?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Ön szerint mi lesz igaz erre a reklámra mindig, amikor meglátogatja ezt az oldalt?" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Kizárás" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"AdBlock engedélyezése ezen az oldalon" + "savebutton":{ + "description":"Save button", + "message":"Mentés" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Vissza" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Román" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"A blokkolt hirdetések számának megjelenítése az AdBlock gombján" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"A gomb elrejtéséhez jobb klikkeljen rá, majd válassza a Gomb elrejtése menüpontot. Újból megjelenítheti a chrome://chrome/extensions alatt." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Utolsó lépés: Ez mitől hirdetés?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "filterisraeli":{ + "description":"language", + "message":"Héber" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Lett" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Ez az AdBlock szolgáltatás nem működik ezen az oldalon, mert elavult technológiát használ. Az opciók oldal 'Testreszabás' fülén manuálisan fekete- vagy fehér listára teheti az erőforrásokat." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"A szűrőlisták blokkolják a legtöbb reklámot a weben. Továbbá lehet még:" + "other":{ + "description":"Multiple choice option", + "message":"Egyéb" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"A forráskód szabadon elérhető!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Cseh és szlovák" }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Tudjon meg többet az Elfogadható hirdetések programról." + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Letiltottunk minden egyéb kiegészítőt. Most újratöltjük a hirdetést tartalmazó oldalt. Egy másodpercet kérünk." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Egyéb szűrőlisták" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opciók" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Lehet, hogy számítógépe kártevővel fertőzött. További információért kattintson ide." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"A frissítések automatikusan le lesznek töltve; vagy inkább frissítés most" + }, + "typeunknown":{ + "description":"A resource type", + "message":"ismeretlen" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Hirdetések megjelenítése egy weboldalon vagy tartományban" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Ez 1 elemmel egyezik az oldalon." + "filterturkish":{ + "description":"A filter list", + "message":"Török" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Weboldal egy részének elrejtése" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"A(z) $name$ csatorna fehér listára tétele", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Minél több szűrőlistát használ, annál lassabban fut az AdBlock. Túl sok lista használata akár a böngésző összeomlásához is vezethet egyes weboldalakon. Nyomja meg az OK gombot, ha mindenképp fel akar iratkozni a listára." + }, + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Telepítse az AdBlock-ot Firefox alá $chrome$, ha még nem lenne meg.", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Általános opciók" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Lehet, hogy számítógépe kártevővel fertőzött. További információért kattintson ide." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"Az AdBlock nem fut az alábbiakkal megegyező oldalakon:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Nincs alapértelmezett szűrőlistánk ahhoz a nyelvhez.
Kérem próbáljon találni egy megfelelő listát, amely támogatja ezt a nyelvet $link$, vagy blokkolja magának ezt a hirdetést az 'Testreszabás' oldalon.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Feliratkozás" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Haladó felhasználó vagyok, jelenjenek meg a haladó opciók" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Kattintson a hirdetésre, én pedig végigvezetem Önt a blokkolás menetén." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Egy hirdetés blokkolása annak URL-je alapján" + "typestylesheet":{ + "description":"A resource type", + "message":"stílusmeghatározás" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Gomb eljrejtése" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock frissítések" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"A frissítések automatikusan le lesznek töltve; vagy inkább frissítés most" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Tudjon meg többet az Elfogadható hirdetések programról." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Kattintson erre: Frissítse a szűrőimet!" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sajnáljuk, az AdBlock le van tiltva ezen az oldalon az egyik szűrőlista által." }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formátum: ~webhely1.hu|~webhely2.hu|~hírek.webhely3.org" + "updateddayago":{ + "description":"Label for subscription", + "message":"1 napja frissítve" }, - "filtereasylist_plus_estonian":{ + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + }, + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Nem lett szűrő megadva!" + }, + "filtereasylist_plus_german":{ "description":"language", - "message":"Észt" + "message":"Német" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Ez $matchcount$ elemmel egyezik az oldalon.", + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Görög" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"$seconds$ másodperce frissítve", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Van egy oldalunk, amely az AdBlock mögött álló embereket is segít kiismerni!" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Nem biztos benne? Csak nyomja meg lent a 'Blokkold!' gombot." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonéz" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"A nem lejátszódó Hulu.com videók megkerülése (a böngésző újraindítását igényli)" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Típus" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arab" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Van egy frissítés az AdBlock-hoz! Irány $here$ a frissítéshez.
Megjegyzés: Ha automatikusan szeretné kapni a frissítéseket, csak kattintson a Safari > Környezeti beállítások > Bővítmények > Frissítések menüpontra
és jelölje be a \"Frissítések automatikus telepítése\" opciót.", + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Lehetséges hirdetéseket beadó malware keresése:" + }, + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Hirdetések blokkolása csak ezeken az oldalakon:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Testreszabás" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Hirdetés bejelentéséhez kapcsolódnia kell az internethez." + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Kész is! Újratöltöttük a hirdetést tartalmazó oldalt. Kérjük ellenőrizze, hogy a hirdetés eltűnt-e. Utána jöjjön vissza erre az oldalra és válaszoljon az alábbi kérdésre." + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"A(z) $name$ csatorna fehér listára tétele", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "filterturkish":{ + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OKÉ, az Opciók oldalon még mindig blokkolhatja magának a hirdetést. Köszönjük!" + }, + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Weboldal egy részének elrejtése" + }, + "typesubdocument":{ + "description":"A resource type", + "message":"adatkeret" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"Török" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Mi ez?" + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Észt" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"A blokkolt hirdetések számának megjelenítése az AdBlock menüjében" + }, + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Egy hirdetés bejelentése" + }, + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bolgár" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Ne fusson ezen tartománynak az oldalain" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"Egyéni szűrőlisták" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Ne iratkozzon fel a szükségesnél többre -- mindegyik lelassítja egy aprócskát! A stáblista és még több lista itt találhatók." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"További hirdetéseket blokkolni:" }, - "typestylesheet":{ - "description":"A resource type", - "message":"stílusmeghatározás" + "lang_ukranian":{ + "description":"language", + "message":"Ukrán" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Eltávolítás a listáról" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Ezen kérdésnek célja, hogy meghatározza, ki kapja meg az Ön jelentését. Ha helytelenül válaszolja meg e kérdést, a jelentés rossz embereknek lesz elküldve, így lehet, hogy figyelembe se lesz véve." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"A tartomány vagy url, ahol az AdBlock ne blokkoljon semmit" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Lengyel" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Ne fusson az AdBlockot..." }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Elemek hozzáadása a jobb klikk menühöz" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Az ezt a szöveget tartalmazó URL-ek blokkolása" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videók és Flash" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Ha inkább nem szeretne ehhez hasonló hirdetéseket látni, érdemesebb az Elfogadható hirdetések szűrőlistát kikapcsolva hagyni." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokkolja ezt a hirdetést" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Bezárás" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"$hours$ órája frissítve", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Ellenőrzés a Firefox-ban $chrome$", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"$seconds$ másodperce frissítve", + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Utolsó lépés: Ez mitől hirdetés?" + }, + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Biztos benne, hogy szeretné törölni a(z) $count$ blokkolást, amelyet a(z) $host$ tartományhoz hozott létre?", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Csapatunk netán némi hibakeresési információt kérelmezett? Ehhez kattintson ide!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "typeobject":{ - "description":"A resource type", - "message":"interaktív objektum" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Ezen kérdésnek célja, hogy meghatározza, ki kapja meg az Ön jelentését. Ha helytelenül válaszolja meg e kérdést, a jelentés rossz embereknek lesz elküldve, így lehet, hogy figyelembe se lesz véve." }, - "filterhungarian":{ - "description":"language", - "message":"Magyar" - }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"A hirdetések jelentése önkéntes alapú. Úgy segít másoknak, hogy lehetővé teszi a szűrőlista karbantartóknak a hirdetés blokkolását mindekni rászáre. Ha épp nincs önzetlen hangulatban, semmi gond. Zárja be ezt az oldalt, és blokkolja a hirdetést csak magának." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Megjegyzés: bejelentése nyilvánosan elérhetővé válhat. Ezt tartsa szem előtt, mielőtt bármi bizalmasat foglalna bele." - }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Az oldal újratöltése." - }, - "typepage":{ - "description":"A resource type", - "message":"oldal" - }, - "filterdutch":{ - "description":"language", - "message":"Holland" - }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Ne felejtsen el menteni!" - }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"A(z) $attribute$ $value$ lesz", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } - }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Bezárás" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Jól fest" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokkolt elem:" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"A szűrő érvénytelen: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"AdBlock testreszabása" }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Figyelmeztetés: nem lett szűrő megadva!" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nem található ismert kártevő." }, "datacollectionoption":{ "description":"Checkbox on the 'General' tab of the Options page", "message":"Engedély megadása az AdBlock-nak, hogy névtelen szűrőlista használatot és adatokat gyűjtsön" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Értesítsen az AdBlock, ha kártevőt észlel?" - }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Ha hirdetést lát, ne hibajelentést tegyen, hanem hirdetés jelentést!" - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Hirdetések megjelenítése mindenhol, kivéve ezekben a tartományokban..." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Ne fusson ezen az oldalon" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Ez az AdBlock szolgáltatás nem működik ezen az oldalon, mert elavult technológiát használ. Az opciók oldal 'Testreszabás' fülén manuálisan fekete- vagy fehér listára teheti az erőforrásokat." + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finn" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"A blokkolt hirdetések számának megjelenítése az AdBlock menüjében" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Gomb eljrejtése" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opciók" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Hirdetés blokkoló szűrőlisták" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Ne fusson az AdBlockot..." + "updateddaysago":{ + "description":"Label for subscription", + "message":"$days$ napja frissítve", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "typeobject":{ + "description":"A resource type", + "message":"interaktív objektum" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Ön szerint mi lesz igaz erre a reklámra mindig, amikor meglátogatja ezt az oldalt?" }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"Blokkolt hirdetések:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock egyéni szűrők (ajánlott)" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Szűrők hozzáadása másik nyelvhez: " + "typemain_frame":{ + "description":"A resource type", + "message":"oldal" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fiúrajongói zaklatások (eltávolítja a weben található zavaró tényezőket)" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Koreai" }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Győződjön meg róla, hogy a megfelelő nyelvi szűrő(ke)t használja:" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Tudassa velünk ügyfélszolgálatunk oldalán!" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"Egyeztetendő CSS" + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Blokkolásaim visszavonása ebben a tartományban" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"A gomb elrejtéséhez menjen az opera://extensions oldalra, majd jelölje be az \"Elrejtés az eszköztárról\" opciót. Újból megjelenítheti az opció előtti jelölés törlésével." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Szűrők manuális szerkesztése:" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Linkek megjelenítése a szűrőlistáknak" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Kattintson a hirdetésre, én pedig végigvezetem Önt a blokkolás menetén." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (ajánlott)" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"1. lépés: Kitalálni mi legyen blokkolva" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Hirdetés bejelentése ezen az oldalon" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Van egy oldalunk, amely az AdBlock mögött álló embereket is segít kiismerni!" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Webhely:" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"ide" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Remek! Minden kész." + "typepopup":{ + "description":"A resource type", + "message":"előugró ablak" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"Az AdBlock naprakész!" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Orosz és ukrán" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Az oldal újratöltése." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Lekérés... kérem várjon." + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Csak angolul" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Legyen óvatos: ha itt hibát vét, sok más szűrő, beleértve a hivatalosakat is, szintén meghibásodhatnak!
Olvassa el a szűrő mondattan oktatóanyagot, hogy megtudja hogyan kell összetett fekete lista és fehér lista szűrőket hozzáadni." + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Az AdBlock egy régebbi verzióját használja. Kérem menjen a bővítmények oldalára, engedélyezze a \"Fejlesztői módot\", majd kattintson a \"Bővítmények frissítése most\" gombra" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock ügyfélszolgálat" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"Az AdBlock fel van föggesztve." }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"AdBlock testreszabása" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"VAGY, csak kattintson erre a gombra, hogy a fent említetteket mi végezzük el: Minden egyéb bővítmény letiltása" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"Az AdBlock naprakész!" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Tudjon meg többet a kártevőkröl" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "filterisraeli":{ - "description":"language", - "message":"Héber" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Mi új van a legújabb kiadásban? Nézze meg a változásnaplót!" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sajnáljuk, az AdBlock le van tiltva ezen az oldalon az egyik szűrőlista által." + "filterantisocial":{ + "description":"A filter list", + "message":"Antiszociális szűrőlista (eltávolítja a közösségi média gombokat)" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Az ezt a szöveget tartalmazó URL-ek blokkolása" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Hirdetések keresése...

Csak egy pillanat az egész." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"Az AdBlock nem fut az alábbiakkal megegyező oldalakon:" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Blokkolásaim visszavonása ebben a tartományban" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Abban a böngészőben iratkozzon fel ugyanazon szűrőlistákra, amelyekre itt is fel van." }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Kérem gépelje be lent a helyes szűrőt, majd nyomja meg az OK gombot" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Egy hirdetés blokkolása" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"1 napja frissítve" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Túllépte a Dropbox méretkorlátot. Kérjük töröljön néhány bejegyzést egyéni vagy letiltott szűrő közül, majd próbálja újra." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Béta" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Vagy írjon be egy URL-t:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"Ezen az oldalon $count$", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Figyelmeztetés: Az összes többi oldalon reklámokat fog látni!
Ez felülbírálja azokhoz az oldalakhoz a többi szűrőt." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Van egy frissítés az AdBlock-hoz! Irány $here$ a frissítéshez.
Megjegyzés: Ha automatikusan szeretné kapni a frissítéseket, csak kattintson a Safari > Környezeti beállítások > Bővítmények > Frissítések menüpontra
és jelölje be a \"Frissítések automatikus telepítése\" opciót.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "here":{ + "content":"", + "example":"here" } } }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Nem biztos benne? Csak nyomja meg lent a 'Blokkold!' gombot." - }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1 órája frissítve" - }, - "optionsversion":{ - "description":"Version number", - "message":"Verzió: $version$", + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"A következő szűrő:
$filter$
hibát jelez:
$message$", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "filteritalian":{ + "description":"language", + "message":"Olasz" + }, + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Szeretné látni mitől ketyeg az AdBlock?" + }, + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock egyéni szűrők (ajánlott)" + }, + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Típus" + }, + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Mi ez?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"vagy az AdBlock-ot Chrome-ra" }, "filterstabtitle":{ "description":"Title of the filter list tab", "message":"Feliratkozás szűrőlistákra" }, - "other":{ - "description":"Multiple choice option", - "message":"Egyéb" - }, - "typehiding":{ - "description":"A resource type", - "message":"elrejtés" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Szűrőlisták" - }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"A fordításért járó elismerést illeti:" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"A hirdetés egy filmben vagy az előtt jelenik meg, vagy más beépülő modulban, mint egy Flash játékban?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formátum: ~webhely1.hu|~webhely2.hu|~hírek.webhely3.org" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Egyéb szűrőlisták" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Törölje a jelölést az összes bővítmény melletti \"Engedélyezve\" jelölőnégyzetből az AdBlock kivételével. Hagyja az AdBlock-ot engedélyezve." + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videók és Flash" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokkold!" + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Remek! Most pedig keresse meg melyik kiegészítő a kiváltója ennek. Menjen végig és engedélyezze a kiegészítőket egyesével. Az a kiegészítő, amelyik visszahozza a hirdetés(eke)t az, amelyiket el kell távolítani." }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Befejezve!" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"A szűrőlisták blokkolják a legtöbb reklámot a weben. Továbbá lehet még:" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Egy hirdetés blokkolása az oldalon" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"A gomb elrejtéséhez kattintson jobb gombbal a Safari eszköztárára, majd válassza az Eszköztár testreszabása menüpontot, aztán húzza le az AdBlock gombját az eszköztárról. Az eszköztárra való visszahúzásával újra megjelenítheti." }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Győződjön meg róla, hogy szűrőlistái naprakészek:" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Remek! Minden kész." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Nem szeretném ellenőrizni" + "filterhungarian":{ + "description":"language", + "message":"Magyar" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"vagy a Chrome-ot" }, - "lang_english":{ - "description":"language", - "message":"Angol" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Feliratkozás" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Testreszabás" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Fizess, amennyit akarsz!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Az AdBlock felfüggesztése" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Letiltott szűrők szerkesztése:" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Biztos abban, hogy fel akar iratkozni a(z) $title$ szűrőlistára?", + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Ez egy szűrőlista probléma. Jelentse itt: $link$", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Nyissa meg a bővítmények oldalt az előzetesen letiltott bővítmények engedélyezéséhez." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokkolt elem:" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Oldal tartománya, amelyre alkalmazandó" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Megjegyzés: bejelentése nyilvánosan elérhetővé válhat. Ezt tartsa szem előtt, mielőtt bármi bizalmasat foglalna bele." }, - "filtereasylist_plun_korean":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Koreai" + "message":"Litván" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Oldal:" + "typepage":{ + "description":"A resource type", + "message":"oldal" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Programhibát talált?" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arab" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Továbbra is megjelenik a hirdetés?" }, - "lang_czech":{ - "description":"language", - "message":"Cseh" + "typeother":{ + "description":"A resource type", + "message":"egyéb" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Fizess, amennyit akarsz!" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Kattintson erre: Frissítse a szűrőimet!" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"vagy az AdBlock-ot Chrome-ra" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Győződjön meg róla, hogy a megfelelő nyelvi szűrő(ke)t használja:" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Egy hirdetés blokkolása" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Győződjön meg róla, hogy szűrőlistái naprakészek:" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"A gomb elrejtéséhez menjen az opera://extensions oldalra, majd jelölje be az \"Elrejtés az eszköztárról\" opciót. Újból megjelenítheti az opció előtti jelölés törlésével." }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Valami elromlott a frissítések keresése közben." }, - "filterdanish":{ - "description":"language", - "message":"Dán" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Kattintson a Safari menüben → a Környezeti beállítások → Bővítmények menüpontjára." }, - "typesub_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"adatkeret" - }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Szerkesztés" - }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Hirdetések keresése...

Csak egy pillanat az egész." - }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"A tartomány vagy url, ahol az AdBlock ne blokkoljon semmit" + "message":"object_subrequest" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Frissítések keresése (csak pár másodpercig tarthat)..." + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Beküldés" }, - "typescript":{ - "description":"A resource type", - "message":"parancsfájl" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Oldal:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"Összesen $count$", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"Töltse újra a hirdetést tartalmazó oldalt." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Telepítse a Firefox-ot $chrome$, ha még nincs meg.", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } - }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock frissítések" - }, - "no":{ - "description":"A negative response to a question", - "message":"Nem" - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Minél több szűrőlistát használ, annál lassabban fut az AdBlock. Túl sok lista használata akár a böngésző összeomlásához is vezethet egyes weboldalakon. Nyomja meg az OK gombot, ha mindenképp fel akar iratkozni a listára." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Leiratkozva." }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrán" + "typemedia":{ + "description":"A resource type", + "message":"hang/videó" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$ perce frissítve", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francia" - }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"VAGY, csak kattintson erre a gombra, hogy a fent említetteket mi végezzük el: Minden egyéb bővítmény letiltása" + "filterlatvian":{ + "description":"A filter list", + "message":"Lett" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Egy hirdetés blokkolása az oldalon" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"éppen most frissítve" + "buttonblockit":{ + "description":"Block button", + "message":"Blokkold!" }, - "savebutton":{ - "description":"Save button", - "message":"Mentés" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Abbahagyni a hirdetések blokkolását:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Figyelmeztetés: Az összes többi oldalon reklámokat fog látni!
Ez felülbírálja azokhoz az oldalakhoz a többi szűrőt." + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Kattintson ide: Elfogadható hirdetések letiltása" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Ezen értesítések letiltása" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Adott YouTube csatornák fehér listára tételének engedélyezése" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Feliratkozás szűrőlistára..." + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Milyen nyelven van írva az az oldal?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$ napja frissítve", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "typesubdocument":{ - "description":"A resource type", - "message":"adatkeret" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (személyes adatok védelme)" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Eltávolítás a listáról" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Cseh és szlovák" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Az AdBlock egy régebbi verzióját használja. Kérem menjen a bővítmények oldalára, engedélyezze a \"Fejlesztői módot\", majd kattintson a \"Bővítmények frissítése most\" gombra" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Még nem tudunk hirdetéseket blokkolni Flash-ben és más beépülőkben. Várjuk a támogatást a böngészőtől és a WebKit-től." }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock opciók" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Lehetséges hirdetéseket beadó malware keresése:" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Alul a csúsztatással módosíthatja, hogy pontosan mely oldalakon ne fusson az AdBlock." }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"A lista törlése" + "typehiding":{ + "description":"A resource type", + "message":"elrejtés" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antiszociális szűrőlista (eltávolítja a közösségi média gombokat)" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"Az AdBlock le van tiltva ezen az oldalon." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Hibakeresési kijelentések megjelenítése a Konzolnaplóban (ami lelassítja az AdBlock-ot)" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"A hirdetés egy filmben vagy az előtt jelenik meg, vagy más beépülő modulban, mint egy Flash játékban?" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Túllépte a Dropbox méretkorlátot. Kérjük töröljön néhány bejegyzést egyéni vagy letiltott szűrő közül, majd próbálja újra." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Orosz és ukrán" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Az AdBlock felfüggesztésének feloldása" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Spanyol" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Kész is! Újratöltöttük a hirdetést tartalmazó oldalt. Kérjük ellenőrizze, hogy a hirdetés eltűnt-e. Utána jöjjön vissza erre az oldalra és válaszoljon az alábbi kérdésre." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokkolja ezt a hirdetést" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Német" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Legyen óvatos: ez a szűrő minden $elementtype$ elemet blokkol az oldalon!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"ide" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"ClickToFlash kompatibilitási üzemmód engedélyezése" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"A nem lejátszódó Hulu.com videók megkerülése (a böngésző újraindítását igényli)" + "no":{ + "description":"A negative response to a question", + "message":"Nem" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Kizárás" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"AdBlock engedélyezése ezen az oldalon" }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Az AdBlock kivételével tiltson le minden kiegészítőt:" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"A szűrő, amely az Opciók oldalon módosítható:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Milyen nyelven van írva az az oldal?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"A blokkolt hirdetések számának megjelenítése az AdBlock gombján" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Sikertelen!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Biztos benne, hogy szeretné törölni a(z) $count$ blokkolást, amelyet a(z) $host$ tartományhoz hozott létre?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Az AdBlock felfüggesztése" + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Iratkozzon fel a következő szűrőlistára, majd próbálja újra: $list_title$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "typeimage":{ - "description":"A resource type", - "message":"kép" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"A fordításért járó elismerést illeti:" + "lang_english":{ + "description":"language", + "message":"Angol" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"BETÖLTÉS..." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Elemek hozzáadása a jobb klikk menühöz" }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Jobb klikkeljen egy reklámra egy oldalon annak blokkolásához -- vagy blokkolja itt manuálisan." + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Reklámot talált az egyik oldalon? Mi segítünk megtalálni a jelentéshez megfelő helyet!" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"A gomb elrejtéséhez jobb klikkeljen rá, majd válassza a Gomb elrejtése menüpontot. Újból megjelenítheti a chrome://chrome/extensions alatt." + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Az AdBlock kivételével tiltson le minden kiegészítőt:" }, - "filtereasylist_plus_romanian":{ + "lang_russian":{ "description":"language", - "message":"Román" + "message":"Orosz" }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Letiltott szűrők szerkesztése:" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Ha hirdetést lát, ne hibajelentést tegyen, hanem hirdetés jelentést!" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"A Safari egy régebbi verzióját használja. Szerezze be a legújabbat az AdBlock eszköztár gomb használata érdekében, az AdBlock, a fehér listás eboldalak és a hirdetés jelentések szüneteltetésére, Frissítsen most." }, - "filteracceptable_ads":{ + "filtereasyprivacy":{ "description":"A filter list", - "message":"Elfogadható hirdetések (ajánlott)" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Valami elromlott a frissítések keresése közben." - }, - "disableaa":{ - "description":"Section header on the ad report page", - "message":"Az Elfogadható hirdetések szűrőinek ellenőrzése:" - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"A gomb elrejtéséhez kattintson jobb gombbal a Safari eszköztárára, majd válassza az Eszköztár testreszabása menüpontot, aztán húzza le az AdBlock gombját az eszköztárról. Az eszköztárra való visszahúzásával újra megjelenítheti." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Letiltottunk minden egyéb kiegészítőt. Most újratöltjük a hirdetést tartalmazó oldalt. Egy másodpercet kérünk." - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1 perce frissítve" + "message":"EasyPrivacy (személyes adatok védelme)" }, - "typemain_frame":{ - "description":"A resource type", - "message":"oldal" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"A(z) $attribute$ $value$ lesz", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Jobb klikkeljen egy reklámra egy oldalon annak blokkolásához -- vagy blokkolja itt manuálisan." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", - "placeholders":{ - "here":{ - "content":"", - "example":"here" - } - } + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Befejezve!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Vagy írjon be egy URL-t:" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Az AdBlock felfüggesztésének feloldása" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"A Safari egy régebbi verzióját használja. Szerezze be a legújabbat az AdBlock eszköztár gomb használata érdekében, az AdBlock, a fehér listás eboldalak és a hirdetés jelentések szüneteltetésére, Frissítsen most." + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Szűrők hozzáadása másik nyelvhez: " }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Nyelv kiválasztása -- " + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"BETÖLTÉS..." }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Kattintson a Safari menüben → a Környezeti beállítások → Bővítmények menüpontjára." + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Csapatunk netán némi hibakeresési információt kérelmezett? Ehhez kattintson ide!" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Telepítse az AdBlock-ot Firefox alá $chrome$, ha még nem lenne meg.", + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Kártevő védelem" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Hirdetés bejelentése ezen az oldalon" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Hibakeresési kijelentések megjelenítése a Konzolnaplóban (ami lelassítja az AdBlock-ot)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Telepítse a Firefox-ot $chrome$, ha még nincs meg.", "placeholders":{ "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Abbahagyni a hirdetések blokkolását:" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Csúsztassa addig a csúszkát, amíg a reklám megfelelően nincs blokkolva az oldalon, és a blokkolt elem hasznosan néz ki." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Túllépte az AdBlock által használható tárterületet. Kérem iratkozzon le néhány szűrőlistáról!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"A legnépszerűbb Chrome kiegészítő, több mint 40 millió felhasználóval! Reklámokat blokkol szerte a weben." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Továbbra is megjelenik a hirdetés?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Programhibát talált?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Támogatás" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Tudjon meg többet a kártevőkröl" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bolgár" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Szeretné látni mitől ketyeg az AdBlock?" + "typescript":{ + "description":"A resource type", + "message":"parancsfájl" }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Remek! Most pedig keresse meg melyik kiegészítő a kiváltója ennek. Menjen végig és engedélyezze a kiegészítőket egyesével. Az a kiegészítő, amelyik visszahozza a hirdetés(eke)t az, amelyiket el kell távolítani." + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Sikertelen!" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Szűrőlisták" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"A szűrő, amely az Opciók oldalon módosítható:" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Haladó felhasználó vagyok, jelenjenek meg a haladó opciók" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Szűrők manuális szerkesztése:" + "filterchinese":{ + "description":"language", + "message":"Kínai" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"A következő szűrő:
$filter$
hibát jelez:
$message$", + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"A szűrő érvénytelen: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"előugró ablak" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Feliratkozás szűrőlistára..." }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Csúsztassa addig a csúszkát, amíg a reklám megfelelően nincs blokkolva az oldalon, és a blokkolt elem hasznosan néz ki." + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Nyissa meg a bővítmények oldalt az előzetesen letiltott bővítmények engedélyezéséhez." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Típus" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Ezen értesítések letiltása" }, - "lang_slovak":{ - "description":"language", - "message":"Szlovák" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Ez $matchcount$ elemmel egyezik az oldalon.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"vagy a Chrome-ot" + "updatedhourago":{ + "description":"Label for subscription", + "message":"1 órája frissítve" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Abban a böngészőben is megjelenik a hirdetés?" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Ne fusson ezen az oldalon" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Nyelv kiválasztása -- " }, - "filtereasylist_plus_lithuania":{ - "description":"language", - "message":"Litván" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Értesítsen az AdBlock, ha kártevőt észlel?" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Hirdetések blokkolása csak ezeken az oldalakon:" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonéz" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Tudassa velünk ügyfélszolgálatunk oldalán!" + "typeimage":{ + "description":"A resource type", + "message":"kép" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"Az AdBlock fel van föggesztve." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Szerkesztés" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Túllépte az AdBlock által használható tárterületet. Kérem iratkozzon le néhány szűrőlistáról!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Nem sikerült lekérni ezt a szűrőt!" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Még nem tudunk hirdetéseket blokkolni Flash-ben és más beépülőkben. Várjuk a támogatást a böngészőtől és a WebKit-től." + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"Összesen $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Támogatás" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Reklámot talált az egyik oldalon? Mi segítünk megtalálni a jelentéshez megfelő helyet!" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Egy hirdetés blokkolása annak URL-je alapján" + }, + "buttoncancel":{ + "description":"Cancel button", + "message":"Mégse" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OKÉ, az Opciók oldalon még mindig blokkolhatja magának a hirdetést. Köszönjük!" + "savereminder":{ + "description":"Reminder to press save", + "message":"Ne felejtsen el menteni!" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Általános" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Ha inkább nem szeretne ehhez hasonló hirdetéseket látni, érdemesebb az Elfogadható hirdetések szűrőlistát kikapcsolva hagyni." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Töltse be az oldalt a hirdetéssel abban a böngészőben." }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Elfogadható hirdetések (ajánlott)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "optionsversion":{ + "description":"Version number", + "message":"Verzió: $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeother":{ - "description":"A resource type", - "message":"egyéb" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Beküldés" + "filtericelandic":{ + "description":"language", + "message":"Izlandi" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Nem lett szűrő megadva!" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"A hirdetések jelentése önkéntes alapú. Úgy segít másoknak, hogy lehetővé teszi a szűrőlista karbantartóknak a hirdetés blokkolását mindekni rászáre. Ha épp nincs önzetlen hangulatban, semmi gond. Zárja be ezt az oldalt, és blokkolja a hirdetést csak magának." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Biztos abban, hogy fel akar iratkozni a(z) $title$ szűrőlistára?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"ismeretlen" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"A forráskód szabadon elérhető!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Finn" + "message":"Holland" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Kérem gépelje be lent a helyes szűrőt, majd nyomja meg az OK gombot" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"Az AdBlock le van tiltva ezen az oldalon." + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Az előzetesen letiltott bővítmények újraengedélyezésre kerültek." }, - "typemedia":{ - "description":"A resource type", - "message":"hang/videó" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Ez 1 elemmel egyezik az oldalon." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japán" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Néhány nem tolakodó hirdetés engedélyezése" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"A lista törlése" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Ez egy szűrőlista probléma. Jelentse itt: $link$", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$ órája frissítve", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Ne fusson ezen tartománynak az oldalain" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Nem sikerült lekérni ezt a szűrőt!" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Vissza" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Linkek megjelenítése a szűrőlistáknak" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Csak angolul" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Mégse" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock opciók" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Segítsen terjeszteni az igét!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Béta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Alul a csúsztatással módosíthatja, hogy pontosan mely oldalakon ne fusson az AdBlock." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"Az AdBlock egy olyan oldalról származó letöltést blokkolt, amely közismerten malware-t tartalmaz." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Ellenőrzés a Firefox-ban $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Ne iratkozzon fel a szükségesnél többre -- mindegyik lelassítja egy aprócskát! A stáblista és még több lista itt találhatók." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"ClickToFlash kompatibilitási üzemmód engedélyezése" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Frissítések keresése (csak pár másodpercig tarthat)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Iratkozzon fel a következő szűrőlistára, majd próbálja újra: $list_title$", + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Oldal tartománya, amelyre alkalmazandó" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"éppen most frissítve" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$ perce frissítve", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Hirdetés bejelentéséhez kapcsolódnia kell az internethez." + "lang_czech":{ + "description":"language", + "message":"Cseh" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Kérdése vagy új ötlete van?" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Néhány nem tolakodó hirdetés engedélyezése" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Érvénytelen lista URL. Törlődni fog." + "filterswedish":{ + "description":"A filter list", + "message":"Svéd" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"1. lépés: Kitalálni mi legyen blokkolva" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock ügyfélszolgálat" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Típus" }, - "yes":{ - "description":"A positive response to a question", - "message":"Igen" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filteritalian":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"Olasz" + "message":"Francia" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1 perce frissítve" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Jól fest" + "typesub_frame":{ + "description":"A resource type", + "message":"adatkeret" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (ajánlott)" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - kattintson a részletekért" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Figyelmeztetés: nem lett szűrő megadva!" } } \ No newline at end of file diff --git a/_locales/id/messages.json b/_locales/id/messages.json index 0c5f0a9f..1ca4cd57 100644 --- a/_locales/id/messages.json +++ b/_locales/id/messages.json @@ -1,1342 +1,1382 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Laporkan sebuah iklan" + "filterdanish":{ + "description":"language", + "message":"Denmark" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Daftar filter pemblokiran iklan" + "disableaa":{ + "description":"Section header on the ad report page", + "message":"Cek filter iklan yang dapat diterima:" }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Klik ini: Nonaktifkan Iklan Yang Dapat Diterima" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Bantu Sebarkan!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Situs:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Punya pertanyaan atau ide baru?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Izinkan daftar putih pada saluran Youtube tertentu" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Mengambil... Silahkan tunggu." }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Tidak ada malware yang diketahui ditemukan." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Umum" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Di peramban itu, berlangganan ke daftar filter yang sama seperti yang Anda miliki di sini." + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (hapus gangguan di web)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - Klik untuk melihat detilnya" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ di halaman ini", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Daftar URL yang tidak sah. Daftar ini akan dihapus." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Pada browser tersebut, muatlah halaman yang ada iklannya." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polandia" }, - "filterswedish":{ - "description":"A filter list", - "message":"Swedia" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Pengaturan Umum" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Apa baru dalam rilis terbaru? Lihat changelog!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokir lebih banyak iklan:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS untuk dicari" }, - "lang_russian":{ - "description":"language", - "message":"Rusia" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Hilangkan centang 'Enabled' dipinggir setiap ekstensi kecuali untuk AdBlock. Biarkan AdBlock berjalan." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Ekstensi yang telah dinonaktifkan sebelumnya telah diaktifkan kembali." + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Saya tidak ingin memeriksa hal ini" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Tidak berlangganan." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Perlihatkan iklan dimanapun kecuali pada domain-domain ini..." }, - "filtericelandic":{ - "description":"language", - "message":"Bahasa Islandia" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Hati hati: jika anda membuat kesalahan disini banyak filter, termasuk filter resmi juga akan rusak!
Baca Panduan filter syntax untuk belajar bagaimana menambah filter daftar hitam dan daftar putih yang lebih maju." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Bahasa Yunani" + "message":"Bahasa Slowakia" }, - "filterchinese":{ - "description":"language", - "message":"China" + "yes":{ + "description":"A positive response to a question", + "message":"Ya" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spanyol" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Perlindungan Malware" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Apakah iklannya muncul juga pada browser itu?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Apa yang anda pikir benar tentang iklan ini setiap anda mengunjungi halaman ini?" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Jangan sertakan" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Mengaktifkan AdBlock pada Halaman ini" + "savebutton":{ + "description":"Save button", + "message":"Simpan" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Kembali" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Romania" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Tampilkan jumlah iklan yang diblokir di tombol AdBlock" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Untuk menyembunyikan tombolnya, klik kanan dan pilih Sembunyikan tombol. Anda dapat memunculkannya lagi di chrome://chrome/extensions." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Langkah terakhir: Apa yang membuat hal ini sebagai iklan?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "filterisraeli":{ + "description":"language", + "message":"Ibrani" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Latvia" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Fitur AdBlock ini tidak bekerja di situs ini karena menggunakan teknologi usang. Anda bisa memasukkannya ke sumber blacklist atau whitelist secara manual di tab 'Customize' halaman pengaturan." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Daftar filter memblokir banyak iklan di web. Anda juga bisa:" + "other":{ + "description":"Multiple choice option", + "message":"Yang lain" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Kode sumber tersedia secara gratis!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Ceko dan Slowakia" }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Ketahui lebih lanjut mengenai program iklan yang dapat diterima." + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Kami telah dinonaktifkan semua ekstensi lainnya. Sekarang kita akan memuat ulang halaman dengan iklan. Harap tunggu sebentar." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Daftar filter lainnya" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Pilihan" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Komputer Anda mungkin terinfeksi oleh malware. Klik di sini untuk informasi lebih lanjut." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Saya akan mengambil pembaharuan secara otomatis; Anda juga dapat melakukan pembaharuan sekarang" + }, + "typeunknown":{ + "description":"A resource type", + "message":"tidak diketahui" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Perlihatkan iklan pada sebuah halama atau domain" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"1 item yang sama pada halaman ini." + "filterturkish":{ + "description":"A filter list", + "message":"Turki" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Sembunyikan sebagian dari halaman Web" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Daftar putih saluran $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Semakin banyak daftar filter yang anda gunakan, semakinlambat AdBlock bekerja. Menggunakan terlalu banyak daftar bahkan dapat membuat browser anda berhenti bekerja pada beberapa situs. Tekan OK untuk tetap berlangganan pada daftar ini." + }, + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Pasang AdBlock Plus untuk Firefox $chrome$ jika Anda tidak memilikinya.", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Pengaturan Umum" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Komputer Anda mungkin terinfeksi oleh malware. Klik di sini untuk informasi lebih lanjut." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock tidak akan berjalan pada halaman yang sama dengan:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Kami tidak memiliki filter baku untuk bahasa tersebut.
Silahkan mencari daftar yang cocok yang mendukung bahasa ini $link$ atau or blokir iklan ini untuk anda sendiri pada tab 'Penyesuaian'.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Berlangganan" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Saya pengguna tingkat lanjut, perlihatkan pilihan tingkat lanjut" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klik iklannya, dan saya akan menuntun anda memblokirnya." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blok sebuah iklan oleh URLnya" + "typestylesheet":{ + "description":"A resource type", + "message":"definisi style" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Sembunyikan tombol ini" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Perbarui AdBlock" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Saya akan mengambil pembaharuan secara otomatis; Anda juga dapat melakukan pembaharuan sekarang" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Ketahui lebih lanjut mengenai program iklan yang dapat diterima." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Klik ini: Perbaharui filter saya!" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Maaf, AdBlock dimatikan pada halaman ini oleh salah satu daftar filter anda." }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~site1.com|~site2.com|~news.site3.org" + "updateddayago":{ + "description":"Label for subscription", + "message":"diperbaharui 1 hari lalu" }, - "filtereasylist_plus_estonian":{ + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + }, + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Tidak ada filter yang ditentukan!" + }, + "filtereasylist_plus_german":{ "description":"language", - "message":"Bahasa Estonia" + "message":"Jerman" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"$matchcount$ item yang sama pada halaman ini.", + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Bahasa Yunani" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"diperbaharui $seconds$ detik yang lalu", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Kami mempunyai sebuah laman untuk membantu Anda menemukan orang-orang di belakang AdBlock juga!" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Tidak yakin? tekan saja 'Tutup!' dibawah." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesia" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Membetulkan video Hulu.com yang tidak bisa dimainkan (harus muat ulang browser anda)" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tipe" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Bahasa Arab" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Ada pembaruan untuk AdBlock! Pergi $here$ untuk update.
Catatan: jika Anda ingin menerima update secara otomatis, klik pada Safari > preferensi > ekstensi > update
dan centang pilihan 'Memasang pembaruan secara otomatis'.", + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Cek perangkat lunak jahat yang dapat menyuntikkan iklan:" + }, + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Hanya blokir iklan di situs-situs ini:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Penyesuaian" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Untuk melaporkan iklan, Anda harus terhubung ke internet." + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Selesai! Kami memuat ulang halaman dengan iklan. Silakan periksa halaman tersebut untuk melihat apakah iklan hilang. Kemudian kembali ke halaman ini dan menjawab pertanyaan di bawah ini." + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Daftar putih saluran $name$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "filterturkish":{ + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, anda tetap bisa memblokir iklan ini untuk anda sendiri pada halaman pengaturan, Terima kasih!" + }, + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Sembunyikan sebagian dari halaman Web" + }, + "typesubdocument":{ + "description":"A resource type", + "message":"frame" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"Turki" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Apa ini?" + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Bahasa Estonia" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Tampilkan jumlah iklan yang diblokir di menu AdBlock" + }, + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Laporkan sebuah iklan" + }, + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgaria" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Jangan jalankan pada halaman-halaman di domain ini" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"Daftar Filter sendiri" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Jangan berangganan lebih dari yang anda butuhkan -- setiap satunya akan sedikit memperlambat anda! Kredit dan lebih banyak daftar dapat ditemukan Disini." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokir lebih banyak iklan:" }, - "typestylesheet":{ - "description":"A resource type", - "message":"definisi style" + "lang_ukranian":{ + "description":"language", + "message":"Ukrania" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Dihapus dari daftar" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Tujuan dari pertanyaan ini adalah untuk menentukan siapa yang harus menerima laporan anda. Jika anda menjawab pertanyaan dengan salah, laporannya akan terkirim kepada orang yang salah, jadi mungkin laporan anda akan diabaikan." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domain atau URL dimana AdBlock tidak boleh memblokir apapun" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polandia" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Jangan jalankan AdBlock pada..." }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Tambahkan barang ke menu klik kanan" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blok URL yang mengandung teks ini" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video dan Flash" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Jika Anda lebih tidak suka melihat iklan seperti ini, Anda dapat mematikan daftar filter iklan yang dapat diterima." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokir iklan ini" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Tutup" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"diperbaharui $hours$ jam lalu", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Periksa di Firefox $chrome$", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"diperbaharui $seconds$ detik yang lalu", + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Langkah terakhir: Apa yang membuat hal ini sebagai iklan?" + }, + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Apakah Anda yakin ingin menghapus blok $count$ yang telah Anda buat pada $host$?", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Tim kami meminta beberapa informasi debug? Klik di sini untuk itu!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "typeobject":{ - "description":"A resource type", - "message":"objek interaktif" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Tujuan dari pertanyaan ini adalah untuk menentukan siapa yang harus menerima laporan anda. Jika anda menjawab pertanyaan dengan salah, laporannya akan terkirim kepada orang yang salah, jadi mungkin laporan anda akan diabaikan." }, - "filterhungarian":{ - "description":"language", - "message":"Hungaria" - }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Melaporkan iklan bersifat sukarela. Hal ini membantu orang lain dengan mengaktifkan pengelola daftar filter untuk memblokir iklan untuk semua orang. Jika Anda tidak merasa altruistik sekarang ini, tidak apa-apa. Tutup halaman ini dan blok iklan hanya untuk diri sendiri." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Catatan: laporan anda mungkin akan tersedia untuk umum. Ingatlah itu sebelum anda menyertakan apapun yang bersifat pribadi." - }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Muat ulang laman." - }, - "typepage":{ - "description":"A resource type", - "message":"halaman" - }, - "filterdutch":{ - "description":"language", - "message":"Belanda" - }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Jangan lupa untuk menyimpan!" - }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ adalah $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } - }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Tutup" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Terlihat bagus" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Elemen terblokir:" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filter ini tidak sah: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Sesuaikan AdBlock" }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Perhatian: tidak ada filter yang ditentukan!" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Tidak ada malware yang diketahui ditemukan." }, "datacollectionoption":{ "description":"Checkbox on the 'General' tab of the Options page", "message":"Ijinkan AdBlock untuk mengumpulkan data dan penggunaan daftar filter secara anonim" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Haruskah AdBlock memberitahu Anda ketika mendeteksi malware?" - }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Jika Anda melihat iklan, jangan membuat laporan bug, melainkan buatlah laporan iklan!" - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Perlihatkan iklan dimanapun kecuali pada domain-domain ini..." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Jangan jalankan pada halama ini" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Fitur AdBlock ini tidak bekerja di situs ini karena menggunakan teknologi usang. Anda bisa memasukkannya ke sumber blacklist atau whitelist secara manual di tab 'Customize' halaman pengaturan." + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandia" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Tampilkan jumlah iklan yang diblokir di menu AdBlock" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Sembunyikan tombol ini" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Pilihan" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Daftar filter pemblokiran iklan" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Jangan jalankan AdBlock pada..." + "updateddaysago":{ + "description":"Label for subscription", + "message":"diperbaharui $days$ hari lalu", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "typeobject":{ + "description":"A resource type", + "message":"objek interaktif" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Apa yang anda pikir benar tentang iklan ini setiap anda mengunjungi halaman ini?" }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"Iklan yang terblokir:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"filter AdBlock yang diinginkan (dianjurkan)" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Tambahkan filter untuk bahasa lain: " + "typemain_frame":{ + "description":"A resource type", + "message":"halaman" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (hapus gangguan di web)" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Korea" }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Pastikan Anda menggunakan filter bahasa yang tepat:" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Beritahukan kami di situs dukungan ini!" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS untuk dicari" + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Batalkan blok saya pada domain ini" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Untuk menyembunyikan tombol, pergi ke opera://extensions dan centang opsi 'Hide from toolbar'. Anda dapat menampilkannya lagi dengan tidak mencentang opsi tersebut." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Edit secara Manual filter anda:" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Tunjukkan alamat ke daftar filter" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klik iklannya, dan saya akan menuntun anda memblokirnya." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (dianjurkan)" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Langkah 1: Tentukan apa yang akan diblokir" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Laporkan sebuah iklan pada halaman ini" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Kami mempunyai sebuah laman untuk membantu Anda menemukan orang-orang di belakang AdBlock juga!" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Situs:" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"disini" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Hebat! Anda sudah siap." + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock sudah veri tebaru!" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Rusia dan Ukraina" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Muat ulang laman." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Mengambil... Silahkan tunggu." + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Hanya Inggris" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Hati hati: jika anda membuat kesalahan disini banyak filter, termasuk filter resmi juga akan rusak!
Baca Panduan filter syntax untuk belajar bagaimana menambah filter daftar hitam dan daftar putih yang lebih maju." + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Anda menggunakan AdBlock versi lama. Silahkan kunjungi halaman ekstensi, nyalakan 'Mode pengembang' dan klik 'Perbaharui ektensi sekarang'" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Dukungan AdBlock" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock sedang dibekukan." }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Sesuaikan AdBlock" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ATAU, cukup klik tombol ini untuk kita untuk melakukan semua hal di atas: Nonaktifkan semua ekstensi lainnya" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock sudah veri tebaru!" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Pelajari lebih lanjut tentang malware" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "filterisraeli":{ - "description":"language", - "message":"Ibrani" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Apa baru dalam rilis terbaru? Lihat changelog!" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Maaf, AdBlock dimatikan pada halaman ini oleh salah satu daftar filter anda." + "filterantisocial":{ + "description":"A filter list", + "message":"Daftar Antisocial filter (hapus tombol social media)" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blok URL yang mengandung teks ini" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Mencari iklan...

hanya sebentar saja." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock tidak akan berjalan pada halaman yang sama dengan:" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Batalkan blok saya pada domain ini" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Di peramban itu, berlangganan ke daftar filter yang sama seperti yang Anda miliki di sini." }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Silahkan ketik filter yang benar di bawah ini dan tekan OK" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokir sebuah iklan" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"diperbaharui 1 hari lalu" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Anda telah melebihi batas ukuran Dropbox. Harap menghapus beberapa entri dari filter buatan Anda atau yang nonaktif, dan coba lagi." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Atau masukan sebuah URL:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ di halaman ini", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Peringatan: pada semua situs lain anda akan melihat iklan!
Hal ini mengesampingkan semua filter lain untuk situs-situs tersebut." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Ada pembaruan untuk AdBlock! Pergi $here$ untuk update.
Catatan: jika Anda ingin menerima update secara otomatis, klik pada Safari > preferensi > ekstensi > update
dan centang pilihan 'Memasang pembaruan secara otomatis'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "here":{ + "content":"", + "example":"here" } } }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Tidak yakin? tekan saja 'Tutup!' dibawah." - }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"diperbaharui 1 jam lalu" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versi $version$", + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Filter berikut:
$filter$
memiliki kesalahan:
$message$", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "filteritalian":{ + "description":"language", + "message":"Italia" + }, + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ingin melihat bagaimana AdBlock bekerja?" + }, + "filteradblock_custom":{ + "description":"A filter list", + "message":"filter AdBlock yang diinginkan (dianjurkan)" + }, + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tipe" + }, + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Apa ini?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"atau AdBlock untukChrome" }, "filterstabtitle":{ "description":"Title of the filter list tab", "message":"Berlangganan pada daftar filter" }, - "other":{ - "description":"Multiple choice option", - "message":"Yang lain" - }, - "typehiding":{ - "description":"A resource type", - "message":"sembunyikan" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Daftar Filter" - }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Diterjemahkan oleh:" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Apakah iklannya muncul didalam atau sebelum film atau plugin lainnya seperti game Flash?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~site1.com|~site2.com|~news.site3.org" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Daftar filter lainnya" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Hilangkan centang 'Enabled' dipinggir setiap ekstensi kecuali untuk AdBlock. Biarkan AdBlock berjalan." + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video dan Flash" }, - "buttonblockit":{ - "description":"Block button", - "message":"Tutup!" + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Hebat! Sekarang mari kita menemukan ekstensi yang adalah penyebab. Pergi dan aktifkan ekstensi setiap satu per satu. Ekstensi yang membawa kembali iklan adalah yang Anda butuhkan untuk dihapus untuk menyingkirkan iklan." }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Selesai!" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Daftar filter memblokir banyak iklan di web. Anda juga bisa:" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blok sebuah iklan pada halaman ini" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Untuk menyembunyikan tombol, klik kanan toolbar Safari dan pilih Customize Toolbar, kemudian tarik tombol AdBlock dari toolbar. Anda dapat menampilkannya lagi dengan menariknya kembali ke toolbar." }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Pastikan daftar filter Anda telah diperbaharui:" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Hebat! Anda sudah siap." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Saya tidak ingin memeriksa hal ini" + "filterhungarian":{ + "description":"language", + "message":"Hungaria" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"atau Chrome" }, - "lang_english":{ - "description":"language", - "message":"Inggris" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Berlangganan" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Penyesuaian" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Membayar apa yang Anda inginkan!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Bekukan AdBlock" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Edit filter nonaktif:" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Apakah Anda yakin bahwa Anda ingin berlangganan ke daftar filter $title$?", + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Ini adalah sebuah masalah daftar filter. Laporkan disini: $link$", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Buka laman ekstensi untuk mngaktifkan ekstensi yang telah dinonaktifkan sebelumnya." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Elemen terblokir:" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domain dari halaman untuk diterapkan" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Catatan: laporan anda mungkin akan tersedia untuk umum. Ingatlah itu sebelum anda menyertakan apapun yang bersifat pribadi." }, - "filtereasylist_plun_korean":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Korea" + "message":"Bahasa Lithuania" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Halaman:" + "typepage":{ + "description":"A resource type", + "message":"halaman" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Menemukan bug?" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Bahasa Arab" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Apa iklannya masih muncul?" }, - "lang_czech":{ - "description":"language", - "message":"Ceko" + "typeother":{ + "description":"A resource type", + "message":"lainnya" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Membayar apa yang Anda inginkan!" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Klik ini: Perbaharui filter saya!" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"atau AdBlock untukChrome" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Pastikan Anda menggunakan filter bahasa yang tepat:" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokir sebuah iklan" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Pastikan daftar filter Anda telah diperbaharui:" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Untuk menyembunyikan tombol, pergi ke opera://extensions dan centang opsi 'Hide from toolbar'. Anda dapat menampilkannya lagi dengan tidak mencentang opsi tersebut." }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Terjadi kesalahan saat memeriksa pembaruan." }, - "filterdanish":{ - "description":"language", - "message":"Denmark" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klik pada menu Safari → Preferences → Extension." }, - "typesub_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"frame" - }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Edit" - }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Mencari iklan...

hanya sebentar saja." - }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domain atau URL dimana AdBlock tidak boleh memblokir apapun" + "message":"object_subrequest" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Memeriksa pembaruan (hanya memerlukan beberapa detik)..." + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Masukkan" }, - "typescript":{ - "description":"A resource type", - "message":"skrip" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Halaman:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"Total $count$", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"Muat ulang halaman yang ada iklannya." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Pasang Firefox $chrome$ jika anda tidak memilikinya.", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } - }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Perbarui AdBlock" - }, - "no":{ - "description":"A negative response to a question", - "message":"Tidak" - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Semakin banyak daftar filter yang anda gunakan, semakinlambat AdBlock bekerja. Menggunakan terlalu banyak daftar bahkan dapat membuat browser anda berhenti bekerja pada beberapa situs. Tekan OK untuk tetap berlangganan pada daftar ini." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Tidak berlangganan." }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrania" + "typemedia":{ + "description":"A resource type", + "message":"audio/video" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"diperbaharui $minutes$ menit lalu", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Prancis" - }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ATAU, cukup klik tombol ini untuk kita untuk melakukan semua hal di atas: Nonaktifkan semua ekstensi lainnya" + "filterlatvian":{ + "description":"A filter list", + "message":"Latvia" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blok sebuah iklan pada halaman ini" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"diperbaharui sekarang" + "buttonblockit":{ + "description":"Block button", + "message":"Tutup!" }, - "savebutton":{ - "description":"Save button", - "message":"Simpan" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Berhenti memblokir iklan:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Peringatan: pada semua situs lain anda akan melihat iklan!
Hal ini mengesampingkan semua filter lain untuk situs-situs tersebut." + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Klik ini: Nonaktifkan Iklan Yang Dapat Diterima" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Nonaktifkan pemberitahuan ini" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Izinkan daftar putih pada saluran Youtube tertentu" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Berlangganan daftar filter..." + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Ditulis dalam bahasa apa halaman itu?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"diperbaharui $days$ hari lalu", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "typesubdocument":{ - "description":"A resource type", - "message":"frame" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (perlindungan privasi)" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Dihapus dari daftar" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Ceko dan Slowakia" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Anda menggunakan AdBlock versi lama. Silahkan kunjungi halaman ekstensi, nyalakan 'Mode pengembang' dan klik 'Perbaharui ektensi sekarang'" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Kami belum bisa memblokir iklan iklan didalam Flash dan plugin lainnya. Kami menunggu dukungan dari browser dan WebKit." }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Pengaturan AdBlock" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Cek perangkat lunak jahat yang dapat menyuntikkan iklan:" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Anda dapat menggeser yang dibawah ini untuk mengganti secara tepat pada halaman apa AdBlock tidak akan berjalan." }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Bersihkan daftar ini" + "typehiding":{ + "description":"A resource type", + "message":"sembunyikan" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Daftar Antisocial filter (hapus tombol social media)" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock dimatikan pada halaman ini." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Perlihatkan pernyataan debug pada Console Log (akan memperlambat AdBlock)" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Apakah iklannya muncul didalam atau sebelum film atau plugin lainnya seperti game Flash?" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Anda telah melebihi batas ukuran Dropbox. Harap menghapus beberapa entri dari filter buatan Anda atau yang nonaktif, dan coba lagi." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Rusia dan Ukraina" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Lanjutkan AdBlock" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Spanyol" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Selesai! Kami memuat ulang halaman dengan iklan. Silakan periksa halaman tersebut untuk melihat apakah iklan hilang. Kemudian kembali ke halaman ini dan menjawab pertanyaan di bawah ini." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokir iklan ini" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Jerman" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Hati hati: Filter ini memblokir semua $elementtype$ elemen yang ada di halaman!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"disini" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Aktifkan modus kompatibilitas ClickToFlash" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Membetulkan video Hulu.com yang tidak bisa dimainkan (harus muat ulang browser anda)" + "no":{ + "description":"A negative response to a question", + "message":"Tidak" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Jangan sertakan" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Mengaktifkan AdBlock pada Halaman ini" }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Nonaktifkan semua ekstensi kecuali AdBlock:" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filter, yang bisa diubah di halaman pengaturan:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Ditulis dalam bahasa apa halaman itu?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Tampilkan jumlah iklan yang diblokir di tombol AdBlock" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Gagal!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Apakah Anda yakin ingin menghapus blok $count$ yang telah Anda buat pada $host$?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Bekukan AdBlock" + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Berlangganan pada daftar filter ini, lalu coba lagi: $list_title$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "typeimage":{ - "description":"A resource type", - "message":"gambar" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Diterjemahkan oleh:" + "lang_english":{ + "description":"language", + "message":"Inggris" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"MEMUAT..." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Tambahkan barang ke menu klik kanan" }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Klik kanan sebuah iklan pada halaman untuk memblokirnya -- atau blokir secara manual disini." + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Menemukan sebuah iklan pada halaman web? Kami akan membantu Anda menemukan tempat yang tepat untuk melaporkannya!" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Untuk menyembunyikan tombolnya, klik kanan dan pilih Sembunyikan tombol. Anda dapat memunculkannya lagi di chrome://chrome/extensions." + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Nonaktifkan semua ekstensi kecuali AdBlock:" }, - "filtereasylist_plus_romanian":{ + "lang_russian":{ "description":"language", - "message":"Romania" + "message":"Rusia" }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Edit filter nonaktif:" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Jika Anda melihat iklan, jangan membuat laporan bug, melainkan buatlah laporan iklan!" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Anda menggunakan Safari versi lama. Ambillah versi terbaru untuk menggunakan tombol toolbar AdBlock untuk menjeda AdBlock, membebaskan situs web, dan melaporkan iklan. Perbaharui sekarang" }, - "filteracceptable_ads":{ + "filtereasyprivacy":{ "description":"A filter list", - "message":"Iklan yang dapat diterima (disarankan)" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Terjadi kesalahan saat memeriksa pembaruan." - }, - "disableaa":{ - "description":"Section header on the ad report page", - "message":"Cek filter iklan yang dapat diterima:" - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Untuk menyembunyikan tombol, klik kanan toolbar Safari dan pilih Customize Toolbar, kemudian tarik tombol AdBlock dari toolbar. Anda dapat menampilkannya lagi dengan menariknya kembali ke toolbar." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Kami telah dinonaktifkan semua ekstensi lainnya. Sekarang kita akan memuat ulang halaman dengan iklan. Harap tunggu sebentar." - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"diperbaharui 1 menit lalu" + "message":"EasyPrivacy (perlindungan privasi)" }, - "typemain_frame":{ - "description":"A resource type", - "message":"halaman" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ adalah $value$", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Klik kanan sebuah iklan pada halaman untuk memblokirnya -- atau blokir secara manual disini." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", - "placeholders":{ - "here":{ - "content":"", - "example":"here" - } - } + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Selesai!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Atau masukan sebuah URL:" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Lanjutkan AdBlock" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Anda menggunakan Safari versi lama. Ambillah versi terbaru untuk menggunakan tombol toolbar AdBlock untuk menjeda AdBlock, membebaskan situs web, dan melaporkan iklan. Perbaharui sekarang" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Tambahkan filter untuk bahasa lain: " }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" --Pilih bahasa-- " + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"MEMUAT..." }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klik pada menu Safari → Preferences → Extension." + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Tim kami meminta beberapa informasi debug? Klik di sini untuk itu!" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Pasang AdBlock Plus untuk Firefox $chrome$ jika Anda tidak memilikinya.", + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Perlindungan Malware" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Laporkan sebuah iklan pada halaman ini" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Perlihatkan pernyataan debug pada Console Log (akan memperlambat AdBlock)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Pasang Firefox $chrome$ jika anda tidak memilikinya.", "placeholders":{ "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Berhenti memblokir iklan:" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Geser pengatur hingga iklan terblokir dengan benar pada halaman, dan elemen yang terblokir tidak terlihat." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Anda melebihi jumlah penyimpanan yang bisa dipakai oleh AdBlock. Batalkanlah langganan anda dari beberapa daftar filter!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Ekstensi Chrome paling populer, dengan lebih dari 40 juta pengguna! Blokir iklan di seluruh web." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Apa iklannya masih muncul?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Menemukan bug?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Dukungan" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Pelajari lebih lanjut tentang malware" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgaria" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Ingin melihat bagaimana AdBlock bekerja?" + "typescript":{ + "description":"A resource type", + "message":"skrip" }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Hebat! Sekarang mari kita menemukan ekstensi yang adalah penyebab. Pergi dan aktifkan ekstensi setiap satu per satu. Ekstensi yang membawa kembali iklan adalah yang Anda butuhkan untuk dihapus untuk menyingkirkan iklan." + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Gagal!" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Daftar Filter" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filter, yang bisa diubah di halaman pengaturan:" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Saya pengguna tingkat lanjut, perlihatkan pilihan tingkat lanjut" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Edit secara Manual filter anda:" + "filterchinese":{ + "description":"language", + "message":"China" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Filter berikut:
$filter$
memiliki kesalahan:
$message$", + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filter ini tidak sah: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Berlangganan daftar filter..." }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Geser pengatur hingga iklan terblokir dengan benar pada halaman, dan elemen yang terblokir tidak terlihat." + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Buka laman ekstensi untuk mngaktifkan ekstensi yang telah dinonaktifkan sebelumnya." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tipe" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Nonaktifkan pemberitahuan ini" }, - "lang_slovak":{ - "description":"language", - "message":"Bahasa Slowakia" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"$matchcount$ item yang sama pada halaman ini.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"atau Chrome" + "updatedhourago":{ + "description":"Label for subscription", + "message":"diperbaharui 1 jam lalu" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Apakah iklannya muncul juga pada browser itu?" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Jangan jalankan pada halama ini" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" --Pilih bahasa-- " }, - "filtereasylist_plus_lithuania":{ - "description":"language", - "message":"Bahasa Lithuania" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Haruskah AdBlock memberitahu Anda ketika mendeteksi malware?" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Hanya blokir iklan di situs-situs ini:" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesia" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Beritahukan kami di situs dukungan ini!" + "typeimage":{ + "description":"A resource type", + "message":"gambar" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock sedang dibekukan." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Edit" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Anda melebihi jumlah penyimpanan yang bisa dipakai oleh AdBlock. Batalkanlah langganan anda dari beberapa daftar filter!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Gagal mengambil filter ini!" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Kami belum bisa memblokir iklan iklan didalam Flash dan plugin lainnya. Kami menunggu dukungan dari browser dan WebKit." + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"Total $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Dukungan" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Menemukan sebuah iklan pada halaman web? Kami akan membantu Anda menemukan tempat yang tepat untuk melaporkannya!" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blok sebuah iklan oleh URLnya" + }, + "buttoncancel":{ + "description":"Cancel button", + "message":"Batal" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, anda tetap bisa memblokir iklan ini untuk anda sendiri pada halaman pengaturan, Terima kasih!" + "savereminder":{ + "description":"Reminder to press save", + "message":"Jangan lupa untuk menyimpan!" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Umum" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Jika Anda lebih tidak suka melihat iklan seperti ini, Anda dapat mematikan daftar filter iklan yang dapat diterima." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Pada browser tersebut, muatlah halaman yang ada iklannya." }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Iklan yang dapat diterima (disarankan)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "optionsversion":{ + "description":"Version number", + "message":"Versi $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeother":{ - "description":"A resource type", - "message":"lainnya" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Masukkan" + "filtericelandic":{ + "description":"language", + "message":"Bahasa Islandia" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Tidak ada filter yang ditentukan!" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Melaporkan iklan bersifat sukarela. Hal ini membantu orang lain dengan mengaktifkan pengelola daftar filter untuk memblokir iklan untuk semua orang. Jika Anda tidak merasa altruistik sekarang ini, tidak apa-apa. Tutup halaman ini dan blok iklan hanya untuk diri sendiri." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Apakah Anda yakin bahwa Anda ingin berlangganan ke daftar filter $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"tidak diketahui" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Kode sumber tersedia secara gratis!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Finlandia" + "message":"Belanda" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Silahkan ketik filter yang benar di bawah ini dan tekan OK" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock dimatikan pada halaman ini." + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Ekstensi yang telah dinonaktifkan sebelumnya telah diaktifkan kembali." }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"1 item yang sama pada halaman ini." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Jepang" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Izinkan beberapa iklan yang tidak mengganggu" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Bersihkan daftar ini" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Ini adalah sebuah masalah daftar filter. Laporkan disini: $link$", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"diperbaharui $hours$ jam lalu", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Jangan jalankan pada halaman-halaman di domain ini" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Gagal mengambil filter ini!" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Kembali" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Tunjukkan alamat ke daftar filter" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Hanya Inggris" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Batal" + "optionstitle":{ + "description":"Title for the options page", + "message":"Pengaturan AdBlock" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Bantu Sebarkan!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Anda dapat menggeser yang dibawah ini untuk mengganti secara tepat pada halaman apa AdBlock tidak akan berjalan." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock telah memblokir unduhan dari situs terkenal akan host malware." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Periksa di Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Jangan berangganan lebih dari yang anda butuhkan -- setiap satunya akan sedikit memperlambat anda! Kredit dan lebih banyak daftar dapat ditemukan Disini." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Aktifkan modus kompatibilitas ClickToFlash" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Memeriksa pembaruan (hanya memerlukan beberapa detik)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Berlangganan pada daftar filter ini, lalu coba lagi: $list_title$", + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domain dari halaman untuk diterapkan" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"diperbaharui sekarang" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"diperbaharui $minutes$ menit lalu", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Untuk melaporkan iklan, Anda harus terhubung ke internet." + "lang_czech":{ + "description":"language", + "message":"Ceko" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Punya pertanyaan atau ide baru?" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Izinkan beberapa iklan yang tidak mengganggu" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Daftar URL yang tidak sah. Daftar ini akan dihapus." + "filterswedish":{ + "description":"A filter list", + "message":"Swedia" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Langkah 1: Tentukan apa yang akan diblokir" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Dukungan AdBlock" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tipe" }, - "yes":{ - "description":"A positive response to a question", - "message":"Ya" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filteritalian":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"Italia" + "message":"Prancis" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"diperbaharui 1 menit lalu" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Terlihat bagus" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (dianjurkan)" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - Klik untuk melihat detilnya" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Perhatian: tidak ada filter yang ditentukan!" } } \ No newline at end of file diff --git a/_locales/it/messages.json b/_locales/it/messages.json index 90fcf926..ccf05c35 100644 --- a/_locales/it/messages.json +++ b/_locales/it/messages.json @@ -1,1546 +1,1586 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Allega uno screenshot:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nessun malware noto trovato." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"In un altro browser, sottoscrivi gli stessi elenchi dei filtri come qua." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Hai una domanda o una nuova idea?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"In questo browser, carica la pagina con la pubblicità." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opzioni" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Svedese" + "message":"EasyList (raccomandato)" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Bloccare più pubblicità:" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ su questa pagina", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Russo" + "message":"Polacco" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Annullata sottoscrizione." + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS da bloccare" }, - "filterchinese":{ - "description":"language", - "message":"Cinese" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Escludi" }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Se hai creato un filtro funzionante utilizzando la procedura guidata \"blocca un annuncio\", incollalo nel box sottostante:" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Non mi va di controllare" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Lista filtri Antisocial (rimuove i bottoni dei social media)" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Attenzione: Se fai un errore molti altri filtri, compresi quelli ufficiali, potrebbero smettere di funzionare!
Leggi il filter syntax tutorial per imparare le funzionalità avanzate e scrivere da solo i tuoi filtri." }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Trovato un annuncio su una pagina web? Ti aiuteremo a trovare il posto giusto per segnalarlo!" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"La pubblicità continua ad apparire in questo browser?" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Visualizza il numero di annunci bloccati sul pulsante di AdBlock" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Se preferisci non visualizzare annunci come questo, è possibile lasciare disattivato l'elenco dei filtri Annunci Accettabili." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Il codice sorgente è liberamente disponibile!" + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"Lituano" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"aggiornato 1 minuto fa" + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Abbonati a questa lista filtro, poi prova ancora: $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Errore nel recupero del filtro!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"Il computer potrebbe essere infetto da malware. Clicca qui per ulteriori informazioni." }, - "linkblockadbyurl":{ + "linkunblock":{ "description":"Link on the 'Customize' tab", - "message":"Blocca una pubblicità inserendo la sua URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Nascondi questo bottone" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Gli aggiornamenti saranno scaricati automaticamente; puoi anche aggiornare ora" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formato: ~sito1.com|~sito2.com|~news.sito3.org" + "message":"Mostra le pubblicità su una pagina web o dominio" }, - "filtereasylist_plus_estonian":{ + "lang_slovak":{ "description":"language", - "message":"Estone" + "message":"Slovacco" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tipo" + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Installa Adblock Plus per Firefox $chrome$ se non ce l'hai.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"E' disponibile un aggiornamento per AdBlock! Vai $here$ per aggiornare.
Attenzione: se vuoi ricevere gli aggiornamenti automaticamente, clicca su Safari > Preferenze > Estensioni >Aggiornamenti
e spunta l'opzione 'Installa gli aggiornamenti automaticamente'.", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Non abbiamo una lista filtri di default per questa lingua.
Per favore prova a cercare una lista adatta che supporta questa lingua $link$ o blocca questa pubblicità da solo nella scheda 'Personalizza'.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "link":{ + "content":"", + "example":"here" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Cos'è?" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Clicca quello che vuoi bloccare e ti guiderò nell'operazione." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "topframe":{ + "description":"Resource list page: frame type", + "message":"Top frame" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Non abbonarti a più liste di quante te ne servano -- ciascuna rallenta un po' (veramente poco) le prestazioni. Altre liste si trovano qui." + "typestylesheet":{ + "description":"A resource type", + "message":"definizione stile" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Questa funzione AdBlock non funziona su questo sito perché utilizza tecnologia antiquata. Può mettere manualente in blacklist o whitelist le risorse nella scheda 'Personalizza' della pagina opzioni." + "typeunknown":{ + "description":"A resource type", + "message":"sconosciuto" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polacco" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Spiacenti, AdBlock è disabilitato su questa pagina da qualcuna delle tue liste filtri." }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Scopri maggiori informazioni sul programma Annunci Accettabili." + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"aggiornato $seconds$ secondi fa", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Terze parti" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Nessun filtro specificato!" }, - "filterhungarian":{ + "filtereasylist_plus_greek":{ "description":"language", - "message":"Ungherese" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Nota: il tuo report potrebbe diventare disponibile pubblicamente. Tienilo a mente prima di includere qualcosa di privato." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Si prega di disattivare alcuni elenchi di filtri. Ulteriori informazioni nelle opzioni di AdBlock." + "message":"Greco" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Origine del filtro:$list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Stai usando una vecchia versione di AdBlock. Vai a the extensions page, abilita 'Modalità sviluppatore' e clicca 'Aggiorna estensioni adesso'" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Spiacenti, AdBlock è disabilitato su questa pagina da qualcuna delle tue liste filtri." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Come ti chiami?" }, - "filtericelandic":{ - "description":"language", - "message":"Islandese" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Aggira il problema dei video Hulu.com che non vengono riprodotti (richiede il riavvio del browser)" }, "blacklisterwarningnofilter":{ "description":"Warns the user that no filter was specified", "message":"Attenzione: nessun filtro specificato!" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock è disabilitato su questa pagina." + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personalizza" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Mostra le pubblicità ovunque tranne per questi domini..." + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Trovato un annuncio su una pagina web? Ti aiuteremo a trovare il posto giusto per segnalarlo!" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opzioni" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estone" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." - }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Pubblicità bloccate:" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgaro" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Aggiungi filtri per altre lingue: " + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Contenuti nella whitelist" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Clicca quello che vuoi bloccare e ti guiderò nell'operazione." + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Superato il limite di regole blocco contenuto" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"O, clicca su questo pulsante per fare tutto quanto indicato sopra: disattiva tutte le altre estensioni" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Non eseguire AdBlock su..." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blocca le URL che contengono questo testo" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Grande! Sei a posto." + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Chiudi" }, - "other":{ - "description":"Multiple choice option", - "message":"Altra" + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Controlla in Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Supporto AdBlock" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Ultimo passo: Cosa rende questa una pubblicità?" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Personalizza AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Le informazioni richieste sono incomplete o non valide. Compila le domande che hanno un bordo rosso." + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Coreano" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Errore di salvataggio del file caricato." + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Perché non ci invii una segnalazione di bug?" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Per favore, inserisci il filtro corretto qui sotto e premi OK" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandese" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Passo 1: Identifica quello che vuoi bloccare" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "filterdanish":{ + "lang_ukranian":{ "description":"language", - "message":"Danese" + "message":"Ucraino" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ su questa pagina", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nessun malware noto trovato." }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Subframe" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Si prega di disattivare alcuni elenchi di filtri. Ulteriori informazioni nelle opzioni di AdBlock." }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"aggiornato 1 ora fa" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Abbiamo anche una pagina per aiutarvi a scoprire le persone che lavorano ad AdBlock!" }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Coreano" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"qui" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"o Chrome" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Come ti chiami?" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Se visualizzi una pubblicità, non riportare un bug, fai una segnalazione di pubblicità!" }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"La più popolare estensione di Chrome, con oltre 40 milioni di utilizzatori! Blocca le pubblicità su tutto il web." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Visualizza tutte le richieste" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Ricarica la pagina." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Non mi va di controllare" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"In che lingua è scritta questa pagina?" + }, + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock è in pausa." }, "catblock_options":{ "description":"Title of the CatBlock options page tab", "message":"CatBlock Options" }, - "yes":{ - "description":"A positive response to a question", - "message":"Sì" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Riabilita AdBlock" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Annulla i miei blocchi su questo dominio" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Ricerca pubblicità...

Ci vorrà solo un momento." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personalizza" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock è disabilitato su questa pagina." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Metti in pausa AdBlock" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"In un altro browser, sottoscrivi gli stessi elenchi dei filtri come qua." }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Sei sicuro di volerti sottoscrivere alla lista del filtro $title$?", + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blocca una pubblicità" + }, + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Avviso: su tutti gli altri siti vedrai le pubblicità!
Questa regola annulla gli altri filtri per quei siti." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"E' disponibile un aggiornamento per AdBlock! Vai $here$ per aggiornare.
Attenzione: se vuoi ricevere gli aggiornamenti automaticamente, clicca su Safari > Preferenze > Estensioni >Aggiornamenti
e spunta l'opzione 'Installa gli aggiornamenti automaticamente'.", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Esattamente dov'é in quella pagina è l'annuncio? Che cosa ti sembra?" - }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"o AdBlock per Chrome" - }, - "typestylesheet":{ - "description":"A resource type", - "message":"definizione stile" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Finito!" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Filtri personalizzati di AdBlock (raccomandato)" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tipo" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Superato il limite di regole blocco contenuto" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Cos'è?" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Ricerca pubblicità...

Ci vorrà solo un momento." + "filterjapanese":{ + "description":"language", + "message":"Giapponese" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Origine del filtro:$list$", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Il dominio o url dove AdBlock non dovrebbe bloccare nulla" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Abbonati a una lista filtri" }, - "typescript":{ - "description":"A resource type", - "message":"script" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Sito:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ in totale", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Aggiungi filtri per altre lingue: " }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Filtro adattato" }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Tutti a posto! Ti contatteremo presto, probabilmente entro un giorno, due se si tratta di un giorno festivo. Nel frattempo, controlla se è arrivata un'email da AdBlock. Ci troverai un link per un posto sul nostro sito di assistenza. Se preferisci seguirci via email, puoi ancora farlo!" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Le liste filtri bloccano la maggior parte delle pubblicità sul web. E' anche possibile:" }, - "no":{ - "description":"A negative response to a question", - "message":"No" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Per nascondere il pulsante, fare clic destro sulla barra degli strumenti di Safari e scegliere Personalizza Barra degli Strumenti, quindi trascinare il pulsante AdBlock fuori dalla barra. È possibile visualizzarlo nuovamente trascinandolo nella barra degli strumenti." }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Qualcosa è andato storto. Nessuna risorsa è stata ancora inviata. Questa pagina sarà chiusa. Prova a ricaricare il sito." + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Hai superato le dimensioni limite di Dropbox. Rimuovi alcune voci dai filtri personalizzati o disabilitati e riprova." }, - "lang_ukranian":{ - "description":"language", - "message":"Ucraino" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Abbonati" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"aggiornato $minutes$ minuti fa", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "contentblockingwarning":{ + "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", + "message":"Nota: Mettere in Whitelist (permette annunci su) una pagina o un sito non è supportato con il blocco contenuti di Safari attivato." }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Non sei iscritto all'elenco del filtro Acceptable Ads." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Elemento bloccato:" }, - "filtermalware":{ - "description":"A filter list", - "message":"Protezione Malware" + "typepage":{ + "description":"A resource type", + "message":"pagina" }, - "savebutton":{ - "description":"Save button", - "message":"Salva" + "typeother":{ + "description":"A resource type", + "message":"altro" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Avviso: su tutti gli altri siti vedrai le pubblicità!
Questa regola annulla gli altri filtri per quei siti." + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Clicca qui: Aggiorna i miei filtri!" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Disattiva queste notifiche" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"In abbonamento alla lista filtri..." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Elementi nascosti" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Stai usando una vecchia versione di AdBlock. Vai a the extensions page, abilita 'Modalità sviluppatore' e clicca 'Aggiorna estensioni adesso'" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Per nascondere il bottone, andare in opera://extension e spuntare 'Nascondi dalla toolbar'. Puoi tornare a visualizzarla deselezionando l'opzione." }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opzioni di AdBlock" + "typeobject_subrequest":{ + "description":"A resource type", + "message":"object_subrequest" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Pagina:" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Verifica malware che potrebbero essere responsabili dell'inserzione di annunci:" + "buttonblockit":{ + "description":"Block button", + "message":"Bloccalo!" }, - "debuginlogoption":{ + "allow_whitelisting_youtube_channels":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Mostra messaggi di debug nella Console dei Log (rallenta AdBlock)" - }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Hai superato le dimensioni limite di Dropbox. Rimuovi alcune voci dai filtri personalizzati o disabilitati e riprova." - }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Riabilita AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Aggira il problema dei video Hulu.com che non vengono riprodotti (richiede il riavvio del browser)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Escludi" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disabilita tutte le estensioni tranne AdBlock:" + "message":"Consenti la whitelist di specifici canali YouTube" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"I crediti per la traduzione vanno a:" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"CARICAMENTO..." + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Non possiamo ancora bloccare pubblicità all'interno di Flash e altri plugins. Siamo in attesa di supporto da parte del browser e WebKit." }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Clicca col tasto destro su una pubblicità per bloccarla -- oppure bloccala qui manualmente." + "filterhungarian":{ + "description":"language", + "message":"Ungherese" }, - "contentblockingwarning":{ - "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", - "message":"Nota: Mettere in Whitelist (permette annunci su) una pagina o un sito non è supportato con il blocco contenuti di Safari attivato." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blocca questa pubblicità" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Lo useremo per contattarti solo se avremo bisogno di ulteriori informazioni." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Abilita AdBlock su questa pagina" }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Modifica i filtri disabilitati:" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Visualizza il numero di annunci bloccati sul pulsante di AdBlock" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Fallito!" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Attivare il blocco dei contenuti Safari" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Metti in pausa AdBlock" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Qual è il tuo indirizzo email?" + "lang_english":{ + "description":"language", + "message":"Inglese" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Per nascondere il pulsante, fare clic destro sulla barra degli strumenti di Safari e scegliere Personalizza Barra degli Strumenti, quindi trascinare il pulsante AdBlock fuori dalla barra. È possibile visualizzarlo nuovamente trascinandolo nella barra degli strumenti." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Aggiungi AdBlock al menù contestuale (click destro)" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"C'è stato un errore di elaborazione della tua richiesta." + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Vai sul nostro sito di supporto." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Elenco avvisi rimozione di adblock (rimuove avvertenze sull'utilizzo di annuncio bloccanti)" }, "typemain_frame":{ "description":"A resource type", "message":"pagina" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" - }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Fatto! Abbiamo ricaricato la pagina con l'annuncio. Controlla questa pagina per vedere se l'annuncio è apparso. Poi torna su questa pagina e rispondi alla domanda qui sotto." - }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"O inserire un URL:" - }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Stai usando una vecchia versione di Safari. Scarica l'ultima versione per poter usare il bottone di AdBlock nella toolbar per mettere in pausa AdBlock, permettere contenuti, e riportare pubblicità. Upgrade now." + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Sei sicuro di voler rimuovere i $count$ blocchi che hai creato su $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Clicca il menu Safari → Preferenze → Estensioni." + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legenda: " }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Arrestare il blocco delle pubblicità:" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "buttonblockit":{ - "description":"Block button", - "message":"Bloccalo!" + "updatedminutesago":{ + "description":"Label for subscription", + "message":"aggiornato $minutes$ minuti fa", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"La pubblicità compare ancora?" + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Allega uno screenshot:" }, - "filtereasylist_plus_bulgarian":{ + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Bulgaro" - }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Grande! Ora andiamo a scoprire quale estensione ne è la causa. Abilita ogni estensione una per una. L'estensione che fa ricomparire l'annuncio è quello che avete bisogno di disinstallare per sbarazzarvi degli annunci." - }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Fallito!" + "message":"Rumeno" }, - "manualfilteredit":{ + "manualexcludefilteredit":{ "description":"Subtitle on the 'Customize' tab", - "message":"Modificare manualmente i filtri:" + "message":"Modifica i filtri disabilitati:" }, - "filteritalian":{ - "description":"language", - "message":"Italiano" + "subframe":{ + "description":"Resource list page: frame type", + "message":"Subframe" }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Ricarica la pagina che contiene la pubblicità." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tipo" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Attivare il blocco dei contenuti Safari" }, - "lang_slovak":{ - "description":"language", - "message":"Slovacco" + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installa Firefox $chrome$ se non ce l'hai.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Abbonati a una lista filtri" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Lista filtri" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Puoi tornare indietro e supportare i siti Web che ami selezionando l'opzione \"Consenti alcune pubblicità non intrusive\" sotto." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Se hai creato un filtro funzionante utilizzando la procedura guidata \"blocca un annuncio\", incollalo nel box sottostante:" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"La pubblicità continua ad apparire in questo browser?" + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Questo file è troppo grande. Assicurarti che il file sia più piccolo di 10 MB." }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Non abilitare su questa pagina" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sono un utente esperto, mostrami le opzioni avanzate" }, - "filtereasylist_plus_lithuania":{ + "filterchinese":{ "description":"language", - "message":"Lituano" - }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Fatecele sapere sul nostro sito di supporto tecnico!" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock è in pausa." + "message":"Cinese" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Non possiamo ancora bloccare pubblicità all'interno di Flash e altri plugins. Siamo in attesa di supporto da parte del browser e WebKit." + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Il filtro non è valido: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"In abbonamento alla lista filtri..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Cos'è cambiato nell'ultimo rilascio? Guarda il changelog!" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Apri la pagina delle estensioni per attivare le estensioni precedentemente disabilitate." }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Se preferisci non visualizzare annunci come questo, è possibile lasciare disattivato l'elenco dei filtri Annunci Accettabili." + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Disattiva queste notifiche" }, - "typeother":{ - "description":"A resource type", - "message":"altro" + "filterturkish":{ + "description":"A filter list", + "message":"Turco" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Nessun filtro specificato!" + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Non abbonarti a più liste di quante te ne servano -- ciascuna rallenta un po' (veramente poco) le prestazioni. Altre liste si trovano qui." }, - "typeunknown":{ + "typesubdocument":{ "description":"A resource type", - "message":"sconosciuto" + "message":"frame" }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesiano" }, - "filterjapanese":{ - "description":"language", - "message":"Giapponese" + "typeimage":{ + "description":"A resource type", + "message":"immagine" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Permetti alcuni annunci non invadenti" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ in totale", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Cancella" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Puoi scorrere in basso per selezionare esattamente in quali pagine AdBlock non verrà abilitato." + "savereminder":{ + "description":"Reminder to press save", + "message":"Non dimenticare di salvare!" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Ultimo passo: segnalaci il problema." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Controlla in Firefox $chrome$", + "typeselector":{ + "description":"A resource type", + "message":"selettore" + }, + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "filtericelandic":{ + "description":"language", + "message":"Islandese" + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Sei sicuro di volerti sottoscrivere alla lista del filtro $title$?", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Per segnalare una pubblicità devi essere connesso a internet." - }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (raccomandato)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blocca solo le pubblicità di questi siti:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Caricata sulla pagina con dominio:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Segnala una pubblicità" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Le estensioni che sono state precedentemente disattivate sono state riattivate." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Liste Filtri" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Come?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Pulisci questa lista" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Consenti la whitelist di specifici canali YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Aiuta a diffondere il messaggio!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Terze parti" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (rimuove i fastidi sul Web)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - clicca per dettagli" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opzioni di AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"C'è stato un errore di elaborazione della tua richiesta." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"aggiornato $hours$ ore fa", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"aggiornato 1 ora fa" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russo e Ucraino" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Controlla aggiornamenti (dovrebbero bastare pochi secondi)..." }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Consenti ad AdBlock di raccogliere anonimamente dati sull'utilizzo della lista filtri" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"appena aggiornato" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Le estensioni che sono state precedentemente disattivate sono state riattivate." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Clicca col tasto destro su una pubblicità per bloccarla -- oppure bloccala qui manualmente." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Greco" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Verifica malware che potrebbero essere responsabili dell'inserzione di annunci:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Nascondi una sezione di una pagina web" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Supporto AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video e Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tipo" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Quando tornerai su questa pagina, quale credi che sarà la situazione di questa pubblicità?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Spostare il cursore fino a bloccare correttamente l'elemento selezionato e a dare alla pagina l'aspetto desiderato." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Abilita AdBlock su questa pagina" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"aggiornato 1 minuto fa" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Indietro" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Le liste filtri bloccano la maggior parte delle pubblicità sul web. E' anche possibile:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Risorsa bloccata" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Le seguenti informazioni appariranno anche nella segnalazione dell'annuncio." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Danese" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Controlla i filtri degli Annunci Accettabili:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Mostra le pubblicità su una pagina web o dominio" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Puoi tornare indietro e supportare i siti Web che ami selezionando l'opzione \"Consenti alcune pubblicità non intrusive\" sotto." }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"1 elemento dello stesso tipo trovato sulla pagina" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Attenzione: Se fai un errore molti altri filtri, compresi quelli ufficiali, potrebbero smettere di funzionare!
Leggi il filter syntax tutorial per imparare le funzionalità avanzate e scrivere da solo i tuoi filtri." + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Canale $name$ in Whitelist", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "fetchinglabel":{ + "description":"Status label", + "message":"In fase di recupero..." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Lista URL non valida. Sarà cancellata." }, "generaloptions":{ "description":"Title of first tab page", "message":"Opzioni generali" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock non verrà eseguito su qualsiasi pagina corrispondente:" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Deseleziona 'Abilitata' vicino ad ogni estensione eccetto AdBlock. Lascia abilitata AdBlock" + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"In questo browser, carica la pagina con la pubblicità." }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Non abbiamo una lista filtri di default per questa lingua.
Per favore prova a cercare una lista adatta che supporta questa lingua $link$ o blocca questa pubblicità da solo nella scheda 'Personalizza'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Mostra le pubblicità ovunque tranne per questi domini..." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Abbonati" + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Hai dimenticato di allegare uno screenshot! Non possiamo aiutarti senza vedere l'annuncio(i) che stai segnalando." }, - "advanced_options2":{ + "catblock_debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sono un utente esperto, mostrami le opzioni avanzate" + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spagnolo" + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"E manualmente crea un biglietto, copiando e incollando le informazioni qui di seguito nella sezione \"Aggiungi qualunque dettaglio che pensi ci aiuterà a capire il tuo problema\"." }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Caricata sulla pagina con dominio:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Clicca qui: Aggiorna i miei filtri!" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Per nascondere il bottone, cliccaci sopra col destro e scegli Nascondi Bottone. Puoi farlo apparire di nuovo andando in chrome://chrome/extensions." }, - "you_know_thats_a_bad_idea_right":{ + "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Più liste filtri usi, più lentamente funzionerà AdBlock. Utilizzando molte liste il browser può crashare su alcuni siti. Premi OK per sottoscriverti a questa lista ugualmente." - }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Ultimo passo: Cosa rende questa una pubblicità?" + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"$matchcount$ elementi dello stesso tipo trovati sulla pagina.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "filterisraeli":{ + "description":"language", + "message":"Ebraico" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Abbiamo anche una pagina per aiutarvi a scoprire le persone che lavorano ad AdBlock!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Questa funzione AdBlock non funziona su questo sito perché utilizza tecnologia antiquata. Può mettere manualente in blacklist o whitelist le risorse nella scheda 'Personalizza' della pagina opzioni." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesiano" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Ceco e Slovacco" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turco" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Abbiamo disabilitato tutte le altre estensioni. Ora ricaricaricheremo la pagina con l'annuncio. Un secondo, prego." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blocca una pubblicità" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Altre Liste Filtri" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Liste Filtri Personalizzati" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Gli aggiornamenti saranno scaricati automaticamente; puoi anche aggiornare ora" }, - "frameurl":{ - "description":"Resource list page: full URL of the frame", - "message":"Frame URL: " + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Visualizza tutte le richieste" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Lo scopo di questa domanda è determniare chi dovrebbe ricevere il tuo report. Se rispondi a questa domanda in modo sbagliato, il report sarà inviato alla persona sbagliata, e così sarà ignorato." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Aggiungi AdBlock al menù contestuale (click destro)" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Più liste filtri usi, più lentamente funzionerà AdBlock. Utilizzando molte liste il browser può crashare su alcuni siti. Premi OK per sottoscriverti a questa lista ugualmente." }, - "typeselector":{ - "description":"A resource type", - "message":"selettore" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Grande! Sei a posto." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blocca questa pubblicità" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Il nostro team richiede alcune informazioni di debug? Clicca qui!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Apri la pagina delle estensioni." }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Non eseguire AdBlock su..." + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Tutti a posto! Ti contatteremo presto, probabilmente entro un giorno, due se si tratta di un giorno festivo. Nel frattempo, controlla se è arrivata un'email da AdBlock. Ci troverai un link per un posto sul nostro sito di assistenza. Se preferisci seguirci via email, puoi ancora farlo!" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Segnalare un annuncio è facoltativo. Aiuta altri utenti abilitando la lista filtri manutentori per bloccare l'annuncio per tutti. Se adesso non ti senti altruistia destra, va bene. Chiudi questa pagina e blocca l'annuncio solo per te stesso." + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Scopri maggiori informazioni sul programma Annunci Accettabili." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Elementi nascosti" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Permetti ad AdBolck di notificarti quando rileva un malware?" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Ricarica la pagina." + "updateddayago":{ + "description":"Label for subscription", + "message":"aggiornato 1 giorno fa" }, - "typepage":{ - "description":"A resource type", - "message":"pagina" + "frameurl":{ + "description":"Resource list page: full URL of the frame", + "message":"Frame URL: " }, - "filterdutch":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Olandese" + "message":"Tedesco" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, "adreport_response_file_name":{ "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", "message":"Il nome del file è troppo lungo. Assegna al file un nome più breve." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Non dimenticare di salvare!" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"aggiornato $seconds$ secondi fa", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Controlla aggiornamenti (dovrebbero bastare pochi secondi)..." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Non abilitare su questa pagina" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Generale" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Fatecele sapere sul nostro sito di supporto tecnico!" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Abbonati a questa lista filtro, poi prova ancora: $list_title$", + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Fatto! Abbiamo ricaricato la pagina con l'annuncio. Controlla questa pagina per vedere se l'annuncio è apparso. Poi torna su questa pagina e rispondi alla domanda qui sotto." + }, + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Tutte le risorse" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Canale $name$ in Whitelist", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Permetti ad AdBolck di notificarti quando rileva un malware?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Risorse" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Visualizza il numero di annunci bloccati nel menu di AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Sito:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Segnala una pubblicità" + }, + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Come?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Non attivare sulle pagine di questo dominio" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Liste Filtri Personalizzati" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Bloccare più pubblicità:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Le informazioni richieste sono incomplete o non valide. Compila le domande che hanno un bordo rosso." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Il dominio o url dove AdBlock non dovrebbe bloccare nulla" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Filtri personalizzati di AdBlock (raccomandato)" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Non sei iscritto all'elenco del filtro Acceptable Ads." }, - "filterlatvian":{ + "filterannoyances":{ "description":"A filter list", - "message":"Lettone" - }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Assicurati di utilizzare i filtri della lingua giusta:" + "message":"Fanboy's Annoyances (rimuove i fastidi sul Web)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS da bloccare" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock ha bloccato un download da un sito noto per ospitare malware." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Per nascondere il bottone, andare in opera://extension e spuntare 'Nascondi dalla toolbar'. Puoi tornare a visualizzarla deselezionando l'opzione." + "savebutton":{ + "description":"Save button", + "message":"Salva" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Non sei sicuro? allora premi 'Bloccalo!' qui in basso." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Filtro adattato" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"In fase di recupero..." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Tutte le risorse" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Ultimo passo: segnalaci il problema." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock è aggiornato!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Non attivare sulle pagine di questo dominio" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Lo scopo di questa domanda è determniare chi dovrebbe ricevere il tuo report. Se rispondi a questa domanda in modo sbagliato, il report sarà inviato alla persona sbagliata, e così sarà ignorato." }, - "filterisraeli":{ - "description":"language", - "message":"Ebraico" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Va bene" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Spostare il cursore fino a bloccare correttamente l'elemento selezionato e a dare alla pagina l'aspetto desiderato." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blocca le URL che contengono questo testo" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Consenti ad AdBlock di raccogliere anonimamente dati sull'utilizzo della lista filtri" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Per segnalare una pubblicità devi essere connesso a internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Il numero di regole filtro supera il limite di 50.000 ed è stato ridotto automaticamente. Si prega di eliminare alcuni elenchi di filtri o disattivare il blocco dei contenuti Safari!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Liste Filtri" }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"aggiornato 1 giorno fa" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Annunci Accettabili (consigliato)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Fare clic qua: Disabilitare Annunci Accettabili" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versione $version$", + "message":"aggiornato $days$ giorni fa", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Rimuovi dalla lista" + "typeobject":{ + "description":"A resource type", + "message":"oggetto interattivo" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Non è un file immagine. Carica un file .png, .gif o .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Quando tornerai su questa pagina, quale credi che sarà la situazione di questa pubblicità?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Perché non ci invii una segnalazione di bug?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Pubblicità bloccate:" }, - "typehiding":{ - "description":"A resource type", - "message":"nascondi" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Lista filtri" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arabo" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Dominio del frame: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Annulla i miei blocchi su questo dominio" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Top frame" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Modificare manualmente i filtri:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Finito!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Passo 1: Identifica quello che vuoi bloccare" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Risorse" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Per favore, inserisci il filtro corretto qui sotto e premi OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blocca una pubblicità su questa pagina" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"I crediti per la traduzione vanno a:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Assicurati che gli elenchi dei filtri siano aggiornati:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock è aggiornato!" }, - "lang_english":{ - "description":"language", - "message":"Inglese" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Solo in inglese" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Apri la pagina delle estensioni per attivare le estensioni precedentemente disabilitate." + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"O, clicca su questo pulsante per fare tutto quanto indicato sopra: disattiva tutte le altre estensioni" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Dominio della pagina a cui applicarlo" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Cos'è cambiato nell'ultimo rilascio? Guarda il changelog!" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Pagina:" + "filterantisocial":{ + "description":"A filter list", + "message":"Lista filtri Antisocial (rimuove i bottoni dei social media)" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Trovato un bug?" + "filtermalware":{ + "description":"A filter list", + "message":"Protezione Malware" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arabo" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock non verrà eseguito su qualsiasi pagina corrispondente:" }, - "lang_czech":{ - "description":"language", - "message":"Ceco" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Hai superato la quantità di spazio che AdBlock può utilizzare. Per favore elimina la sottoscrizione da alcune liste filtri!" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Dona ciò che ti senti!" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Qual è il tuo indirizzo email?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Vuoi vedere cosa fa AdBlock?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Lista URL non valida. Sarà cancellata." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Nascondi una sezione di una pagina web" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Generale" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"o AdBlock per Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video e Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Grande! Ora andiamo a scoprire quale estensione ne è la causa. Abilita ogni estensione una per una. L'estensione che fa ricomparire l'annuncio è quello che avete bisogno di disinstallare per sbarazzarvi degli annunci." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Modifica" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"o Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Hai una domanda o una nuova idea?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formato: ~sito1.com|~sito2.com|~news.sito3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Hai dimenticato di allegare uno screenshot! Non possiamo aiutarti senza vedere l'annuncio(i) che stai segnalando." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Dona ciò che ti senti!" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Se visualizzi una pubblicità, non riportare un bug, fai una segnalazione di pubblicità!" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"E' un problema della lista filtri, segnalalo qui: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Maggiori informazioni sui malware" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Nota: il tuo report potrebbe diventare disponibile pubblicamente. Tienilo a mente prima di includere qualcosa di privato." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Ricarica la pagina che contiene la pubblicità." + "filteritalian":{ + "description":"language", + "message":"Italiano" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installa Firefox $chrome$ se non ce l'hai.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Aggiornamenti di AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"La pubblicità compare ancora?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Elenco avvisi rimozione di adblock (rimuove avvertenze sull'utilizzo di annuncio bloccanti)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Assicurati di utilizzare i filtri della lingua giusta:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Altre Liste Filtri" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Assicurati che gli elenchi dei filtri siano aggiornati:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francese" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Qualcosa non ha funzionato durante il controllo aggiornamenti." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Elemento bloccato:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Clicca il menu Safari → Preferenze → Estensioni." }, - "typeobject":{ - "description":"A resource type", - "message":"oggetto interattivo" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Invia" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"appena aggiornato" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"aggiornato $days$ giorni fa", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Annullata sottoscrizione." + }, + "typemedia":{ "description":"A resource type", - "message":"frame" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (protezione della privacy)" + "message":"Lettone" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Segnala una pubblicità su questa pagina" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blocca una pubblicità su questa pagina" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Pulisci questa lista" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Arrestare il blocco delle pubblicità:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Tedesco" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Errore di salvataggio del file caricato." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Attenzione: questo filtro blocca tutti gli elementi $elementtype$ sulla pagina!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"$matchcount$ elementi dello stesso tipo trovati sulla pagina.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"qui" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"In che lingua è scritta questa pagina?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Errore nel recupero del filtro!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Sei sicuro di voler rimuovere i $count$ blocchi che hai creato su $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Puoi scorrere in basso per selezionare esattamente in quali pagine AdBlock non verrà abilitato." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"immagine" + "message":"nascondi" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"E manualmente crea un biglietto, copiando e incollando le informazioni qui di seguito nella sezione \"Aggiungi qualunque dettaglio che pensi ci aiuterà a capire il tuo problema\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"La pubblicità viene visualizzata all'interno o prima di un film o di un qualsiasi altro plugin come un gioco Flash?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Per nascondere il bottone, cliccaci sopra col destro e scegli Nascondi Bottone. Puoi farlo apparire di nuovo andando in chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russo e Ucraino" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Rumeno" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Qualcosa non ha funzionato durante il controllo aggiornamenti." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Abbiamo disabilitato tutte le altre estensioni. Ora ricaricaricheremo la pagina con l'annuncio. Un secondo, prego." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Contenuti nella whitelist" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Spagnolo" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Attenzione: questo filtro blocca tutti gli elementi $elementtype$ sulla pagina!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Ceco e Slovacco" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Attiva la compatibilità con ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Tipo di frame: " + "no":{ + "description":"A negative response to a question", + "message":"No" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Scegli una lingua --" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Il filtro, che può essere modificato nella pagina Opzioni:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Installa Adblock Plus per Firefox $chrome$ se non ce l'hai.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Nascondi questo bottone" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Risorsa bloccata" + "other":{ + "description":"Multiple choice option", + "message":"Altra" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, puoi ancora bloccare questa pubblicità da solo sulla pagina Opzioni. Grazie!" + }, + "lang_russian":{ + "description":"language", + "message":"Russo" + }, + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Stai usando una vecchia versione di Safari. Scarica l'ultima versione per poter usare il bottone di AdBlock nella toolbar per mettere in pausa AdBlock, permettere contenuti, e riportare pubblicità. Upgrade now." }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"La pubblicità viene visualizzata all'interno o prima di un film o di un qualsiasi altro plugin come un gioco Flash?" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (protezione della privacy)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"L'attributo $attribute$ sarà $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Il filtro, che può essere modificato nella pagina Opzioni:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"O inserire un URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Il seguente filtro:
$filter$
ha un errore:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Tipo di frame: " }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Chiudi" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"CARICAMENTO..." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blocca solo le pubblicità di questi siti:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Il nostro team richiede alcune informazioni di debug? Clicca qui!" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Hai superato la quantità di spazio che AdBlock può utilizzare. Per favore elimina la sottoscrizione da alcune liste filtri!" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Il filtro non è valido: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Il numero di regole filtro supera il limite di 50.000 ed è stato ridotto automaticamente. Si prega di eliminare alcuni elenchi di filtri o disattivare il blocco dei contenuti Safari!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, puoi ancora bloccare questa pubblicità da solo sulla pagina Opzioni. Grazie!" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Segnala una pubblicità su questa pagina" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Mostra messaggi di debug nella Console dei Log (rallenta AdBlock)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Dominio del frame: " }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Invia" + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"La più popolare estensione di Chrome, con oltre 40 milioni di utilizzatori! Blocca le pubblicità su tutto il web." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Trovato un bug?" }, - "filtereasylist_plus_finnish":{ + "lang_czech":{ "description":"language", - "message":"Finlandese" - }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" - }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Questo file è troppo grande. Assicurarti che il file sia più piccolo di 10 MB." + "message":"Ceco" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Le seguenti informazioni appariranno anche nella segnalazione dell'annuncio." + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"E' un problema della lista filtri, segnalalo qui: $link$", - "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" - } - } + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Non è un file immagine. Carica un file .png, .gif o .jpg." }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Deseleziona 'Abilitata' vicino ad ogni estensione eccetto AdBlock. Lascia abilitata AdBlock" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, "showlinkstolists2":{ "description":"Option on the 'Filter lists' tab of the Options page", "message":"Mostra i collegamenti alle liste filtri" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Solo in inglese" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Permetti alcuni annunci non invadenti" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Aiuta a diffondere il messaggio!" + "filterswedish":{ + "description":"A filter list", + "message":"Svedese" }, - "malwarenotificationmessage":{ - "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock ha bloccato un download da un sito noto per ospitare malware." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Rimuovi dalla lista" }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legenda: " + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Attiva la compatibilità con ClickToFlash" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Scegli una lingua --" + }, + "filtereasylist_plus_french":{ + "description":"language", + "message":"Francese" + }, + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Modifica" }, "tabsupport":{ "description":"A tab on the options page", "message":"Supporto" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Vai sul nostro sito di supporto." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blocca una pubblicità inserendo la sua URL" + }, + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Versione $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } + }, + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Esattamente dov'é in quella pagina è l'annuncio? Che cosa ti sembra?" + }, + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Segnalare un annuncio è facoltativo. Aiuta altri utenti abilitando la lista filtri manutentori per bloccare l'annuncio per tutti. Se adesso non ti senti altruistia destra, va bene. Chiudi questa pagina e blocca l'annuncio solo per te stesso." + }, + "yes":{ + "description":"A positive response to a question", + "message":"Sì" + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Il codice sorgente è liberamente disponibile!" + }, + "filterdutch":{ + "description":"language", + "message":"Olandese" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Lo useremo per contattarti solo se avremo bisogno di ulteriori informazioni." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"1 elemento dello stesso tipo trovato sulla pagina" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"aggiornato $hours$ ore fa", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Indietro" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Fare clic qua: Disabilitare Annunci Accettabili" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Dominio della pagina a cui applicarlo" + }, + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Aggiornamenti di AdBlock" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Qualcosa è andato storto. Nessuna risorsa è stata ancora inviata. Questa pagina sarà chiusa. Prova a ricaricare il sito." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Maggiori informazioni sui malware" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Annunci Accettabili (consigliato)" }, "safaricontentblockingpausemessage":{ "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", "message":"Per mettere in pausa AdBlock quando è abilitato il blocco dei contenuti, si prega di selezionare Safari (nella barra dei menu) > Preferenze > Estensioni e deselezionare 'Abilitare AdBlock'." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" - }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Va bene" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - clicca per dettagli" }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Apri la pagina delle estensioni." + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disabilita tutte le estensioni tranne AdBlock:" } } \ No newline at end of file diff --git a/_locales/ja/messages.json b/_locales/ja/messages.json index ef1aa3bf..b778494b 100644 --- a/_locales/ja/messages.json +++ b/_locales/ja/messages.json @@ -1,884 +1,851 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - 広告を報告" + "filterdanish":{ + "description":"language", + "message":"デンマーク語" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"広告ブロックフィルターのリスト" + "spread_the_word":{ + "description":"Text of a share link", + "message":"周りに広める" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"サイト:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"質問、または新たなアイディアがありますか?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"特定の YouTube チャンネルのホワイトリスト化を許可する" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"取得中・・・しばらくお待ちください。" + }, + "filterjapanese":{ + "description":"language", + "message":"日本語" }, "filterannoyances":{ "description":"A filter list", "message":"Fanboy's Annoyances (ウェブ上のイライラの種を削除します)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - 詳細はこちら" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"このページで $count$ 件", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"URLのリストが無効です。自動的に削除されます。" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Firefoxdで広告のあるページを読み込みください。" + "filtereasylist_plus_polish":{ + "description":"language", + "message":"ポーランド語" }, - "filterswedish":{ - "description":"A filter list", - "message":"スウェーデン語" + "generaloptions":{ + "description":"Title of first tab page", + "message":"一般設定" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Type" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"もっと広告をブロック:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS指定" }, - "lang_russian":{ - "description":"language", - "message":"ロシア語" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"閉じる" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"支払える分だけお支払いください!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"これを確認したくありません。" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"無効にしました。" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock won't run on any page matching:" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"ギリシャ語" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Show ads everywhere except for these domains..." }, - "filterchinese":{ + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"警告: ここで作成したフィルターに問題がある場合、公式フィルターを含む他のフィルターが破損する場合があります。
ブラックリスト、ホワイトリストの詳細な記法はこちら(英語)です。" + }, + "lang_slovak":{ "description":"language", - "message":"中国語" + "message":"スロバキア語" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"ウェブページの一部を隠す" + "yes":{ + "description":"A positive response to a question", + "message":"はい" }, - "filtereasylist_plus_spanish":{ + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" + }, + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Firefoxでも広告は表示されますか?" + }, + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"最終ステップ: 何故これは広告になるのでしょうか?" + }, + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"このページでは実行しない" + }, + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"スペイン語" + "message":"ルーマニア語" }, - "filtermalware":{ - "description":"A filter list", - "message":"マルウェア対策" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"ボタンを非表示にするには、そのボタンを右クリックして、ボタンを非表示を選択してください。 chrome://chrome/extensions で再表示することができます。" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"このページにアクセスする度に表示される要素について、どれが該当すると思いますか?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial フィルターリスト(ソーシャルメディアボタンを削除します)" + "filterisraeli":{ + "description":"language", + "message":"ヘブライ語" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"戻る" + "other":{ + "description":"Multiple choice option", + "message":"その他" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filterczech":{ + "description":"Language names for a filter list", + "message":"チェコ語およびスロバキア語" }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"ほとんどの広告はフィルターリストでブロックされます。オプションとして更に:" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"その他のフィルターリスト" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"ソースコードは 自由に入手できます!" + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"設定" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"自動的にアップデートを取得します。今すぐアップデートすることも可能です。" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "typeunknown":{ + "description":"A resource type", + "message":"unknown" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"ウェブページとドメインにある広告を表示" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"1個のアイテムを発見しました。" - }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"警告: ここで作成したフィルターに問題がある場合、公式フィルターを含む他のフィルターが破損する場合があります。
ブラックリスト、ホワイトリストの詳細な記法はこちら(英語)です。" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"フィルターの取得に失敗しました!" + "filterturkish":{ + "description":"A filter list", + "message":"トルコ語" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"一般設定" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock won't run on any page matching:" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"フィルターリストの使用頻度が高くなるにつれ、AdBlockの動作が重くなります。たくさんのフィルターリストはブラウザがクラッシュする原因となりえます。それでも追加する場合はOKを押してください。" }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"指定された言語のフィルターリストがありません。
この言語をサポートする適切なリストを。$link$ もしくはこの要素をブロックするようにブラックリストを編集してください。", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"登録" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"私は上級者ユーザーです。詳細設定を見せてください。" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"URLで広告をブロック" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"ブロックする広告をクリックして下さい。ウィザードでご案内します。" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"ボタンを隠す" + "typestylesheet":{ + "description":"A resource type", + "message":"style definition" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"自動的にアップデートを取得します。今すぐアップデートすることも可能です。" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock アップデート" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"こちらをクリック: フィルターをアップデート!" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"ページ内にある広告を右クリックし、ブロックをしてください。または、こちらでマニュアルでブロック。" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"例: ~site1.com|~site2.com|~news.site3.org" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"申し訳ありませんが、あなたが設定したフィルターリストによってAdBlockがこのページで無効となっています。" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlockは一時停止しています。" + "updateddayago":{ + "description":"Label for subscription", + "message":"1日前アップデートしました" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"$matchcount$個のアイテムを発見しました。", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"AdBlock に携わる人々を見つけ出す助けになるページもあります!" + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"インドネシア語" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"フィルターが指定されていません!" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Type" + "filtereasylist_plus_german":{ + "description":"language", + "message":"ドイツ語" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock のアップデートがあります! $here$ を開いてアップデートしてください。
注意: アップデートを自動受信したい場合は、 Safari > 設定 > 拡張機能 > アップデートをクリックしてください。
そしてオプション「自動的にアップデートをインストールする」にチェックを入れてください。", + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"フィルターリストの登録" + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"AdBlock 以外の全ての拡張機能の隣にある「有効」チェックボックスのチェックを外してください。 AdBlock は有効のままにしてください。" + }, + "filtereasylist_plus_greek":{ + "description":"language", + "message":"ギリシャ語" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"$seconds$秒前にアップデートしました", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "filterturkish":{ + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"よく分かりませんか?とりあえず、「ブロック!」を押してください。" + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Firefoxdで広告のあるページを読み込みください。" + }, + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"サポートサイトでお知らせください!" + }, + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"これらのサイトの広告をブロックする:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"カスタマイズ" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"広告を報告するには、インターネットに接続されていなければなりません。" + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"ウェブページの一部を隠す" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"トルコ語" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"これは何ですか?" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - 広告を報告" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"ブルガリア語" + }, + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"最新版では何が変わりましたか?変更履歴をご確認ください!" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"このドメイン上のページで稼動させない" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"カスタムフィルターリスト" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"必要以上に登録をしないでください。追加する度に重くなりますので!リストの作成者、その他のリストはこちら。" - }, - "typestylesheet":{ - "description":"A resource type", - "message":"style definition" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"もっと広告をブロック:" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"リストから削除" + "lang_ukranian":{ + "description":"language", + "message":"ウクライナ語" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"この質問の目的は、誰があなたの報告を受け取るべきか決定することです。この質問に不適切に回答した場合、間違った人物に報告が送られてしまい、そのために、無視されてしまうことになる場合があります。" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"ポーランド語" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"ブロックしないドメインやURLを指定" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"右クリックメニューに項目を追加する。" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"注意: フィルターが指定されていません!" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"動画とフラッシュ" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"入力されたテキストを含むURLをブロック" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"この広告をブロック" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"除外" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"$hours$時間前にアップデートしました", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Firefoxでも表示されるかどうかをチェックしてください $chrome$", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"$seconds$秒前にアップデートしました", + "savebutton":{ + "description":"Save button", + "message":"保存" + }, + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"$host$ に関して作成した $count$ 個のブロックを本当に削除しますか?", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"私たちのチームがデバッグ情報をいくらか要求しましたか? それについては こちらをクリック!" - }, - "typeobject":{ - "description":"A resource type", - "message":"interactive object" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "filterhungarian":{ - "description":"language", - "message":"ハンガリー語" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"URLのリストが無効です。自動的に削除されます。" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"決定" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"注意: 報告は公開される場合があります。私的な情報を含める前にご留意ください。" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"ロシア語およびウクライナ語" + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"AdBlockをカスタマイズ" }, - "typepage":{ - "description":"A resource type", - "message":"page" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Hulu.com のビデオが再生されないのを回避する (ブラウザの再起動が必要です)" }, - "filterdutch":{ + "filtereasylist_plus_finnish":{ "description":"language", - "message":"オランダ語" - }, - "savereminder":{ - "description":"Reminder to press save", - "message":"保存を忘れずに!" + "message":"フィンランド語" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ will be $value$", + "updateddaysago":{ + "description":"Label for subscription", + "message":"$days$日前にアップデートしました", "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" + "days":{ + "content":"$1", + "example":"15" } } }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"閉じる" + "typeobject":{ + "description":"A resource type", + "message":"interactive object" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"ブロックされている要素:" - }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" - }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"注意: フィルターが指定されていません!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlockはこのページでは無効になっています。" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Show ads everywhere except for these domains..." - }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"設定" - }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run AdBlock on..." - }, - "fetchinglabel":{ - "description":"Status label", - "message":"取得中・・・しばらくお待ちください。" - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"このページにアクセスする度に表示される要素について、どれが該当すると思いますか?" }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"ブロックされた広告数:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlockカスタムフィルター (推奨)" - }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"まだ、フラッシュ内とプラグインにより出てくる広告はブロックができません。これらの広告の対処ついてはブラウザのサポートとWebKitの対応待ちです。" - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"別の言語用のフィルターを追加: " + "typemain_frame":{ + "description":"A resource type", + "message":"page" }, - "filterlatvian":{ - "description":"A filter list", - "message":"ラトビア語" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"韓国語" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS指定" + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"このドメイン上の自分のブロックを取り消し" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"ボタンを非表示にするには、 opera://extensions を開き、「ツールバーから非表示にする」オプションにチェックを入れてください。そのオプションのチェックを外すと再び表示されるようになります。" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"手動でフィルターを編集:" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"ブロックする広告をクリックして下さい。ウィザードでご案内します。" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"フィルターリストへのリンクを表示する:" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (推奨)" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"このページにある広告をレポート" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"ステップ1: ブロック対象の指定" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"よく分かりませんか?とりあえず、「ブロック!」を押してください。" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"AdBlock に携わる人々を見つけ出す助けになるページもあります!" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"サイト:" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"こちら" }, - "typescript":{ + "typepopup":{ "description":"A resource type", - "message":"script" - }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock サポート" - }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"AdBlockをカスタマイズ" + "message":"popup" }, "latest_version":{ "description":"On the Options > Support page, shows when there are no updates available for AdBlock", "message":"AdBlock は最新版です!" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"このドメイン上のページで稼動させない" - }, - "filterisraeli":{ - "description":"language", - "message":"ヘブライ語" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"英語のみ" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"申し訳ありませんが、あなたが設定したフィルターリストによってAdBlockがこのページで無効となっています。" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"古いバージョンの AdBlock を使用しています。 拡張機能ページ を開き、「デベロッパーモード」を有効にし、「今すぐ拡張機能をアップデート」をクリックしてください。" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"入力されたテキストを含むURLをブロック" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlockは一時停止しています。" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"AdBlock の一時停止を解除" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"このドメイン上の自分のブロックを取り消し" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial フィルターリスト(ソーシャルメディアボタンを削除します)" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"手動でフィルターを入力して、OKを押してください。" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"広告を検索中・・・

少々お待ちください。" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"1日前アップデートしました" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlockはこのページでは無効になっています。" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"ベータ" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"広告をブロック" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"このページで $count$ 件", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1時間前アップデートしました" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"注意: on all other sites you will see ads!
This overrules all other filters for those sites." }, - "optionsversion":{ - "description":"Version number", - "message":"バージョン $version$", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock のアップデートがあります! $here$ を開いてアップデートしてください。
注意: アップデートを自動受信したい場合は、 Safari > 設定 > 拡張機能 > アップデートをクリックしてください。
そしてオプション「自動的にアップデートをインストールする」にチェックを入れてください。", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" - }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"フィルターリストの登録" - }, - "other":{ - "description":"Multiple choice option", - "message":"その他" - }, - "typehiding":{ - "description":"A resource type", - "message":"hiding" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"フィルターリスト" - }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Does the ad appear in or before a film or any other plugin like a Flash game?" - }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"その他のフィルターリスト" - }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"または Chrome" - }, - "buttonblockit":{ - "description":"Block button", - "message":"ブロック!" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"完了!" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock の仕組みを確認したいですか?" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"このページにある広告をブロック" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlockカスタムフィルター (推奨)" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"これを確認したくありません。" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Type" }, - "lang_english":{ - "description":"language", - "message":"英語" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"これは何ですか?" }, - "tabcustomize":{ + "tabgeneral":{ "description":"A tab on the options page", - "message":"カスタマイズ" - }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"AdBlockを一時停止" - }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"適用するドメインを入力" - }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"韓国語" - }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"ページ:" - }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"バグが有りましたか?" - }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"ステップ1: ブロック対象の指定" - }, - "lang_czech":{ - "description":"language", - "message":"チェコ語" - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"フィルターリストの使用頻度が高くなるにつれ、AdBlockの動作が重くなります。たくさんのフィルターリストはブラウザがクラッシュする原因となりえます。それでも追加する場合はOKを押してください。" + "message":"一般" }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"または Chrome 用 AdBlock" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"広告をブロック" - }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" - }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" - }, - "filterdanish":{ - "description":"language", - "message":"デンマーク語" - }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"編集" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"翻訳者:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"広告を検索中・・・

少々お待ちください。" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"例: ~site1.com|~site2.com|~news.site3.org" }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"ブロックしないドメインやURLを指定" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"アップデートを確認中 (数秒しかからないはずです)..." + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"動画とフラッシュ" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"このページで AdBlock を有効にする" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"ほとんどの広告はフィルターリストでブロックされます。オプションとして更に:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"合計 $count$ 件", + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"広告のあるページを更新してください。" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"または Chrome" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Firefoxをお持ちではない場合は $chrome$ インストールしてください。", + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"登録" + }, + "pwyw":{ + "description":"Text of a payment request link", + "message":"支払える分だけお支払いください!" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"フィルターリストの問題です。報告はこちら: $link$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock アップデート" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"ブロックされている要素:" }, - "no":{ - "description":"A negative response to a question", - "message":"いいえ" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"注意: 報告は公開される場合があります。私的な情報を含める前にご留意ください。" }, - "lang_ukranian":{ - "description":"language", - "message":"ウクライナ語" + "typepage":{ + "description":"A resource type", + "message":"page" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$分前にアップデートしました", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ + "adstillappear":{ + "description":"Question on ad report page", + "message":"広告はまだ表示されますか?" + }, + "typeother":{ + "description":"A resource type", + "message":"others" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"こちらをクリック: フィルターをアップデート!" + }, + "filteritalian":{ "description":"language", - "message":"フランス語" + "message":"イタリア語" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"広告を見つけたら、バグ報告ではなく、広告報告をしてください!" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"ボタンを非表示にするには、 opera://extensions を開き、「ツールバーから非表示にする」オプションにチェックを入れてください。そのオプションのチェックを外すと再び表示されるようになります。" + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"アップデートを確認中に不具合が発生しました。" + }, + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Safari のメニュー→ 設定 → 拡張機能をクリックしてください。" }, "typeobject_subrequest":{ "description":"A resource type", "message":"object_subrequest" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"アップデートされました" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"ページ:" }, - "savebutton":{ - "description":"Save button", - "message":"保存" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"注意: on all other sites you will see ads!
This overrules all other filters for those sites." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"広告のあるページを更新してください。" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"フィルターリストに登録・・・" + "unsubscribedlabel":{ + "description":"Status label", + "message":"無効にしました。" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$日前にアップデートしました", + "typemedia":{ + "description":"A resource type", + "message":"audio/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"frame" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (プライバシー保護)" - }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"チェコ語およびスロバキア語" + "message":"ラトビア語" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"古いバージョンの AdBlock を使用しています。 拡張機能ページ を開き、「デベロッパーモード」を有効にし、「今すぐ拡張機能をアップデート」をクリックしてください。" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"このページにある広告をブロック" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock設定" + "buttonblockit":{ + "description":"Block button", + "message":"ブロック!" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"このリストを掃除:" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"広告ブロックをやめる:" }, - "debuginlogoption":{ + "allow_whitelisting_youtube_channels":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"デバック情報を更新履歴に表示(AdBlockの動作が重くなります)" + "message":"特定の YouTube チャンネルのホワイトリスト化を許可する" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"AdBlock の一時停止を解除" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"どの言語でページは書かれていますか?" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"ドイツ語" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"このページにある広告をレポート" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"警告: 指定されたフィルターはページの$elementtype$要素をすべてブロックします!", - "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" - } - } + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"リストから削除" }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"こちら" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"フィルターの取得に失敗しました!" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Hulu.com のビデオが再生されないのを回避する (ブラウザの再起動が必要です)" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"まだ、フラッシュ内とプラグインにより出てくる広告はブロックができません。これらの広告の対処ついてはブラウザのサポートとWebKitの対応待ちです。" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"除外" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"どの言語でページは書かれていますか?" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages AdBlock won't run on." }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "typehiding":{ + "description":"A resource type", + "message":"hiding" + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Does the ad appear in or before a film or any other plugin like a Flash game?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"ロシア語およびウクライナ語" + }, + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"スペイン語" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"この広告をブロック" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"$host$ に関して作成した $count$ 個のブロックを本当に削除しますか?", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"警告: 指定されたフィルターはページの$elementtype$要素をすべてブロックします!", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "typeimage":{ - "description":"A resource type", - "message":"image" + "no":{ + "description":"A negative response to a question", + "message":"いいえ" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"翻訳者:" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"このページで AdBlock を有効にする" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"読み込み中・・・" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"フィルターは設定ページで変更可能:" }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"ページ内にある広告を右クリックし、ブロックをしてください。または、こちらでマニュアルでブロック。" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"ボタンを隠す" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"ボタンを非表示にするには、そのボタンを右クリックして、ボタンを非表示を選択してください。 chrome://chrome/extensions で再表示することができます。" + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"失敗!" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"AdBlockを一時停止" }, - "filtereasylist_plus_romanian":{ + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"このフィルターリストを適用し、ページを更新して要素が消去できたか確認してください。 $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } + }, + "lang_english":{ "description":"language", - "message":"ルーマニア語" + "message":"英語" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"右クリックメニューに項目を追加する。" }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"アップデートを確認中に不具合が発生しました。" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"設定ページを使って自分で広告をブロックします!" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1分前アップデートしました" + "lang_russian":{ + "description":"language", + "message":"ロシア語" }, - "typemain_frame":{ - "description":"A resource type", - "message":"page" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"広告を見つけたら、バグ報告ではなく、広告報告をしてください!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"あなたは古いバージョンのSafariを使用しています。AdBlockの全機能を利用していただくには最新バージョンが必要です。今すぐアップデート." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (プライバシー保護)" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ will be $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -886,249 +853,322 @@ "description":"Link for custom subscription", "message":"URL直接指定:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"あなたは古いバージョンのSafariを使用しています。AdBlockの全機能を利用していただくには最新バージョンが必要です。今すぐアップデート." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"完了!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- 言語を選択 -- " + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"別の言語用のフィルターを追加: " }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Safari のメニュー→ 設定 → 拡張機能をクリックしてください。" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"読み込み中・・・" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"広告ブロックをやめる:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"私たちのチームがデバッグ情報をいくらか要求しましたか? それについては こちらをクリック!" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock の仕組みを確認したいですか?" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"広告はまだ表示されますか?" + "filtermalware":{ + "description":"A filter list", + "message":"マルウェア対策" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"サポート" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"ブルガリア語" + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"デバック情報を更新履歴に表示(AdBlockの動作が重くなります)" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"失敗!" + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Firefoxをお持ちではない場合は $chrome$ インストールしてください。", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"フィルターは設定ページで変更可能:" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"スライダーを広告が見えなくなるまでスライドをしてください。" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"手動でフィルターを編集:" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"AdBlockで使用できる容量を超えました。フィルターリストにあるフィルターを幾つか除外してください!" }, - "filteritalian":{ - "description":"language", - "message":"イタリア語" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"バグが有りましたか?" }, - "typepopup":{ + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" + }, + "typescript":{ "description":"A resource type", - "message":"popup" + "message":"script" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"スライダーを広告が見えなくなるまでスライドをしてください。" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"最新版では何が変わりましたか?変更履歴をご確認ください!" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"フィルターリスト" }, - "lang_slovak":{ + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"私は上級者ユーザーです。詳細設定を見せてください。" + }, + "filterchinese":{ "description":"language", - "message":"スロバキア語" + "message":"中国語" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Firefoxでも広告は表示されますか?" + "typeimage":{ + "description":"A resource type", + "message":"image" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"このページでは実行しない" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"フィルターリストに登録・・・" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"これらのサイトの広告をブロックする:" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"$matchcount$個のアイテムを発見しました。", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } + }, + "updatedhourago":{ + "description":"Label for subscription", + "message":"1時間前アップデートしました" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"サポートサイトでお知らせください!" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- 言語を選択 -- " }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"最終ステップ: 何故これは広告になるのでしょうか?" + "typesubdocument":{ + "description":"A resource type", + "message":"frame" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"AdBlockで使用できる容量を超えました。フィルターリストにあるフィルターを幾つか除外してください!" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"インドネシア語" }, "blacklistereditinvalid1":{ "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", "message":"フィルターが無効: $exception$", "placeholders":{ "exception":{ - "example":"This filter is not supported", - "content":"$1" + "content":"$1", + "example":"This filter is not supported" } } }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"編集" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"設定ページを使って自分で広告をブロックします!" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "tabgeneral":{ + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"合計 $count$ 件", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } + }, + "tabsupport":{ "description":"A tab on the options page", - "message":"一般" + "message":"サポート" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"URLで広告をブロック" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "buttoncancel":{ + "description":"Cancel button", + "message":"キャンセル" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "savereminder":{ + "description":"Reminder to press save", + "message":"保存を忘れずに!" }, - "typeother":{ - "description":"A resource type", - "message":"others" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"フィルターが指定されていません!" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "optionsversion":{ + "description":"Version number", + "message":"バージョン $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"unknown" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "filtereasylist_plus_finnish":{ - "description":"language", - "message":"フィンランド語" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"この質問の目的は、誰があなたの報告を受け取るべきか決定することです。この質問に不適切に回答した場合、間違った人物に報告が送られてしまい、そのために、無視されてしまうことになる場合があります。" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"広告ブロックフィルターのリスト" }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"ソースコードは 自由に入手できます!" }, - "filterjapanese":{ + "filterdutch":{ "description":"language", - "message":"日本語" + "message":"オランダ語" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"フィルターリストの問題です。報告はこちら: $link$", + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"手動でフィルターを入力して、OKを押してください。" + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"1個のアイテムを発見しました。" + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + }, + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"このリストを掃除:" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$時間前にアップデートしました", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"AdBlock 以外の全ての拡張機能の隣にある「有効」チェックボックスのチェックを外してください。 AdBlock は有効のままにしてください。" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"戻る" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"フィルターリストへのリンクを表示する:" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"英語のみ" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"キャンセル" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock設定" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"周りに広める" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"ベータ" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages AdBlock won't run on." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Firefoxでも表示されるかどうかをチェックしてください $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"必要以上に登録をしないでください。追加する度に重くなりますので!リストの作成者、その他のリストはこちら。" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"このフィルターリストを適用し、ページを更新して要素が消去できたか確認してください。 $list_title$", + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"アップデートを確認中 (数秒しかからないはずです)..." + }, + "filterhungarian":{ + "description":"language", + "message":"ハンガリー語" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"適用するドメインを入力" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"アップデートされました" + }, + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$分前にアップデートしました", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"広告を報告するには、インターネットに接続されていなければなりません。" + "lang_czech":{ + "description":"language", + "message":"チェコ語" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"質問、または新たなアイディアがありますか?" + "filterswedish":{ + "description":"A filter list", + "message":"スウェーデン語" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock サポート" }, - "yes":{ - "description":"A positive response to a question", - "message":"はい" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Type" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "filtereasylist_plus_french":{ + "description":"language", + "message":"フランス語" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"決定" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1分前アップデートしました" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (推奨)" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - 詳細はこちら" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run AdBlock on..." } } \ No newline at end of file diff --git a/_locales/ko/messages.json b/_locales/ko/messages.json index fb1ea7da..0b9315ba 100644 --- a/_locales/ko/messages.json +++ b/_locales/ko/messages.json @@ -1,884 +1,855 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - 미차단 광고 보고" + "filterdanish":{ + "description":"language", + "message":"덴마크어" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"광고 차단 필터 목록" + "spread_the_word":{ + "description":"Text of a share link", + "message":"SNS를 통해 공유하기" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"사이트 : " + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"질문 또는 제안할 게 있나요?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"특정 YouTube 채널에 대한 화이트리스트 허용" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"구독 필터를 가져오는 중이니 잠시만 기다려주십시오..." + }, + "filterjapanese":{ + "description":"language", + "message":"일본어" }, "filterannoyances":{ "description":"A filter list", "message":"오빠부대 성가심 (웹상에 성가신 요소 제거)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - 상세 내용 보기" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"이 페이지에서 $count$", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"올바르지 않은 URL은 삭제됩니다." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"브라우져를 통해 광고가 노출된 사이트에 접속하십시오." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"폴란드어" }, - "filterswedish":{ - "description":"A filter list", - "message":"스웨덴어" + "generaloptions":{ + "description":"Title of first tab page", + "message":"일반 옵션" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"형식" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"차단 필터 추가" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS와 일치하는 요소 숨김" }, - "lang_russian":{ - "description":"language", - "message":"러시아어" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"닫기" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"자발적 기부" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"체크하지 않음" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"구독 중지" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"다음 사이트를 허용합니다." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"그리스어" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"비지정 사이트 허용 필터" }, - "filterchinese":{ + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"주의 : 필터를 잘못 작성하면 웹 페이지에 이상 증상이 발생하거나 페이지를 불러오는 속도가 느려질 수 있습니다!
필터 작성 방법은 표준화된 필터 정보를 제공하는 애드블록 플러스 홈페이지를 참고하십시오 : 바로가기" + }, + "lang_slovak":{ "description":"language", - "message":"중국어" + "message":"슬로바키아어" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"요소 숨김 필터" + "yes":{ + "description":"A positive response to a question", + "message":"예" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"비디오와 플래시" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"악성 코드로부터 보호" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"광고가 브라우져를 통해 노출되어있습니까?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"광고를 숨기기 위해 필요한 속성을 지정하십시오." + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"마지막 단계 : 속성 지정" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial 필터 목록 (소셜 미디어 버튼 제거)" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"현재 페이지 허용" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"뒤로" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"루마니아어" }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"버튼을 보이지 않게 하려면 버튼 위에 마우스 오른쪽 버튼을 클릭한 후 Hide Button 을 선택하십시오. chrome://chrome/extensions 에서 다시 보이도록 설정할 수 있습니다." }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"사용자가 지정한 필터로 광고를 차단/허용할 수 있습니다." + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"소스 코드는 무료로 배포됩니다." + "filterisraeli":{ + "description":"language", + "message":"히브리어" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "other":{ + "description":"Multiple choice option", + "message":"기타 언어" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterczech":{ + "description":"Language names for a filter list", + "message":"체코어와 스로바키아어" + }, + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + }, + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"기타 필터 목록" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"옵션" + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"자동으로 업데이트 됩니다. 또한 바로 업데이트 가능합니다. " + }, + "typeunknown":{ + "description":"A resource type", + "message":"기타" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"사이트/페이지 허용 필터" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"현재 페이지에서 1개 요소와 일치합니다." - }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"주의 : 필터를 잘못 작성하면 웹 페이지에 이상 증상이 발생하거나 페이지를 불러오는 속도가 느려질 수 있습니다!
필터 작성 방법은 표준화된 필터 정보를 제공하는 애드블록 플러스 홈페이지를 참고하십시오 : 바로가기" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"구독 필터를 가져오는데 실패했습니다!" + "filterturkish":{ + "description":"A filter list", + "message":"터키어" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"일반 옵션" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"다음 사이트를 허용합니다." + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"과도하게 많은 구독 필터를 애드블록에 추가하면 인터넷 성능이 저하될 수 있습니다." }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"현재 이 언어에 대한 구독 필터를 지원하지 않습니다.
이 언어를 지원하는 적절한 구독 필터를 찾아보십시오 : $link$
그렇지 않으면 사용자 필터를 추가하십시오.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"추가" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"고급사용자 옵션 보기" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"숨기려는 광고를 클릭하십시오." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"차단 필터" + "typestylesheet":{ + "description":"A resource type", + "message":"스타일시트" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"툴바 버튼 숨기기" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock 업데이트" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"자동으로 업데이트 됩니다. 또한 바로 업데이트 가능합니다. " + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"광고를 차단하기 위해 문맥 메뉴로 광고 영역을 숨기거나 사용자 필터를 직접 추가하십시오." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"최신의 구독 필터로 업데이트합니다. 업데이트" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"죄송합니다. 구독 필터에 의해 허용된 페이지입니다." }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"형식 : ~site1.com|~site2.com|~news.site3.org" + "updateddayago":{ + "description":"Label for subscription", + "message":"1일 전에 업데이트됨" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"사용 중지됨." + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"현재 페이지에서 $matchcount$개 요소와 일치합니다.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"AdBlock에 이바지하는 사람들을 소개하는 페이지 또한 확인할 수 있습니다. " + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"필터가 지정되지 않았습니다!" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"인도네시아어" + "filtereasylist_plus_german":{ + "description":"language", + "message":"독일어" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"형식" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"구독 필터 목록" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock 업데이트가 준비되어있습니다! $here$에서 업데이트 하십시오.
참고: 자동으로 업데이트 하고 싶다면, Safari > Preferences > Extensions > Updates
를 클릭하고 '자동으로 업데이트 설치' 옵션에 체크하세요.", + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"AdBlock 을 제외한 모든 익스텐션 옆의 '사용' 체크박스 해제. AdBlock 사용을 유지함." + }, + "filtereasylist_plus_greek":{ + "description":"language", + "message":"그리스어" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"$seconds$초 전에 업데이트됨", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "filterturkish":{ + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"속성 지정 후 '추가' 버튼을 누르십시오.
" + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"브라우져를 통해 광고가 노출된 사이트에 접속하십시오." + }, + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"지원 사이트를 통해 알려주시기 바랍니다." + }, + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"지정된 사이트를 제외한 모든 사이트의 광고 허용" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"사용자 필터" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"광고리포트를 전송하시려면 인터넷에 접속되어있어야 합니다." + }, + "buttonok":{ + "description":"OK button", + "message":"확인" + }, + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"요소 숨김 필터" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"터키어" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"이게 뭐죠?" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - 미차단 광고 보고" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"불가리아어" + }, + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"새로이 갱신된 내용이 궁금하신가요? 변경이력에서 확인하세요! " + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"사이트 허용" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"사용자 설정 필터 목록" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"구독 필터를 구독한 후 미차단 광고차단 오류가 있으면 해당 국가별 필터 유지자에게 신고하십시오.
필터 유지자 연락처 및 전체 구독 필터 목록 : 바로가기
비슷한 기능을 하는 구독 필터가 많으면 느려질 수 있으니 필요한 구독 필터만 추가하십시오." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"차단 필터 추가" }, - "typestylesheet":{ - "description":"A resource type", - "message":"스타일시트" + "lang_ukranian":{ + "description":"language", + "message":"우크라이나어" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"제거" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"이 질문은 여러분의 리포트를 접수할 사람을 가려내기 위함입니다. 답변이 정확하지 않을 시 엉뚱한 사람에게 리포트가 전달될 수 있고, 따라서 처리되지 않을 수 있게 됩니다." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"광고를 차단하지 않을 사이트 또는 페이지의 URL을 입력하십시오." }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"폴란드어" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"경고 : 필터가 지정되지 않았습니다!" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"마우스 오른쪽 버튼 메뉴에 메뉴 아이템 추가" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"다음 텍스트를 포함하는 URL 차단" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"마우스 커서가 위치해 있는 광고 숨기기" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"허용" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"$hours$시간 전에 업데이트됨", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Firefox $chrome$ 에서 확인", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"$seconds$초 전에 업데이트됨", + "savebutton":{ + "description":"Save button", + "message":"저장" + }, + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"$host$ 에서 생성한 $count$ 개의 차단내역을 삭제하시겠습니까?", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"우리 팀으로부터 디버깅 정보를 요청받으셨나요? 여기를 클릭해주세요." - }, - "typeobject":{ - "description":"A resource type", - "message":"객체" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "filterhungarian":{ - "description":"language", - "message":"헝가리어" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"올바르지 않은 URL은 삭제됩니다." + "buttonlooksgood":{ + "description":"Looks good button", + "message":"선택" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"참고: 여러분께서 제공하신 정보는 공개되어질 수 있습니다. 내용 작성 시 개인정보에 대해 유의하시기 바랍니다. " + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"페이지를 다시 로드합니다." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"사용자 필터 관리" }, - "typepage":{ - "description":"A resource type", - "message":"페이지" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Hulu.com 동영장 재생 안되는 문제 해결 (브라우져 재시작 필요함)" }, - "filterdutch":{ + "filtereasylist_plus_finnish":{ "description":"language", - "message":"네덜란드어" - }, - "savereminder":{ - "description":"Reminder to press save", - "message":"저장하는 것을 잊지마십시오!" + "message":"핀란드어" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ : $value$", + "updateddaysago":{ + "description":"Label for subscription", + "message":"$days$일 전에 업데이트됨", "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" + "days":{ + "content":"$1", + "example":"15" } } }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"닫기" - }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"숨기려는 요소 :
" + "typeobject":{ + "description":"A resource type", + "message":"객체" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" - }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"경고 : 필터가 지정되지 않았습니다!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"허용된 페이지" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"비지정 사이트 허용 필터" - }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"옵션" - }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"사이트 허용" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"구독 필터를 가져오는 중이니 잠시만 기다려주십시오..." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"광고를 숨기기 위해 필요한 속성을 지정하십시오." }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"차단된 광고들:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock custom filters (애드블록 구독 필터)" - }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"플래시나 다른 플러그인의 내부 광고 차단 기능은 아직 지원하지 않습니다. 브라우저와 웹키트에서 그 기능을 지원하기를 기다리고 있습니다." - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"다른 언어로 필터 추가: " - }, - "filterlatvian":{ - "description":"A filter list", - "message":"라트비아어" - }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"다음 텍스트를 포함하는 URL 차단" + "typemain_frame":{ + "description":"A resource type", + "message":"페이지" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS와 일치하는 요소 숨김" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"한국어" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"버튼을 보이지 않게 하려면 opera://extensions 에 접속하여 'Hide from toolbar' 옵션을 체크하십시오. 해당 옵션에 대한 체크를 해제하므로써 다시 보이도록 설정할 수 있습니다." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"해당 도메인에 대한 제한 풀기" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"숨기려는 광고를 클릭하십시오." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"사용자 필터 목록" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"필터 목록에 링크 표시" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"미차단 광고 보고" + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (영어권 기본 구독 필터)" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"속성 지정 후 '추가' 버튼을 누르십시오.
" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"1단계 : 숨기려는 요소 선택" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"AdBlock에 이바지하는 사람들을 소개하는 페이지 또한 확인할 수 있습니다. " }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"사이트 : " }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"러시아어와 우크라이나어" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"여기" }, - "typescript":{ + "typepopup":{ "description":"A resource type", - "message":"스크립트" - }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock 지원 방법" - }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"사용자 필터 관리" + "message":"popup" }, "latest_version":{ "description":"On the Options > Support page, shows when there are no updates available for AdBlock", "message":"AdBlock은 현재 최신버젼입니다!" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"사이트 허용" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"페이지를 다시 로드합니다." }, - "filterisraeli":{ - "description":"language", - "message":"히브리어" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"영문 전용" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"죄송합니다. 구독 필터에 의해 허용된 페이지입니다." + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"구버젼의 AdBlock 을 사용하고 있습니다. 익스텐션 으로 가서 '개발자 모드'를 활성화한 후 '익스텐션 바로 업데이트' 를 클릭하세요." }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"사용 중지됨." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"AdBlock 작동 유지" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"해당 도메인에 대한 제한 풀기" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial 필터 목록 (소셜 미디어 버튼 제거)" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"필터를 알맞게 입력한 후 확인을 누르십시오." + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"광고를 찾는 중...

잠시만 기다려주십시오." }, - "updateddayago":{ - "description":"Label for subscription", - "message":"1일 전에 업데이트됨" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"허용된 페이지" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"베타" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"요소 숨김 마법사" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"이 페이지에서 $count$", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1시간 전에 업데이트됨" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"주의 : 지정된 사이트의 광고는 차단하지만 그외 다른 사이트의 광고는 허용합니다." }, - "optionsversion":{ - "description":"Version number", - "message":"$version$ 버전", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock 업데이트가 준비되어있습니다! $here$에서 업데이트 하십시오.
참고: 자동으로 업데이트 하고 싶다면, Safari > Preferences > Extensions > Updates
를 클릭하고 '자동으로 업데이트 설치' 옵션에 체크하세요.", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" - }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"구독 필터 목록" - }, - "other":{ - "description":"Multiple choice option", - "message":"기타 언어" - }, - "typehiding":{ - "description":"A resource type", - "message":"숨겨진 요소" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"구독 필터" - }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"플래시 게임의 광고 또는 비디오 내부와 시작하기 전에 광고와 같이 다른 플러그인에 광고가 존재합니까?" - }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"기타 필터 목록" - }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"또는 Chrome" - }, - "buttonblockit":{ - "description":"Block button", - "message":"추가" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"완료됨!" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock이 어떻게 만들어지는지 궁금하세요?" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"현재 페이지의 광고 숨기기" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock custom filters (애드블록 구독 필터)" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"체크하지 않음" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"형식" }, - "lang_english":{ - "description":"language", - "message":"영어" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"이게 뭐죠?" }, - "tabcustomize":{ + "tabgeneral":{ "description":"A tab on the options page", - "message":"사용자 필터" - }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"사용 중지" - }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"[옵션] 지정된 사이트에만 적용" - }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"한국어" - }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"페이지 : " - }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"버그를 발견하셨나요?" - }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"1단계 : 숨기려는 요소 선택" - }, - "lang_czech":{ - "description":"language", - "message":"체코어" - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"과도하게 많은 구독 필터를 애드블록에 추가하면 인터넷 성능이 저하될 수 있습니다." + "message":"일반" }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"또는 Chrome 전용 AdBlock" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"요소 숨김 마법사" - }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" - }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" - }, - "filterdanish":{ - "description":"language", - "message":"덴마크어" - }, - "typesub_frame":{ - "description":"A resource type", - "message":"프레임" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"편집" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"한국어 번역 공헌자 :" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"광고를 찾는 중...

잠시만 기다려주십시오." + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"형식 : ~site1.com|~site2.com|~news.site3.org" }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"광고를 차단하지 않을 사이트 또는 페이지의 URL을 입력하십시오." + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"업데이트 확인 중(몇 초 이내에 곧 끝납니다)..." + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"비디오와 플래시" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"해당 페이지에 AdBlock 적용" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"사용자가 지정한 필터로 광고를 차단/허용할 수 있습니다." }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"총 $count$", + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"광고가 있는 웹 페이지를 새로 고치십시오." + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"또는 Chrome" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Firefox $chrome$ 이 없다면 설치하십시오.", + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"추가" + }, + "pwyw":{ + "description":"Text of a payment request link", + "message":"자발적 기부" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"이것은 구독 필터의 문제이며, 그것을 신고해주십시오 : $link$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock 업데이트" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"숨기려는 요소 :
" }, - "no":{ - "description":"A negative response to a question", - "message":"아니오" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"참고: 여러분께서 제공하신 정보는 공개되어질 수 있습니다. 내용 작성 시 개인정보에 대해 유의하시기 바랍니다. " }, - "lang_ukranian":{ - "description":"language", - "message":"우크라이나어" + "typepage":{ + "description":"A resource type", + "message":"페이지" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$분 전에 업데이트됨", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ + "adstillappear":{ + "description":"Question on ad report page", + "message":"광고가 여전히 존재합니까?" + }, + "typeother":{ + "description":"A resource type", + "message":"other" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"최신의 구독 필터로 업데이트합니다. 업데이트" + }, + "filteritalian":{ "description":"language", - "message":"프랑스어" + "message":"이탈리아어" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"혹시 차단되어야 할 광고가 보여지고 있다면 버그 리포트 대신 광고 리포트를 해주시기 바랍니다." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"버튼을 보이지 않게 하려면 opera://extensions 에 접속하여 'Hide from toolbar' 옵션을 체크하십시오. 해당 옵션에 대한 체크를 해제하므로써 다시 보이도록 설정할 수 있습니다." + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"업데이트 확인 중 문제가 발생했습니다." + }, + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Safari menu → Preferences → Extensions 클릭." }, "typeobject_subrequest":{ "description":"A resource type", "message":"object_subrequest" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"지금 업데이트됨" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"페이지 : " }, - "savebutton":{ - "description":"Save button", - "message":"저장" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"주의 : 지정된 사이트의 광고는 차단하지만 그외 다른 사이트의 광고는 허용합니다." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"광고가 있는 웹 페이지를 새로 고치십시오." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"구독 필터를 추가하는 중..." + "unsubscribedlabel":{ + "description":"Status label", + "message":"구독 중지" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$일 전에 업데이트됨", + "typemedia":{ + "description":"A resource type", + "message":"오디오/비디오" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"프레임" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy" - }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"체코어와 스로바키아어" + "message":"라트비아어" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"구버젼의 AdBlock 을 사용하고 있습니다. 익스텐션 으로 가서 '개발자 모드'를 활성화한 후 '익스텐션 바로 업데이트' 를 클릭하세요." + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"현재 페이지의 광고 숨기기" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock - 애드블록 옵션" + "buttonblockit":{ + "description":"Block button", + "message":"추가" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"위 목록 삭제" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"허용 필터 추가" }, - "debuginlogoption":{ + "allow_whitelisting_youtube_channels":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"콘솔 로그에 차단/요소 숨김 상태 기록 (애드블록의 필터 처리 속도가 느려짐)" + "message":"특정 YouTube 채널에 대한 화이트리스트 허용" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"AdBlock 작동 유지" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"웹 페이지가 어떤 언어로 작성되었습니까?" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"독일어" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"미차단 광고 보고" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"주의 : 이 필터는 $elementtype$ 요소를 모두 숨깁니다!", - "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" - } - } + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"제거" }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"여기" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"구독 필터를 가져오는데 실패했습니다!" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Hulu.com 동영장 재생 안되는 문제 해결 (브라우져 재시작 필요함)" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"플래시나 다른 플러그인의 내부 광고 차단 기능은 아직 지원하지 않습니다. 브라우저와 웹키트에서 그 기능을 지원하기를 기다리고 있습니다." }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"허용" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"웹 페이지가 어떤 언어로 작성되었습니까?" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"슬라이더를 움직여 광고 허용 사이트의 범위를 조절하십시오." }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "typehiding":{ + "description":"A resource type", + "message":"숨겨진 요소" + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"플래시 게임의 광고 또는 비디오 내부와 시작하기 전에 광고와 같이 다른 플러그인에 광고가 존재합니까?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"러시아어와 우크라이나어" + }, + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"스페인어" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"마우스 커서가 위치해 있는 광고 숨기기" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"$host$ 에서 생성한 $count$ 개의 차단내역을 삭제하시겠습니까?", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"주의 : 이 필터는 $elementtype$ 요소를 모두 숨깁니다!", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "typeimage":{ - "description":"A resource type", - "message":"이미지" + "no":{ + "description":"A negative response to a question", + "message":"아니오" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"한국어 번역 공헌자 :" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"해당 페이지에 AdBlock 적용" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"로딩 중..." + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"다음 필터는 옵션 페이지에서 변경할 수 있습니다." }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"광고를 차단하기 위해 문맥 메뉴로 광고 영역을 숨기거나 사용자 필터를 직접 추가하십시오." + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"툴바 버튼 숨기기" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"버튼을 보이지 않게 하려면 버튼 위에 마우스 오른쪽 버튼을 클릭한 후 Hide Button 을 선택하십시오. chrome://chrome/extensions 에서 다시 보이도록 설정할 수 있습니다." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"실패함" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"사용 중지" }, - "filtereasylist_plus_romanian":{ + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"$list_title$를 구독한 후 웹 페이지를 다시 열어보십시오.", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } + }, + "lang_english":{ "description":"language", - "message":"루마니아어" + "message":"영어" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"마우스 오른쪽 버튼 메뉴에 메뉴 아이템 추가" }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"업데이트 확인 중 문제가 발생했습니다." + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"옵션 페이지에 이 광고를 차단할 수 있는 필터를 추가할 수 있습니다. 고맙습니다!" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1분 전에 업데이트됨" + "lang_russian":{ + "description":"language", + "message":"러시아어" }, - "typemain_frame":{ - "description":"A resource type", - "message":"페이지" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"혹시 차단되어야 할 광고가 보여지고 있다면 버그 리포트 대신 광고 리포트를 해주시기 바랍니다." }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"구버젼의 Safari를 사용중입니다. 최신 버젼을 사용하면 AdBlock을 일시적으로 멈추고, 웹사이트들에 대한 화이트리스트를 작성하거나, 광고 리포트를 작성하기 위한 AdBlock 툴바 버튼을 사용할 수 있게 됩니다. 지금 업그레이드" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ : $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -886,253 +857,322 @@ "description":"Link for custom subscription", "message":"구독 필터의 URL : " }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"구버젼의 Safari를 사용중입니다. 최신 버젼을 사용하면 AdBlock을 일시적으로 멈추고, 웹사이트들에 대한 화이트리스트를 작성하거나, 광고 리포트를 작성하기 위한 AdBlock 툴바 버튼을 사용할 수 있게 됩니다. 지금 업그레이드" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"완료됨!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- 언어 선택 -- " + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"다른 언어로 필터 추가: " }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"로딩 중..." }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Safari menu → Preferences → Extensions 클릭." + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"우리 팀으로부터 디버깅 정보를 요청받으셨나요? 여기를 클릭해주세요." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"허용 필터 추가" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock이 어떻게 만들어지는지 궁금하세요?" + "filtermalware":{ + "description":"A filter list", + "message":"악성 코드로부터 보호" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"광고가 여전히 존재합니까?" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"지원" + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"콘솔 로그에 차단/요소 숨김 상태 기록 (애드블록의 필터 처리 속도가 느려짐)" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"불가리아어" + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Firefox $chrome$ 이 없다면 설치하십시오.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"실패함" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"웹 페이지의 광고가 숨겨질 때까지 슬라이더를 움직이십시오.
" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"다음 필터는 옵션 페이지에서 변경할 수 있습니다." + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"AdBlock 이 허용하는 저장공간을 초과했습니다. 일부 필터 목록을 삭제해주시기 바랍니다." }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"사용자 필터 목록" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"버그를 발견하셨나요?" }, - "filteritalian":{ - "description":"language", - "message":"이탈리아어" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "typepopup":{ + "typescript":{ "description":"A resource type", - "message":"popup" + "message":"스크립트" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"웹 페이지의 광고가 숨겨질 때까지 슬라이더를 움직이십시오.
" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"새로이 갱신된 내용이 궁금하신가요? 변경이력에서 확인하세요! " + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"구독 필터" }, - "lang_slovak":{ + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"고급사용자 옵션 보기" + }, + "filterchinese":{ "description":"language", - "message":"슬로바키아어" + "message":"중국어" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"광고가 브라우져를 통해 노출되어있습니까?" + "typeimage":{ + "description":"A resource type", + "message":"이미지" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"현재 페이지 허용" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"구독 필터를 추가하는 중..." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"지정된 사이트를 제외한 모든 사이트의 광고 허용" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"현재 페이지에서 $matchcount$개 요소와 일치합니다.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } + }, + "updatedhourago":{ + "description":"Label for subscription", + "message":"1시간 전에 업데이트됨" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"지원 사이트를 통해 알려주시기 바랍니다." + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- 언어 선택 -- " }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"마지막 단계 : 속성 지정" + "typesubdocument":{ + "description":"A resource type", + "message":"프레임" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"AdBlock 이 허용하는 저장공간을 초과했습니다. 일부 필터 목록을 삭제해주시기 바랍니다." + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"인도네시아어" }, "blacklistereditinvalid1":{ "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", "message":"필터가 올바르지 않습니다. $exception$", "placeholders":{ "exception":{ - "example":"This filter is not supported", - "content":"$1" + "content":"$1", + "example":"This filter is not supported" } } }, - "buttonok":{ - "description":"OK button", - "message":"확인" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"편집" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"옵션 페이지에 이 광고를 차단할 수 있는 필터를 추가할 수 있습니다. 고맙습니다!" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "tabgeneral":{ + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"총 $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } + }, + "tabsupport":{ "description":"A tab on the options page", - "message":"일반" + "message":"지원" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"차단 필터" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "buttoncancel":{ + "description":"Cancel button", + "message":"취소" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "savereminder":{ + "description":"Reminder to press save", + "message":"저장하는 것을 잊지마십시오!" }, - "typeother":{ - "description":"A resource type", - "message":"other" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"필터가 지정되지 않았습니다!" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "optionsversion":{ + "description":"Version number", + "message":"$version$ 버전", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"기타" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "filtereasylist_plus_finnish":{ - "description":"language", - "message":"핀란드어" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"이 질문은 여러분의 리포트를 접수할 사람을 가려내기 위함입니다. 답변이 정확하지 않을 시 엉뚱한 사람에게 리포트가 전달될 수 있고, 따라서 처리되지 않을 수 있게 됩니다." }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"광고 차단 필터 목록" }, - "typemedia":{ - "description":"A resource type", - "message":"오디오/비디오" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"소스 코드는 무료로 배포됩니다." }, - "filterjapanese":{ + "filterdutch":{ "description":"language", - "message":"일본어" + "message":"네덜란드어" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"이것은 구독 필터의 문제이며, 그것을 신고해주십시오 : $link$", + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"필터를 알맞게 입력한 후 확인을 누르십시오." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"현재 페이지에서 1개 요소와 일치합니다." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + }, + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"위 목록 삭제" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$시간 전에 업데이트됨", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"AdBlock 을 제외한 모든 익스텐션 옆의 '사용' 체크박스 해제. AdBlock 사용을 유지함." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"뒤로" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"필터 목록에 링크 표시" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"영문 전용" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"취소" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock - 애드블록 옵션" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"SNS를 통해 공유하기" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"베타" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"슬라이더를 움직여 광고 허용 사이트의 범위를 조절하십시오." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Firefox $chrome$ 에서 확인", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"구독 필터를 구독한 후 미차단 광고차단 오류가 있으면 해당 국가별 필터 유지자에게 신고하십시오.
필터 유지자 연락처 및 전체 구독 필터 목록 : 바로가기
비슷한 기능을 하는 구독 필터가 많으면 느려질 수 있으니 필요한 구독 필터만 추가하십시오." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"$list_title$를 구독한 후 웹 페이지를 다시 열어보십시오.", + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"업데이트 확인 중(몇 초 이내에 곧 끝납니다)..." + }, + "filterhungarian":{ + "description":"language", + "message":"헝가리어" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"[옵션] 지정된 사이트에만 적용" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"지금 업데이트됨" + }, + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$분 전에 업데이트됨", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"광고리포트를 전송하시려면 인터넷에 접속되어있어야 합니다." + "lang_czech":{ + "description":"language", + "message":"체코어" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"질문 또는 제안할 게 있나요?" + "filterswedish":{ + "description":"A filter list", + "message":"스웨덴어" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock 지원 방법" }, - "yes":{ - "description":"A positive response to a question", - "message":"예" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"형식" }, - "filtereasylist_plus_spanish":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"스페인어" + "message":"프랑스어" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"선택" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1분 전에 업데이트됨" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (영어권 기본 구독 필터)" + "typesub_frame":{ + "description":"A resource type", + "message":"프레임" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - 상세 내용 보기" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"사이트 허용" } } \ No newline at end of file diff --git a/_locales/nb/messages.json b/_locales/nb/messages.json index f1447ef9..770b9147 100644 --- a/_locales/nb/messages.json +++ b/_locales/nb/messages.json @@ -1,897 +1,943 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Rapporter en annonse" + "filterdanish":{ + "description":"language", + "message":"Dansk" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Liste over annonsefiltre" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Hjelp oss å spre ordet!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Side:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Har du et spørsmål eller en idé?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Ikke blokker annonser på bestemte YouTube-kanaler" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Vi kan ikke finne skadevare vi kjenner igjen." + "fetchinglabel":{ + "description":"Status label", + "message":"Henter... vennligst vent." }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"I den nettleseren, abonner på de samme filterlistene som her." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Generelt" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - Klikk for mer informasjon" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (fjerner irritasjonsmomenter på nettet)" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ på denne siden", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"I den nettleseren, last inn nettsiden med annonsen." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Ugyldig liste-URL. Den vil bli slettet." }, - "filterswedish":{ - "description":"A filter list", - "message":"Svensk" + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polsk" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Hva er nytt i den siste versjonen? Se oppdateringloggen!" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Generelle innstillinger" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokker flere annonser:" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "lang_russian":{ - "description":"language", - "message":"Russisk" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS til å samsvare med" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Betal det du vil!" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Lukk" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Avmeldt." + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Jeg vil ikke sjekke dette." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokker en annonse ved dens URL" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock vil ikke kjøre på disse sidene:" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Gresk" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Vis reklame overalt unntatt på disse domenene..." }, - "filterchinese":{ + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Vær forsiktig: hvis du gjør en feil her kan mange andre filtere, inkludert de offisielle, bli ødelagt!
Les filtersyntax-veiledningen for å lære hvordan du kan legge til avanserte svarteliste- og hvitelistefiltere." + }, + "lang_slovak":{ "description":"language", - "message":"Kinesisk" + "message":"Slovakisk" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Skjul en del av en nettside" + "yes":{ + "description":"A positive response to a question", + "message":"Ja" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videoer og Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Beskyttelse mot skadelig programvare" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Vises reklamen også i den nettleseren?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Tror du dette vil være sant om annonsen hver gang du besøker denne siden?" + "savebutton":{ + "description":"Save button", + "message":"Lagre" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Aktiver AdBlock på denne siden" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Ikke kjør på denne siden" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Tilbake" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Rumensk" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Vis antall annonser blokkert på AdBlock-knappen" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"For å skjule knappen, høyreklikk og velg Skjul knappen. Du kan vise den igjen ved å skrive chrome://extensions/ i adresselinjen." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterlatvian":{ - "description":"A filter list", - "message":"Latvisk" + "filterisraeli":{ + "description":"language", + "message":"Hebraisk" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Filterlistene blokkerer de fleste annonsene på nettet. Du kan også:" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Denne AdBlock-funksjonen virker ikke fordi den bruker gammel teknologi. Du kan svarteliste eller hviteliste ressurser manuelt under Tilpass-fanen på Alternativer-siden." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Kildekoden er fritt tilgjengelig !" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tsjekkisk og slovakisk" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Andre filtre" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Valg" + }, + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Datamaskinen din kan være infisert av skadevare. Klikkher for mer informasjon." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Jeg vil laste ned oppdateringer automatisk; du kan også oppdatere nå" + }, + "typeunknown":{ + "description":"A resource type", + "message":"ukjent" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Vis annonser på en nettside eller domene" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Det samsvarer med ett element på denne siden." + "filterturkish":{ + "description":"A filter list", + "message":"Tyrkisk" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Vær forsiktig: hvis du gjør en feil her kan mange andre filtere, inkludert de offisielle, bli ødelagt!
Les filtersyntax-veiledningen for å lære hvordan du kan legge til avanserte svarteliste- og hvitelistefiltere." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Hvitelist kanalen $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Jo flere lister du velger, dess tregere kjører AdBlock. Hvis du bruker for mange lister, kan nettleseren slutte å virke på noen sider. Trykk OK for å abonnere på listen uansett." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Abonner på denne filterlisten, og prøv igjen: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Generelle innstillinger" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Datamaskinen din kan være infisert av skadevare. Klikkher for mer informasjon." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock vil ikke kjøre på disse sidene:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Vi har ikke en standard filerliste for det språket.
Vennligst prøv å finne en passende liste som støtter dette språket $link$ eller blokker denne annonsen kun for deg selv på 'Tilpass'-fanen.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Abboner" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Jeg er en erfaren bruker, vis meg avanserte innstillinger" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klikk på annonsen, så hjelper jeg deg med å blokkere den." }, - "lang_czech":{ - "description":"language", - "message":"Tsjekkisk" + "typestylesheet":{ + "description":"A resource type", + "message":"stildefinisjon" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Skjul denne knappen" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock-oppdateringer" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Jeg vil laste ned oppdateringer automatisk; du kan også oppdatere nå" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Beklager, AdBlock er deaktivert på denne siden av en av dine filerlister." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Trykk her: Oppdater filtere!" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Skal AdBlock varsle deg når skadelig programvare oppdages?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~side1.no|~side2.com|~nyheter.side3.org" + "updateddayago":{ + "description":"Label for subscription", + "message":"oppdatert for en dag siden" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Siste steg: Hva gjør dette til en annonse?" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Det samsvarer med $matchcount$ elementer på denne siden.", + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + }, + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Ingen filtre valgt!" + }, + "filtereasylist_plus_german":{ + "description":"language", + "message":"Tysk" + }, + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Abonner på filterlister" + }, + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Gresk" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"oppdatert for $seconds$ sekunder siden", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Vi har en side som hjelper deg med å finne folkene bak AdBlock også!" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Ikke sikker? bare klikk 'Blokker!' nedenfor." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesisk" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"I den nettleseren, last inn nettsiden med annonsen." }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Type" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"La oss få vite det på vår støtteside!" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Det er en oppdatering tilgjengelig for AdBlock. Klikk $here$ for å oppdatere.
Merk: Hvis du vil ha automatiske oppdateringer, klikk på Safari -> Innstillinger -> Utvidelser -> Oppdateringer
og huk av for \"installer oppdateringer automatisk\".", + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokker kun annonser på disse sidene:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Tilpass" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"For å rapportere en annonse, må du være tilkoblet Internett." + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Hvitelist kanalen $name$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "filterturkish":{ + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Skjul en del av en nettside" + }, + "typesubdocument":{ + "description":"A resource type", + "message":"ramme" + }, + "catblock_filteradblock_custom":{ "description":"A filter list", - "message":"Tyrkisk" + "message":"CatBlock custom filters (recommended)" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Hva er dette?" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Vis antall annonser blokkert i AdBlock-menyen" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Rapporter en annonse" + }, + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgarsk" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Deaktiver på sider under dette domenet" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"Egendefinerte filterlister" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Ikke abonner på flere enn du trenger -- hver liste bremser deg ned bittelitt! Bidragsytere og flere lister finner du her." + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokker flere annonser:" }, - "typestylesheet":{ - "description":"A resource type", - "message":"stildefinisjon" + "lang_ukranian":{ + "description":"language", + "message":"Ukrainsk" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Ikke sikker? bare klikk 'Blokker!' nedenfor." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Type" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Formålet med dette spørsmålet er å avgjøre hvem som skal motta rapporten. Hvis du svarer på dette spørsmålet feil, vil rapporten sendes til feil person, så det kan bli ignorert." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polsk" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domenet eller urlen hvor AdBlock ikke skal blokkere noe" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Legg til elementer på høyreklikkmenyen" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Ikke kjør AdBlock på..." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokker denne annonsen" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokker URLer som inneholder denne teksten" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"oppdatert for $hours$ timer siden", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Ekskluder" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"oppdatert for $seconds$ sekunder siden", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Sjekk i Firefox $chrome$", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Har vårt team etterspurt feilsøkingsinfo? Klikk herfor det!" - }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Siste steg: Hva gjør dette til en annonse?" }, - "filterhungarian":{ - "description":"language", - "message":"Ungarsk" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Ugyldig liste-URL. Den vil bli slettet." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Merk: rapporten din kan bli offentlig tilgjengelig. Husk det før du inkluderer noe privat." + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Ser bra ut" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Last inn siden på nytt." + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "typepage":{ - "description":"A resource type", - "message":"side" + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Tilpass AdBlock" }, - "filterdutch":{ - "description":"language", - "message":"Nederlandsk" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Vi kan ikke finne skadevare vi kjenner igjen." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Ikke glem å lagre!" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Rett en feil som gjør at video ikke spilles på Hulu.com (krever omstart av nettleseren)" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ kommer til å være $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finsk" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Lukk" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Skjul denne knappen" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokkert element:" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Liste over annonsefiltre" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filteret er ugyldig: $exception$", + "updateddaysago":{ + "description":"Label for subscription", + "message":"oppdatert for $days$ dager siden", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Advarsel: intet filter valgt!" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Skal AdBlock varsle deg når skadelig programvare oppdages?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Vis reklame overalt unntatt på disse domenene..." + "typeobject":{ + "description":"A resource type", + "message":"interaktivt objekt" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Denne AdBlock-funksjonen virker ikke fordi den bruker gammel teknologi. Du kan svarteliste eller hviteliste ressurser manuelt under Tilpass-fanen på Alternativer-siden." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Tror du dette vil være sant om annonsen hver gang du besøker denne siden?" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Vis antall annonser blokkert i AdBlock-menyen" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Blokkerte annonser:" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Valg" + "typemain_frame":{ + "description":"A resource type", + "message":"side" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Ikke kjør AdBlock på..." + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Koreansk" }, - "fetchinglabel":{ - "description":"Status label", - "message":"Henter... vennligst vent." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Angre all blokkering på dette domene" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Manuelt endre dine filtere:" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Blokkerte annonser:" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Vis linker til filterlistene" }, - "filteradblock_custom":{ + "filtereasylist":{ "description":"A filter list", - "message":"AdBlock-tilpassede filtre (anbefalt)" + "message":"EasyList (anbefalt)" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Legg til filter for et annet språk: " + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Steg 1: Finn ut hva du skal blokkere." }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (fjerner irritasjonsmomenter på nettet)" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Vi har en side som hjelper deg med å finne folkene bak AdBlock også!" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"De tidligere deaktiverte utvidelsene har blitt aktivert igjen." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Side:" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS til å samsvare med" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"her" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"For å fjerne knappen, gå til opera://extensions og sett en markering i boksen ved menylinjen \"Skjul fra verktøylinjen\" . For å vise knappen igjen må markeringen du satte ved menylinjen fjernes ." + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klikk på annonsen, så hjelper jeg deg med å blokkere den." + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Hvis du ser en annonse, ikke send en feilrapport. Send en annonserapport i stedet!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock er oppdatert!" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Rapporter en annonse på denne siden" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Last inn siden på nytt." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Bare Engelsk" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Du bruker en gammel versjon av AdBlock. Vennligst gå til utvidelsessiden, aktiver 'Utviklermodus' og klikk 'Oppdater utvidelser nå'" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock er satt på pause." }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russisk og ukrainsk" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ELLER så kan du bare klikke på denne knappen, så fikser vi alt: Deaktiver alle andre utvidelser" }, - "typescript":{ - "description":"A resource type", - "message":"skript" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Hva er nytt i den siste versjonen? Se oppdateringloggen!" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock Støtte" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisosial filterliste (tar bort knapper for sosiale media)" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Tilpass AdBlock" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Finner annonser...

Dette tar bare øyeblikk." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock er oppdatert!" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Jeg er en erfaren bruker, vis meg avanserte innstillinger" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ totalt", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"I den nettleseren, abonner på de samme filterlistene som her." }, - "filterisraeli":{ - "description":"language", - "message":"Hebraisk" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokker en annonse" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Beklager, AdBlock er deaktivert på denne siden av en av dine filerlister." + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Advarsel: på alle andre sider vil du se annonser!
Dette overskriver alle andre filtre for disse sidene." }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokker URLer som inneholder denne teksten" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"De tidligere deaktiverte utvidelsene har blitt aktivert igjen." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Angre all blokkering på dette domene" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Vil du se hva som får AdBlock til å virke?" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Venligst skriv det korrekte filteret nedenfor og trykk OK" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock-tilpassede filtre (anbefalt)" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"oppdatert for en dag siden" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Hva er dette?" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ på denne siden", + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "here":{ + "content":"", + "example":"here" } } }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"oppdatert for en time siden" + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"eller AdBlock for Chrome" }, - "optionsversion":{ - "description":"Version number", - "message":"Versjon $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Bidragsytere til oversettelsen:" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Fjern fra liste" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~side1.no|~side2.com|~nyheter.side3.org" }, - "other":{ - "description":"Multiple choice option", - "message":"Annet" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typehiding":{ - "description":"A resource type", - "message":"skjuler" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videoer og Flash" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filterlister" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Filterlistene blokkerer de fleste annonsene på nettet. Du kan også:" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"For å gjemme knappen, høyreklikk på Safaris verktøylinje og velg tilpass verktøylinje. Deretter dra AdBlockknappen ut av verktøylinjen. Du kan vise den igjen ved å dra den tilbake til verktøylinjen" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Vises annonsen i eller før en film eller hvilket som helst annet objekt som et Flash-spill?" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Du har overskredet lagringsplassen i din Dropbox. Vennligst fjern noen oppføringer fra dine egendefinerte eller deaktiverte filter, og prøv igjen." }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Andre filtre" + "filterhungarian":{ + "description":"language", + "message":"Ungarsk" }, "orchrome":{ "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", "message":"eller Chrome" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokker!" - }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Fullført!" - }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokker en annonse på denne siden" - }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Jeg vil ikke sjekke dette." - }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" - }, - "lang_english":{ - "description":"language", - "message":"Engelsk" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Abboner" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Tilpass" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Betal det du vil!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Sett AdBlock på pause" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Rediger deaktiverte filtre:" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Er du sikker på at du vil abonnere på filterlisten $title$?", + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Dette er et filterlisteproblem. Rapporter det her: $link$", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Åpne utvidelses-siden for å aktivere utvidelser som har vært deaktivert." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokkert element:" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domenet til siden den skal påvirke" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Merk: rapporten din kan bli offentlig tilgjengelig. Husk det før du inkluderer noe privat." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Koreansk" + "typepage":{ + "description":"A resource type", + "message":"side" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Side:" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Har du funnet en feil?" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Er den fremdeles der?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Steg 1: Finn ut hva du skal blokkere." + "typeother":{ + "description":"A resource type", + "message":"annet" }, - "catblock_disableallextensions":{ + "clickupdatefilters":{ "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Jo flere lister du velger, dess tregere kjører AdBlock. Hvis du bruker for mange lister, kan nettleseren slutte å virke på noen sider. Trykk OK for å abonnere på listen uansett." - }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"eller AdBlock for Chrome" - }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokker en annonse" - }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" - }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "message":"Trykk her: Oppdater filtere!" }, - "filterdanish":{ + "filteritalian":{ "description":"language", - "message":"Dansk" - }, - "typesub_frame":{ - "description":"A resource type", - "message":"ramme" + "message":"Italiensk" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Rediger" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Finner annonser...

Dette tar bare øyeblikk." + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"For å fjerne knappen, gå til opera://extensions og sett en markering i boksen ved menylinjen \"Skjul fra verktøylinjen\" . For å vise knappen igjen må markeringen du satte ved menylinjen fjernes ." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domenet eller urlen hvor AdBlock ikke skal blokkere noe" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Noe gikk galt under sjekkingen av oppdateringer." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Ser etter oppdateringer (dette bør kun ta et par sekunder)..." + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klikk på Safari-menyen → Innstillinger → Utvidelser." }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Drag glidebryteren helt til annonsen(e) er blokkert riktig på nettsiden, og det blokkerte elementet ser brukbart ut." + "typeobject_subrequest":{ + "description":"A resource type", + "message":"object_subrequest" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Deaktiver på sider under dette domenet" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Side:" + }, + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"Oppdater siden annonsen er på." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installer Firefox $chrome$ hvis du ikke har det.", + "unsubscribedlabel":{ + "description":"Status label", + "message":"Avmeldt." + }, + "typemedia":{ + "description":"A resource type", + "message":"lyd/film" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" + "filterlatvian":{ + "description":"A filter list", + "message":"Latvisk" }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock-oppdateringer" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokker en annonse på denne siden" }, - "no":{ - "description":"A negative response to a question", - "message":"Nei" + "buttonblockit":{ + "description":"Block button", + "message":"Blokker!" }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrainsk" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Stopp blokkering av annonser:" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"oppdatert for $minutes$ minutter siden", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Ikke blokker annonser på bestemte YouTube-kanaler" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Fransk" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Hvilket språk er siden skrevet på?" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ELLER så kan du bare klikke på denne knappen, så fikser vi alt: Deaktiver alle andre utvidelser" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Fjern krysset ved Aktiver ved alle utvidelser unntatt for AdBlock. La AdBlock være aktivert." }, - "typeobject":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Rapporter en annonse på denne siden" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Fjern fra liste" + }, + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" + }, + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Vi kan ikke blokkere annonser inni Flash og andre objekter enda. Vi venter på støtte fra nettleseren og WebKit." + }, + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" + }, + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Du kan skyve under for å endre akkurat hvilke sider AdBlock ikke kjører på." + }, + "typehiding":{ "description":"A resource type", - "message":"interaktivt objekt" + "message":"skjuler" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"oppdatert akkurat nå" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock er deaktivert på denne siden." }, - "savebutton":{ - "description":"Save button", - "message":"Lagre" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Vises annonsen i eller før en film eller hvilket som helst annet objekt som et Flash-spill?" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Advarsel: på alle andre sider vil du se annonser!
Dette overskriver alle andre filtre for disse sidene." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russisk og ukrainsk" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Skru av disse varslene" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Spansk" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Abonner på filterlister..." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokker denne annonsen" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"oppdatert for $days$ dager siden", + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." + }, + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Vær forsiktig: Dette filteret blokkerer alle $elementtype$-elementer på siden!", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"ramme" - }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (beskyttelse av privatliv)" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Aktiver kompatibilitetsmodus for ClickToFlash" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Lær mer om skadelig programvare" + "no":{ + "description":"A negative response to a question", + "message":"Nei" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tsjekkisk og slovakisk" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Aktiver AdBlock på denne siden" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Du bruker en gammel versjon av AdBlock. Vennligst gå til utvidelsessiden, aktiver 'Utviklermodus' og klikk 'Oppdater utvidelser nå'" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filteret, som kan bli forandret under innstillingssiden:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock-innstillinger" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Vis antall annonser blokkert på AdBlock-knappen" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Rydd opp i denne listen" + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Mislyktes!" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisosial filterliste (tar bort knapper for sosiale media)" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Sett AdBlock på pause" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Vis feilsøkningsopplysninger i Konsoll (som vil gjøre AdBlock tregere)" + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Følgende filter:
$filter$
har en feil:
$message$", + "placeholders":{ + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" + } + } }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Du har overskredet lagringsplassen i din Dropbox. Vennligst fjern noen oppføringer fra dine egendefinerte eller deaktiverte filter, og prøv igjen." + "lang_english":{ + "description":"language", + "message":"Engelsk" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Start AdBlock igjen" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Legg til elementer på høyreklikkmenyen" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, du kan fremdeles blokkere denne reklamen selv, under innstillinger. Takk!" }, - "filtereasylist_plus_german":{ + "lang_russian":{ "description":"language", - "message":"Tysk" + "message":"Russisk" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Vær forsiktig: Dette filteret blokkerer alle $elementtype$-elementer på siden!", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Er du sikker på at du vil ta bort $count$ blokkeringene som du har fjernet på $host$?", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"her" - }, - "yes":{ - "description":"A positive response to a question", - "message":"Ja" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Rett en feil som gjør at video ikke spilles på Hulu.com (krever omstart av nettleseren)" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Du bruker en gammel versjon av Safari. Få den siste versjonen for å bruke AdBlock-verktøylinjen for å pause AdBlock, hviteliste nettsider, og rapporter annonser. Oppdater nå." }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Ekskluder" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (beskyttelse av privatliv)" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Hvilket språk er siden skrevet på?" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Er du sikker på at du vil ta bort $count$ blokkeringene som du har fjernet på $host$?", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ kommer til å være $value$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "attribute":{ + "content":"$1", + "example":"class" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "typeimage":{ - "description":"A resource type", - "message":"bilde" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Eller skriv en URL:" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Bidragsytere til oversettelsen:" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Fullført!" + }, + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Start AdBlock igjen" + }, + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Legg til filter for et annet språk: " }, "loading":{ "description":"Generic message displayed during processes that take some time", @@ -901,340 +947,334 @@ "description":"Message at the top of the blacklist options tab", "message":"Høyreklikk på en annonse på en side for å blokkere den -- eller blokker den manuelt her." }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"For å skjule knappen, høyreklikk og velg Skjul knappen. Du kan vise den igjen ved å skrive chrome://extensions/ i adresselinjen." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumensk" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Rediger deaktiverte filtre:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Noe gikk galt under sjekkingen av oppdateringer." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"For å gjemme knappen, høyreklikk på Safaris verktøylinje og velg tilpass verktøylinje. Deretter dra AdBlockknappen ut av verktøylinjen. Du kan vise den igjen ved å dra den tilbake til verktøylinjen" - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"oppdatert for ett minutt siden" - }, - "typemain_frame":{ - "description":"A resource type", - "message":"side" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "filtermalware":{ + "description":"A filter list", + "message":"Beskyttelse mot skadelig programvare" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Vis feilsøkningsopplysninger i Konsoll (som vil gjøre AdBlock tregere)" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installer Firefox $chrome$ hvis du ikke har det.", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Eller skriv en URL:" - }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Du bruker en gammel versjon av Safari. Få den siste versjonen for å bruke AdBlock-verktøylinjen for å pause AdBlock, hviteliste nettsider, og rapporter annonser. Oppdater nå." + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Du har brukt mer plass enn AdBlock har til rådighet! Vennligst avslutt abonnementet fra noen filterlister!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" --Velg språk-- " + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Den mest populære Chrome utvidelsen med over 40 millioner brukere! Blokkerer annonser over hele internett." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Har du funnet en feil?" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klikk på Safari-menyen → Innstillinger → Utvidelser." + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Lær mer om skadelig programvare" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Stopp blokkering av annonser:" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Den mest populære Chrome utvidelsen med over 40 millioner brukere! Blokkerer annonser over hele internett." + "typescript":{ + "description":"A resource type", + "message":"skript" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Er den fremdeles der?" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "tabsupport":{ + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Støtte" + "message":"Filterlister" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgarsk" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Skru av disse varslene" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Vil du se hva som får AdBlock til å virke?" + "filterchinese":{ + "description":"language", + "message":"Kinesisk" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Mislyktes!" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filteret er ugyldig: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filteret, som kan bli forandret under innstillingssiden:" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Abonner på filterlister..." }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Manuelt endre dine filtere:" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Åpne utvidelses-siden for å aktivere utvidelser som har vært deaktivert." }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Følgende filter:
$filter$
har en feil:
$message$", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Det samsvarer med $matchcount$ elementer på denne siden.", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "typepopup":{ - "description":"A resource type", - "message":"popup" - }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "updatedhourago":{ + "description":"Label for subscription", + "message":"oppdatert for en time siden" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Type" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "lang_slovak":{ - "description":"language", - "message":"Slovakisk" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" --Velg språk-- " }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Abonner på filterlister" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Drag glidebryteren helt til annonsen(e) er blokkert riktig på nettsiden, og det blokkerte elementet ser brukbart ut." }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Vises reklamen også i den nettleseren?" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesisk" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Ikke kjør på denne siden" + "typeimage":{ + "description":"A resource type", + "message":"bilde" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokker kun annonser på disse sidene:" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Rediger" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"La oss få vite det på vår støtteside!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Kunne ikke hente dette filteret." }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock er satt på pause." + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ totalt", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Du har brukt mer plass enn AdBlock har til rådighet! Vennligst avslutt abonnementet fra noen filterlister!" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Støtte" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Vi kan ikke blokkere annonser inni Flash og andre objekter enda. Vi venter på støtte fra nettleseren og WebKit." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokker en annonse ved dens URL" }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "buttoncancel":{ + "description":"Cancel button", + "message":"Avbryt" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, du kan fremdeles blokkere denne reklamen selv, under innstillinger. Takk!" + "savereminder":{ + "description":"Reminder to press save", + "message":"Ikke glem å lagre!" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Generelt" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "optionsversion":{ + "description":"Version number", + "message":"Versjon $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeother":{ - "description":"A resource type", - "message":"annet" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Ingen filtre valgt!" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Formålet med dette spørsmålet er å avgjøre hvem som skal motta rapporten. Hvis du svarer på dette spørsmålet feil, vil rapporten sendes til feil person, så det kan bli ignorert." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Er du sikker på at du vil abonnere på filterlisten $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"ukjent" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Kildekoden er fritt tilgjengelig !" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Finsk" + "message":"Nederlandsk" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Venligst skriv det korrekte filteret nedenfor og trykk OK" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock er deaktivert på denne siden." + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Det er en oppdatering tilgjengelig for AdBlock. Klikk $here$ for å oppdatere.
Merk: Hvis du vil ha automatiske oppdateringer, klikk på Safari -> Innstillinger -> Utvidelser -> Oppdateringer
og huk av for \"installer oppdateringer automatisk\".", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"lyd/film" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Det samsvarer med ett element på denne siden." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japansk" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Dette er et filterlisteproblem. Rapporter det her: $link$", + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Rydd opp i denne listen" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"oppdatert for $hours$ timer siden", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Fjern krysset ved Aktiver ved alle utvidelser unntatt for AdBlock. La AdBlock være aktivert." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Tilbake" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Vis linker til filterlistene" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Bare Engelsk" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Avbryt" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock-innstillinger" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Hjelp oss å spre ordet!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Du kan skyve under for å endre akkurat hvilke sider AdBlock ikke kjører på." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Sjekk i Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Ikke abonner på flere enn du trenger -- hver liste bremser deg ned bittelitt! Bidragsytere og flere lister finner du her." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Aktiver kompatibilitetsmodus for ClickToFlash" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Ser etter oppdateringer (dette bør kun ta et par sekunder)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Abonner på denne filterlisten, og prøv igjen: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Annet" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domenet til siden den skal påvirke" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"oppdatert akkurat nå" + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Har vårt team etterspurt feilsøkingsinfo? Klikk herfor det!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"oppdatert for $minutes$ minutter siden", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"For å rapportere en annonse, må du være tilkoblet Internett." + "lang_czech":{ + "description":"language", + "message":"Tsjekkisk" }, - "filtereasylist":{ + "filterswedish":{ "description":"A filter list", - "message":"EasyList (anbefalt)" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "message":"Svensk" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Kunne ikke hente dette filteret." + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock Støtte" }, - "filteritalian":{ - "description":"language", - "message":"Italiensk" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Type" }, - "filtereasylist_plus_spanish":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"Spansk" + "message":"Fransk" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Ser bra ut" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"oppdatert for ett minutt siden" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Hvis du ser en annonse, ikke send en feilrapport. Send en annonserapport i stedet!" + "typesub_frame":{ + "description":"A resource type", + "message":"ramme" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Har du et spørsmål eller en idé?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - Klikk for mer informasjon" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Advarsel: intet filter valgt!" } } \ No newline at end of file diff --git a/_locales/nl/messages.json b/_locales/nl/messages.json index 1050fa97..7f2941d8 100644 --- a/_locales/nl/messages.json +++ b/_locales/nl/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Voeg een schermafbeelding toe:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Geen gekende malware gevonden." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Abonneer je in die browser op dezelfde filters als in deze browser." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Heb je een vraag of een nieuw idee?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Herlaad de pagina met de desbetreffende advertentie in die browser." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opties" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Zweeds" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Meer advertenties blokkeren:" - }, - "lang_russian":{ - "description":"language", - "message":"Russisch" + "message":"EasyList (aanbevolen)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Afgemeld." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ op deze pagina", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Chinees" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Als je een werkende filter hebt kunnen creëren met de \"Blokkeer een advertentie\" wizard, kopieer deze dan in het vak hieronder:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial filter (verwijdert social media knoppen)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Heb je een advertentie gevonden op een webpagina? We zullen je helpen om de juiste plaats te vinden om deze te melden!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Toon het aantal geblokkeerde advertenties op de AdBlock knop" + "message":"Pools" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"De broncode is gratis beschikbaar!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS waarop dit moet worden toegepast" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1 minuut geleden bijgewerkt" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Uitsluiten" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Deze filter kon niet worden opgehaald!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Ik wil dit niet controleren" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Herstart Safari aub om content blocking volledig uit te schakelen." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokkeer een advertentie via haar URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Verberg deze knop" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Pas op: als je hier een fout maakt kunnen de andere filters, inclusief de officiële, onbruikbaar worden!
Lees de filter syntaxis uitleg (Engelstalig) voor meer informatie over het maken van filters." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Ik werk de filters automatisch bij, maar je kan deze ook nu bijwerken" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Zie je de advertentie ook in die browser?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formaat: ~website1.com|~website2.com|~nieuws.website3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Indien je deze advertenties liever niet ziet, kan je de Aanvaardbare Advertenties filter uitzetten." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Estlands" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Type" + "message":"Litouws" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Er is een update voor AdBlock beschikbaar! Ga $here$ om te updaten.
Opmerking: Om updates automatisch te installeren klik je op Safari > Voorkeuren > Extensies > Updates
en selecteer je de optie 'Installeer updates automatisch'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Meld je aan voor de volgende lijst en probeer het opnieuw: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Wat is dit?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Meld je niet aan voor meer filters dan je nodig hebt. Elke filter zal je browser iets vertragen! Credits en andere filters kan je hier terugvinden." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Deze AdBlock functie werkt niet op deze website omdat deze verouderde technologie gebruikt. Je kan items op deze website manueel blokkeren of uitsluiten in het 'Personaliseren' menu van de opties pagina." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Pools" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Lees meer over ons aanvaardbare advertenties programma." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"$seconds$ seconden geleden bijgewerkt", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Je computer is mogelijk besmet met malware. Klik hier voor meer informatie." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object subverzoek" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Toon advertenties op een pagina of domein" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Hongaars" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Let op: dit rapport kan openbaar gemaakt worden. Dit betekent dat iedereen je rapport kan zien. Denk hieraan voor je persoonlijke informatie toevoegt." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Schakel aub enkele filters uit. Meer informatie in de AdBlock Opties." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Slowaaks" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Oorsprong van de filter:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Installeer AdBlock Plus voor Firefox $chrome$ als je dit niet hebt.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, AdBlock is op deze site uitgeschakeld door een van uw filter lijsten." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"De filter is ongeldig: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"We hebben geen filter lijst voor deze taal.
Probeer $link$ een geschikte lijst te zoeken of blokkeer deze advertentie zelf in de opties van AdBlock.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Waarschuwing: geen filter opgegeven!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"Deze pagina is uitgesloten van het blokkeren van advertenties." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klik op de advertentie, en ik zal je helpen om deze te blokkeren." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Toon overal advertenties, behalve op bepaalde domeinen" + "topframe":{ + "description":"Resource list page: frame type", + "message":"Bovenste frame" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opties" + "typestylesheet":{ + "description":"A resource type", + "message":"stylesheet" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"XML HTTP verzoek" + "message":"onbekend" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Sorry, AdBlock is op deze site uitgeschakeld door een van uw filter lijsten." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Geblokkeerde advertenties:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Voeg filters toe voor een andere taal: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Derde partij" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klik op de advertentie, en ik zal je helpen om deze te blokkeren." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Geen filter opgegeven!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"een zoekopdracht voor foto's (bv. zeilboot race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grieks" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Als je een advertentie ziet, maak dan geen foutenrapport, maar een advertentierapport!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Je gebruikt een oude versie van AdBlock. Open de pagina voor extensiebeheer, schakel 'Ontwikkelaarmodus' in en klik op 'Extensies nu bijwerken'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Geweldig! Je bent helemaal klaar." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Hoe heet je?" }, - "other":{ - "description":"Multiple choice option", - "message":"Anders" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Los problemen met Hulu.com op (vereist het opnieuw opstarten van de browser)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock Ondersteuning" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Waarschuwing: geen filter opgegeven!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personaliseren" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Heb je een advertentie gevonden op een webpagina? We zullen je helpen om de juiste plaats te vinden om deze te melden!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estlands" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"AdBlock Personaliseren" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Vereiste informatie ontbreekt of is ongeldig. Vul aub alle vragen in met een rode rand." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgaars" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Fout bij het bewaren van het ge-uploade bestand." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Uitgesloten bronnen" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Vul aub de juiste filter hieronder in en klik daarna op OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Inhoud blokkering regels limiet overschreden" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Stap 1: Uitzoeken wat er geblokkeerd moet worden" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Vink de selectievakjes van de fotosets die je wil gebruiken aan." }, - "filterdanish":{ - "description":"language", - "message":"Deens" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Pas AdBlock niet toe op..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ op deze pagina", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokkeer URL's die deze tekst bevatten" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Sluiten" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Controle in Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Subframe" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Laatste stap: Waarom is dit een advertentie?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1 uur geleden bijgewerkt" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Als je een advertentie ziet, maak dan geen foutenrapport, maar een advertentierapport!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Koreaans" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"of Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Hoe heet je?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"De populairste Chrome extensie met meer dan 40 miljoen gebruikers! Blokkeert advertenties op het internet." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Je gebruikt een oude versie van Safari. Werk aub je browser bij naar de nieuwste versie om volledige functionaliteit te behouden. Update nu." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Toon alle verzoeken" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Fins" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Ik wil dit niet controleren" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Opties" + "lang_ukranian":{ + "description":"language", + "message":"Oekraïens" }, - "yes":{ - "description":"A positive response to a question", - "message":"Ja" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Geen gekende malware gevonden." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Maak mijn blokkeringen ongedaan op dit domein" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Schakel aub enkele filters uit. Meer informatie in de AdBlock Opties." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personaliseren" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"We hebben je afgemeld van de aanvaardbare advertenties omdat u safari content blocking hebt ingeschakeld. Je kan slechts 1 van deze 2 opties tegelijk selecteren. (Waarom?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pauzeer AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We hebben ook een pagina die je toont wie er allemaal achter AdBlock zit!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Weet je zeker dat je je wilt abonneren op de $title$ filter lijst?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"hier" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Waar precies op de pagina bevindt de advertentie zich? Hoe ziet hij eruit?" + "typepopup":{ + "description":"A resource type", + "message":"pop-up" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"XML HTTP verzoek" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"of AdBlock voor Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Laad de pagina opnieuw." }, - "typestylesheet":{ - "description":"A resource type", - "message":"stylesheet" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"In welke taal is de pagina geschreven?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock is gepauzeerd." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Opties" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Inhoud blokkering regels limiet overschreden" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"AdBlock hervatten" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Advertenties zoeken...

Dit duurt maar eventjes." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"een Flickr fotoset URL (bv. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"Deze pagina is uitgesloten van het blokkeren van advertenties." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Het domein of de URL waar AdBlock niets moet blokkeren" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Abonneer je in die browser op dezelfde filters als in deze browser." }, - "typescript":{ - "description":"A resource type", - "message":"script" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokkeer een advertentie" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ in totaal", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Waarschuwing: Advertenties zullen zichtbaar zijn op alle andere websites
Dit heeft voorrang op alle andere filters op deze website" + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Er is een update voor AdBlock beschikbaar! Ga $here$ om te updaten.
Opmerking: Om updates automatisch te installeren klik je op Safari > Voorkeuren > Extensies > Updates
en selecteer je de optie 'Installeer updates automatisch'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Klaar! We zullen binnenkort contact met je opnemen, waarschijnlijk binnen één dag, of 2 indien het een feestdag is. Ga in de tussentijd eens op zoek naar een e-mail van AdBlock. Daarin vind je namelijk een link naar je ticket op de help site. Als je liever het gesprek via e-mail volgt, is dat natuurlijk ook mogelijk!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Klaar!" }, - "no":{ - "description":"A negative response to a question", - "message":"Nee" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock custom filters (aanbevolen)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Er is iets fout gegaan. De geladen items zijn niet doorgestuurd. Deze pagina zal nu sluiten. Probeer de website opnieuw te laden." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Type" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Wat is dit?" + }, + "filterjapanese":{ "description":"language", - "message":"Oekraïens" + "message":"Japans" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$ minuten geleden bijgewerkt", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Oorsprong van de filter:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"We hebben je afgemeld van de aanvaardbare advertenties omdat u safari content blocking hebt ingeschakeld. Je kan slechts 1 van deze 2 opties tegelijk selecteren. (Waarom?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Je bent niet langer geabonneerd op de aanvaardbare advertenties filter." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Malware bescherming" - }, - "savebutton":{ - "description":"Save button", - "message":"Opslaan" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Waarschuwing: Advertenties zullen zichtbaar zijn op alle andere websites
Dit heeft voorrang op alle andere filters op deze website" - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Deze meldingen uitschakelen" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Aanmelden voor filters" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Aanmelden voor officiële filters" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Je gebruikt een oude versie van AdBlock. Open de pagina voor extensiebeheer, schakel 'Ontwikkelaarmodus' in en klik op 'Extensies nu bijwerken'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Frame type: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock Opties" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Voeg filters toe voor een andere taal: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Geschikte filter" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Controleren op malware die advertenties zou kunnen injecteren:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"De filters blokkeren al de meeste advertenties op het web. Je kan ook:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Toon debug resultaten in de Console Logs (dit vertraagt AdBlock)." + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Om deze knop te verbergen, klik met de rechtermuisknop op de Safari werkbalk, kies pas knoppenbalk aan en sleep hierna de AdBlock knop uit de knoppenbalk. Je kan de knop opnieuw weergeven door het terug naar de werkbalk te slepen." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Je hebt de Dropbox opslagruimte overschreden. Gelieve enkele regels van je gepersonaliseerde of uitgeschakelde filters te verwijderen en het opnieuw te proberen." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"AdBlock hervatten" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Los problemen met Hulu.com op (vereist het opnieuw opstarten van de browser)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Uitsluiten" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Schakel alle extensies behalve AdBlock uit:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Vertaling door" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"LADEN..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Klik met de rechtermuisknop op een advertentie om hem te blokkeren -- of blokkeer het hier handmatig." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Aanmelden" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Opmerking: Het whitelisten (toelaten van advertenties) op een pagina of website is niet ondersteund met Safari Inhoud Blokkering geactiveerd." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"We gebruiken dit enkel indien we contact met je moeten opnemen voor als we nog meer informatie nodig hebben." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Bewerk uitgeschakelde filters:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Geblokkeerd element:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"pagina" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Schakel Safari Content Blocking in" + "typeother":{ + "description":"A resource type", + "message":"overig" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Wat is je e-mailadres?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Klik hier: Filters bijwerken" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Om deze knop te verbergen, klik met de rechtermuisknop op de Safari werkbalk, kies pas knoppenbalk aan en sleep hierna de AdBlock knop uit de knoppenbalk. Je kan de knop opnieuw weergeven door het terug naar de werkbalk te slepen." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Er is een fout opgetreden bij de verwerking van je aanvraag." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Verborgen element" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Om deze knop te verbergen, ga naar opera://extensions en selecteer de optie 'Verberg van knoppenbalk'. Je kan de knop opnieuw weergeven door deze optie te deselecteren." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"pagina" + "message":"object subverzoek" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Foto's toevoegen" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Pagina:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Klaar! We hebben de pagina met de advertentie herladen. Controleer deze pagina om te zien of de advertentie verdwenen is. Kom daarna terug naar deze pagina en beantwoordt de vraag hieronder." + "buttonblockit":{ + "description":"Block button", + "message":"Blokkeer!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Of voer een URL in:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sta het uitsluiten van specifieke Youtube kanalen toe" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Je gebruikt een oude versie van Safari. Werk aub je browser bij naar de nieuwste versie om volledige functionaliteit te behouden. Update nu." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klik op het Safari menu → Voorkeuren → Extensies." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"een zoekopdracht voor foto's (bv. zeilboot race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Minder advertenties blokkeren:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"We kunnen nog geen advertenties in Flash of andere plugins blokkeren. We wachten op ondersteuning van de browser en WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokkeer!" + "filterhungarian":{ + "description":"language", + "message":"Hongaars" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Zie je de advertentie nog steeds?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokkeer deze advertentie" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgaars" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Geweldig! Laten we nu op zoek gaan naar welke extensie de oorzaak is. Ga door elke extensie en schakel deze een voor een in. De extensie die de advertentie(s) terugbrengt is degene die je moet verwijderen om van de advertenties af te geraken." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Activeer AdBlock op deze pagina" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Toon het aantal geblokkeerde advertenties op de AdBlock knop" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Mislukt!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Je filters handmatig bewerken:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pauzeer AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Italiaans" - }, - "typepopup":{ - "description":"A resource type", - "message":"pop-up" + "message":"Engels" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Type" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Voeg items toe aan het rechterklik menu" }, - "lang_slovak":{ - "description":"language", - "message":"Slowaaks" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Ga aub naar onze support website." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Aanmelden voor officiële filters" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"AdBlock Waarschuwing Verwijder Lijst (verwijdert waarschuwingen over het gebruik van ad blockers)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Je kan dit terug activeren en de websites waar je van houdt ondersteunen door het selectievakje 'Laat sommige, niet-opdringerige advertenties toe' weer in te schakelen." + "typemain_frame":{ + "description":"A resource type", + "message":"pagina" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Zie je de advertentie ook in die browser?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Weet je zeker dat je $count$ blokkeringen op $host$ wilt verwijderen?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Blokkeer niets op deze pagina" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legende: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$ minuten geleden bijgewerkt", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Voeg een schermafbeelding toe:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Litouws" + "message":"Roemeens" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Laat het ons weten op onze ondersteuningswebsite!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Bewerk uitgeschakelde filters:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock is gepauzeerd." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Subframe" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"We kunnen nog geen advertenties in Flash of andere plugins blokkeren. We wachten op ondersteuning van de browser en WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Herlaad de pagina waarop de desbetreffende advertentie zich bevind." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Schakel Safari Content Blocking in" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installeer Firefox $chrome$ als je dit nog niet hebt.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Algemeen" + "message":"Filters" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Indien je deze advertenties liever niet ziet, kan je de Aanvaardbare Advertenties filter uitzetten." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Als je een werkende filter hebt kunnen creëren met de \"Blokkeer een advertentie\" wizard, kopieer deze dan in het vak hieronder:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Je computer is mogelijk besmet met malware. Klik hier voor meer informatie." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Dit bestand is te groot. Zorg ervoor dat het bestand minder dan 10 MB groot is." }, - "typeother":{ - "description":"A resource type", - "message":"overig" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock zal niets doen op pagina's die voldoen aan:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Geen filter opgegeven!" + "filterchinese":{ + "description":"language", + "message":"Chinees" }, - "typeunknown":{ - "description":"A resource type", - "message":"onbekend" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"De filter is ongeldig: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Aanmelden voor filters" + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Open de extensies pagina om de uitgeschakelde extensies weer in te schakelen." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Deze meldingen uitschakelen" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Turks" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Meld je niet aan voor meer filters dan je nodig hebt. Elke filter zal je browser iets vertragen! Credits en andere filters kan je hier terugvinden." + }, + "typesubdocument":{ "description":"A resource type", - "message":"audio/video" + "message":"frame" }, - "filterjapanese":{ - "description":"language", - "message":"Japans" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesisch" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Laat sommige, niet-opdringerige advertenties toe" + "typeimage":{ + "description":"A resource type", + "message":"afbeelding" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ in totaal", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Annuleren" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Versleep de balk hieronder om aan te geven waar precies AdBlock niets moet doen." + "savereminder":{ + "description":"Reminder to press save", + "message":"Vergeet niet op te slaan!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"selectieschakelaar" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"We hebben Safari Content Blocking uitgeschakeld omdat je opteerde om niet-opdringerige advertenties toe te staan. Je kan slechts 1 van deze 2 opties tegelijk selecteren. (Waarom?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Laatste stap: meld het probleem aan ons." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Controle in Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Ijslands" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Om een advertentie te rapporteren moet je verbinding hebben met het internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Advertentie Blokkerende Filters" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (aanbevolen)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokkeer alleen advertenties op deze websites:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"een Flickr fotoset ID (bv. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Geladen op een pagina van het domein: \n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Advertentie rapporteren" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"De extensies die uitgeschakeld werden zijn nu opnieuw ingeschakeld." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Advertentie Blokkerende Filters" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Hoe?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Ruim deze filter op" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sta het uitsluiten van specifieke Youtube kanalen toe" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Help ons om dit te verspreiden!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Derde partij" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (verwijdert ergernissen)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - klik voor details" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock Opties" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Er is een fout opgetreden bij de verwerking van je aanvraag." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"$hours$ uur geleden bijgewerkt", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"1 uur geleden bijgewerkt" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russisch en Oekraïens" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Controleren op updates (duurt maar enkele seconden)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Wat is er nieuw in de laatste versie? Bekijk de changelog!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"zojuist bijgewerkt" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"De extensies die uitgeschakeld werden zijn nu opnieuw ingeschakeld." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Klik met de rechtermuisknop op een advertentie om hem te blokkeren -- of blokkeer het hier handmatig." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grieks" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Controleren op malware die advertenties zou kunnen injecteren:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Verberg een deel van een pagina" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock Ondersteuning" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video's en Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Type" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Welke kenmerken gelden er elke keer als je deze pagina bezoekt?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Verplaats de schuifbalk tot de advertentie verdwenen is, en het geblokkeerde element bruikbaar lijkt." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Activeer AdBlock op deze pagina" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1 minuut geleden bijgewerkt" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Vorige" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"De filters blokkeren al de meeste advertenties op het web. Je kan ook:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Geblokkeerde bronnen" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"De volgende informatie zal ook opgenomen worden in het advertentierapport." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Deens" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Controleer de Aanvaardbare Advertenties filters:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Toon advertenties op een pagina of domein" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Je kan dit terug activeren en de websites waar je van houdt ondersteunen door het selectievakje 'Laat sommige, niet-opdringerige advertenties toe' weer in te schakelen." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Ophalen... even geduld aub." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Ongeldige URL naar de filter. Deze filter zal verwijdert worden" + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Algemene opties" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Vink bij elke extensie het selectievakje 'Ingeschakeld' uit behalve bij die van AdBlock. Houd AdBlock geactiveerd." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Herlaad de pagina met de desbetreffende advertentie in die browser." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Toon overal advertenties, behalve op bepaalde domeinen" + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Je bent vergeten een schermafbeelding toe te voegen! We kunnen je niet helpen zonder dat we de advertentie(s) zien die je aan ons wilt rapporteren." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Dit geldt voor 1 item op deze pagina." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"En maak handmatig een ticket aan. Kopieer en plak de onderstaande gegevens in de \"Fill in any details you think will help us understand your issue\" sectie." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Pas op: als je hier een fout maakt kunnen de andere filters, inclusief de officiële, onbruikbaar worden!
Lees de filter syntaxis uitleg (Engelstalig) voor meer informatie over het maken van filters." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Sluit $name$'s kanaal uit", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Om deze knop te verbergen, klik er met de rechtermuisknop op en kies dan voor 'Knop verbergen'. Je kan de knop opnieuw weergeven door naar de volgende pagina te gaan: chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Algemene opties" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock zal niets doen op pagina's die voldoen aan:" + "filterisraeli":{ + "description":"language", + "message":"Hebreeuws" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"We hebben geen filter lijst voor deze taal.
Probeer $link$ een geschikte lijst te zoeken of blokkeer deze advertentie zelf in de opties van AdBlock.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Deze AdBlock functie werkt niet op deze website omdat deze verouderde technologie gebruikt. Je kan items op deze website manueel blokkeren of uitsluiten in het 'Personaliseren' menu van de opties pagina." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Aanmelden" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tsjechisch en Slowaaks" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Ik ben een gevorderd gebruiker, toon me de geavanceerde opties" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"We hebben alle andere extensies uitgeschakeld. We zullen nu de pagina met de advertentie herladen. Eventjes geduld aub." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spaans" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Andere Filters" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Geladen op een pagina van het domein: \n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Ik werk de filters automatisch bij, maar je kan deze ook nu bijwerken" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Klik hier: Filters bijwerken" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Toon alle verzoeken" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Hoe meer lijsten je gebruikt, hoe langzamer AdBlock wordt. Teveel lijsten kunnen zelfs je browser laten crashen. Klik op OK om je toch aan te melden voor deze lijst." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Laatste stap: Waarom is dit een advertentie?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Geweldig! Je bent helemaal klaar." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Dat geldt voor $matchcount$ items op deze pagina.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We hebben ook een pagina die je toont wie er allemaal achter AdBlock zit!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Open de extensies pagina." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesisch" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Klaar! We zullen binnenkort contact met je opnemen, waarschijnlijk binnen één dag, of 2 indien het een feestdag is. Ga in de tussentijd eens op zoek naar een e-mail van AdBlock. Daarin vind je namelijk een link naar je ticket op de help site. Als je liever het gesprek via e-mail volgt, is dat natuurlijk ook mogelijk!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turks" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Lees meer over ons aanvaardbare advertenties programma." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokkeer een advertentie" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Moet AdBlock je waarschuwen als het malware detecteert?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Aangepaste Filters" + "updateddayago":{ + "description":"Label for subscription", + "message":"1 dag geleden bijgewerkt" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"Frame URL: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Het doel van deze vraag is om na te gaan wie je melding moet ontvangen. Als je deze vraag incorrect beantwoordt zal de melding naar de verkeerde persoon gestuurd worden. Dit kan ervoor zorgen dat deze niet behandeld zal worden." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Voeg items toe aan het rechterklik menu" - }, - "typeselector":{ - "description":"A resource type", - "message":"selectieschakelaar" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokkeer deze advertentie" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Heeft ons team gevraagd om debug info? Klik dan hier!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Duits" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Pas AdBlock niet toe op..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Het melden van advertenties is vrijwillig. Het helpt andere mensen doordat de onderhouders van de filters deze advertentie dan kunnen blokkeren voor iedereen. Als je niet het gevoel hebt dat je iemand wil helpen, is dat ok. Sluit deze pagina en blokkeer de advertentie dan gewoon voor jezelf." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Deze bestandsnaam is te lang. Geef aub een kortere bestandsnaam." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Verborgen element" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"$seconds$ seconden geleden bijgewerkt", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Laad de pagina opnieuw." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Blokkeer niets op deze pagina" }, - "typepage":{ - "description":"A resource type", - "message":"pagina" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Laat het ons weten op onze ondersteuningswebsite!" }, - "filterdutch":{ - "description":"language", - "message":"Nederlands" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Deze bestandsnaam is te lang. Geef aub een kortere bestandsnaam." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Vergeet niet op te slaan!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Klaar! We hebben de pagina met de advertentie herladen. Controleer deze pagina om te zien of de advertentie verdwenen is. Kom daarna terug naar deze pagina en beantwoordt de vraag hieronder." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Controleren op updates (duurt maar enkele seconden)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Alle Bronnen" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Meld je aan voor de volgende lijst en probeer het opnieuw: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Sluit $name$'s kanaal uit", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Moet AdBlock je waarschuwen als het malware detecteert?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Bron" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Toon het aantal geblokkeerde advertenties in het AdBlock menu" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Website:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Advertentie rapporteren" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock custom filters (aanbevolen)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Hoe?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Blokkeer niets op pagina's van dit domein" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Aangepaste Filters" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Meer advertenties blokkeren:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Vereiste informatie ontbreekt of is ongeldig. Vul aub alle vragen in met een rode rand." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Het domein of de URL waar AdBlock niets moet blokkeren" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Lets" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Je bent niet langer geabonneerd op de aanvaardbare advertenties filter." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Zorg ervoor dat je de juiste taalfilter(s) gebruikt:" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (verwijdert ergernissen)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS waarop dit moet worden toegepast" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock heeft een download van een website die bekend is omwille van malware geblokkeerd." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Om deze knop te verbergen, ga naar opera://extensions en selecteer de optie 'Verberg van knoppenbalk'. Je kan de knop opnieuw weergeven door deze optie te deselecteren." + "savebutton":{ + "description":"Save button", + "message":"Opslaan" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Niet zeker? Klik dan gewoon op 'Blokkeer!' hieronder." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Geschikte filter" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Ophalen... even geduld aub." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Alle Bronnen" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Laatste stap: meld het probleem aan ons." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock is up-to-date!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Blokkeer niets op pagina's van dit domein" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Waar precies op de pagina bevindt de advertentie zich? Hoe ziet hij eruit?" }, - "filterisraeli":{ - "description":"language", - "message":"Hebreeuws" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Ziet er goed uit" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Verplaats de schuifbalk tot de advertentie verdwenen is, en het geblokkeerde element bruikbaar lijkt." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokkeer URL's die deze tekst bevatten" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sta AdBlock toe om anoniem het gebruik van filters en gegevens te verzamelen" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Enkele foto's toevoegen van Flickr! Je kan volgende zaken invoeren:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Om een advertentie te rapporteren moet je verbinding hebben met het internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"De lijst met filter regels overschrijft de limiet van 50 000 en is automatisch verkleind. Meld je aub af voor enkele filters of schakel de Safari Inhoud Blokkering uit!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Weet je zeker dat je je wilt abonneren op de $title$ filter lijst?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"1 dag geleden bijgewerkt" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Aanvaardbare Advertenties (aanbevolen)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Klik hierop: Aanvaardbare Advertenties uitschakelen" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versie $version$", + "message":"$days$ dagen geleden bijgewerkt", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Uit lijst verwijderen" + "typeobject":{ + "description":"A resource type", + "message":"interactief object" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Dat is geen afbeeldingsbestand. Upload aub een .png, .gif of .jpg bestand." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Welke kenmerken gelden er elke keer als je deze pagina bezoekt?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Waarom verstuur je ons geen foutrapport?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Geblokkeerde advertenties:" }, - "typehiding":{ - "description":"A resource type", - "message":"verborgen" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filters" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arabisch" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Frame domein: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Maak mijn blokkeringen ongedaan op dit domein" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Bovenste frame" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Je filters handmatig bewerken:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Klaar!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Stap 1: Uitzoeken wat er geblokkeerd moet worden" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Bron" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Vul aub de juiste filter hieronder in en klik daarna op OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokkeer een advertentie op deze pagina" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Vertaling door" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Zorg ervoor dat je filters bijgewerkt zijn:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock is up-to-date!" }, - "lang_english":{ - "description":"language", - "message":"Engels" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Alleen in het Engels" }, - "filtericelandic":{ - "description":"language", - "message":"Ijslands" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"OF, klik gewoon op deze knop om alle bovenstaande dingen te doen: Alle andere extensies uitschakelen" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Open de extensies pagina om de uitgeschakelde extensies weer in te schakelen." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Wat is er nieuw in de laatste versie? Bekijk de changelog!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domein van de pagina waarop dit moet worden toegepast" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial filter (verwijdert social media knoppen)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Pagina:" + "filtermalware":{ + "description":"A filter list", + "message":"Malware bescherming" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Heb je een fout gevonden?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Ik ben een gevorderd gebruiker, toon me de geavanceerde opties" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arabisch" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Je gebruikt meer opslagruimte dan AdBlock kan gebruiken. Meldt je aub af voor enkele filterlijsten!" }, - "lang_czech":{ - "description":"language", - "message":"Tsjechisch" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Betaal wat je wil!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Wat is je e-mailadres?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Wil je zien hoe AdBlock werkt?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Ongeldige URL naar de filter. Deze filter zal verwijdert worden" + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Verberg een deel van een pagina" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Algemeen" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"of AdBlock voor Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video's en Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Geweldig! Laten we nu op zoek gaan naar welke extensie de oorzaak is. Ga door elke extensie en schakel deze een voor een in. De extensie die de advertentie(s) terugbrengt is degene die je moet verwijderen om van de advertenties af te geraken." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Bewerk" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"of Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Heb je een vraag of een nieuw idee?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formaat: ~website1.com|~website2.com|~nieuws.website3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Je bent vergeten een schermafbeelding toe te voegen! We kunnen je niet helpen zonder dat we de advertentie(s) zien die je aan ons wilt rapporteren." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Betaal wat je wil!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"OF, klik gewoon op deze knop om alle bovenstaande dingen te doen: Alle andere extensies uitschakelen" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Dit is een probleem in de filter. Rapporteer het aub hier: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Leer meer over malware" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Let op: dit rapport kan openbaar gemaakt worden. Dit betekent dat iedereen je rapport kan zien. Denk hieraan voor je persoonlijke informatie toevoegt." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Herlaad de pagina waarop de desbetreffende advertentie zich bevind." + "filteritalian":{ + "description":"language", + "message":"Italiaans" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installeer Firefox $chrome$ als je dit nog niet hebt.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"een Flickr fotoset ID (bv. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock updates" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Zie je de advertentie nog steeds?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"AdBlock Waarschuwing Verwijder Lijst (verwijdert waarschuwingen over het gebruik van ad blockers)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Zorg ervoor dat je de juiste taalfilter(s) gebruikt:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Andere Filters" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Zorg ervoor dat je filters bijgewerkt zijn:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Frans" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Er ging iets mis bij het controleren op updates." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Geblokkeerd element:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klik op het Safari menu → Voorkeuren → Extensies." }, - "typeobject":{ - "description":"A resource type", - "message":"interactief object" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Verstuur" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"zojuist bijgewerkt" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$ dagen geleden bijgewerkt", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"een Flickr fotoset URL (bv. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Afgemeld." + }, + "typemedia":{ "description":"A resource type", - "message":"frame" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (privacybescherming)" + "message":"Lets" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Rapporteer een advertentie op deze pagina" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokkeer een advertentie op deze pagina" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Ruim deze filter op" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Minder advertenties blokkeren:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Duits" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Fout bij het bewaren van het ge-uploade bestand." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Let op: deze filter blokkeert alle $elementtype$ elementen op de pagina!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Dat geldt voor $matchcount$ items op deze pagina.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"hier" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"In welke taal is de pagina geschreven?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Deze filter kon niet worden opgehaald!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Weet je zeker dat je $count$ blokkeringen op $host$ wilt verwijderen?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Versleep de balk hieronder om aan te geven waar precies AdBlock niets moet doen." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"afbeelding" + "message":"verborgen" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"En maak handmatig een ticket aan. Kopieer en plak de onderstaande gegevens in de \"Fill in any details you think will help us understand your issue\" sectie." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Verschijnt de advertentie in of voor een film of andere plugin zoals een Flash spel?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Om deze knop te verbergen, klik er met de rechtermuisknop op en kies dan voor 'Knop verbergen'. Je kan de knop opnieuw weergeven door naar de volgende pagina te gaan: chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russisch en Oekraïens" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Roemeens" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Er ging iets mis bij het controleren op updates." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"We hebben alle andere extensies uitgeschakeld. We zullen nu de pagina met de advertentie herladen. Eventjes geduld aub." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Uitgesloten bronnen" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Spaans" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Let op: deze filter blokkeert alle $elementtype$ elementen op de pagina!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tsjechisch en Slowaaks" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Activeer de ClickToFlash compatibiliteitsmodus" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Frame type: " + "no":{ + "description":"A negative response to a question", + "message":"Nee" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Selecteer Taal --" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"De filterregel, die aangepast kan worden in de opties pagina:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Installeer AdBlock Plus voor Firefox $chrome$ als je dit niet hebt.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Verberg deze knop" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Geblokkeerde bronnen" + "other":{ + "description":"Multiple choice option", + "message":"Anders" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, je kunt deze advertentie steeds voor jezelf blokkeren. Bedankt!" + }, + "lang_russian":{ + "description":"language", + "message":"Russisch" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Verschijnt de advertentie in of voor een film of andere plugin zoals een Flash spel?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Waarom verstuur je ons geen foutrapport?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (privacybescherming)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ is gelijk aan $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"De filterregel, die aangepast kan worden in de opties pagina:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Of voer een URL in:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"De volgende filter:
$filter$
heeft een fout:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Vink de selectievakjes van de fotosets die je wil gebruiken aan." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"LADEN..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Sluiten" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Heeft ons team gevraagd om debug info? Klik dan hier!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokkeer alleen advertenties op deze websites:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Je gebruikt meer opslagruimte dan AdBlock kan gebruiken. Meldt je aub af voor enkele filterlijsten!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"De lijst met filter regels overschrijft de limiet van 50 000 en is automatisch verkleind. Meld je aub af voor enkele filters of schakel de Safari Inhoud Blokkering uit!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Rapporteer een advertentie op deze pagina" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sta AdBlock toe om anoniem het gebruik van filters en gegevens te verzamelen" + "message":"Toon debug resultaten in de Console Logs (dit vertraagt AdBlock)." }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, je kunt deze advertentie steeds voor jezelf blokkeren. Bedankt!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Frame domein: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"De populairste Chrome extensie met meer dan 40 miljoen gebruikers! Blokkeert advertenties op het internet." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Heb je een fout gevonden?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Verstuur" + "lang_czech":{ + "description":"language", + "message":"Tsjechisch" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Dat is geen afbeeldingsbestand. Upload aub een .png, .gif of .jpg bestand." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Enkele foto's toevoegen van Flickr! Je kan volgende zaken invoeren:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Toon URL's van de filters" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Laat sommige, niet-opdringerige advertenties toe" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Zweeds" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Uit lijst verwijderen" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Foto's toevoegen" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Selecteer Taal --" + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Fins" + "message":"Frans" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Bewerk" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Dit bestand is te groot. Zorg ervoor dat het bestand minder dan 10 MB groot is." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Ondersteuning" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"De volgende informatie zal ook opgenomen worden in het advertentierapport." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokkeer een advertentie via haar URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Dit is een probleem in de filter. Rapporteer het aub hier: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Versie $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Vink bij elke extensie het selectievakje 'Ingeschakeld' uit behalve bij die van AdBlock. Houd AdBlock geactiveerd." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Het doel van deze vraag is om na te gaan wie je melding moet ontvangen. Als je deze vraag incorrect beantwoordt zal de melding naar de verkeerde persoon gestuurd worden. Dit kan ervoor zorgen dat deze niet behandeld zal worden." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Toon URL's van de filters" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Het melden van advertenties is vrijwillig. Het helpt andere mensen doordat de onderhouders van de filters deze advertentie dan kunnen blokkeren voor iedereen. Als je niet het gevoel hebt dat je iemand wil helpen, is dat ok. Sluit deze pagina en blokkeer de advertentie dan gewoon voor jezelf." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Alleen in het Engels" + "yes":{ + "description":"A positive response to a question", + "message":"Ja" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Help ons om dit te verspreiden!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"De broncode is gratis beschikbaar!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Nederlands" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"We gebruiken dit enkel indien we contact met je moeten opnemen voor als we nog meer informatie nodig hebben." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Dit geldt voor 1 item op deze pagina." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$ uur geleden bijgewerkt", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Vorige" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock heeft een download van een website die bekend is omwille van malware geblokkeerd." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legende: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Klik hierop: Aanvaardbare Advertenties uitschakelen" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Activeer de ClickToFlash compatibiliteitsmodus" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domein van de pagina waarop dit moet worden toegepast" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Ondersteuning" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock updates" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Ga aub naar onze support website." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Om AdBlock te pauzeren met de Inhoud Blokkering geactiveerd, selecteer Safari (in de menubalk) > Voorkeuren > Extensies > AdBlock en schakel 'Schakel AdBlock in' uit." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Er is iets fout gegaan. De geladen items zijn niet doorgestuurd. Deze pagina zal nu sluiten. Probeer de website opnieuw te laden." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Leer meer over malware" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Website:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Aanvaardbare Advertenties (aanbevolen)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Ziet er goed uit" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Om AdBlock te pauzeren met de Inhoud Blokkering geactiveerd, selecteer Safari (in de menubalk) > Voorkeuren > Extensies > AdBlock en schakel 'Schakel AdBlock in' uit." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Open de extensies pagina." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - klik voor details" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Schakel alle extensies behalve AdBlock uit:" } } \ No newline at end of file diff --git a/_locales/pl/messages.json b/_locales/pl/messages.json index 740b92b1..f25e58aa 100644 --- a/_locales/pl/messages.json +++ b/_locales/pl/messages.json @@ -1,1338 +1,1378 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Zgłaszanie reklam" + "filterdanish":{ + "description":"language", + "message":"Duński" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Listy filtrów blokujących reklamy" + "filteritalian":{ + "description":"language", + "message":"Włoski" }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Kliknij tutaj: Wyłącz Akceptowane Reklamy" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Pomóż w rozpowszechnianiu!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Domena:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Masz pytanie lub nowy pomysł?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Pozwól dodać do białej listy konkretne kanały YouTube" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Pobieram subskrypcję... proszę czekać." }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nie znaleziono znanego złośliwego oprogramowania." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Ogólne" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Zapisz w tej przeglądarce tę samą listę filtrów, którą masz tutaj." + "filterannoyances":{ + "description":"A filter list", + "message":"Kłopoty fanboy'ów (usuwa kłopoty w internecie)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - kliknij, aby zobaczyć szczegóły" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ na tej stronie", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Nieprawidłowy adres URL listy. Zostanie skasowany." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Otwórz w niej stronę na której widzisz reklamę." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polski" }, - "filterswedish":{ - "description":"A filter list", - "message":"Szwedzki" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opcje ogólne" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Co nowego jest w najnowszej wersji? Zobacz listę zmian!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Zablokować więcej reklam:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS pasujący do" }, - "lang_russian":{ - "description":"language", - "message":"Rosyjski" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Wyłącz wszystkie rozszerzenia za wyjątkiem AdBlock'a odznaczając pole wyboru 'Włączone'. Pozostaw AdBlock'a włączonego." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Rozszerzenia, które zostały poprzednio wyłączone, zostały włączone ponownie." + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Nie chcę tego sprawdzać." }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Anulowano subskrypcje." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Pokazuj reklamy wszędzie z wyjątkiem tych domen..." }, - "filtericelandic":{ - "description":"language", - "message":"Islandzki" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Uwaga: jeśli popełnisz błąd, może on zablokować inne filtry, także te oficjalne!
Przeczytaj poradnik tworzenia składni filtrów aby nauczyć się jak dodawać zaawansowane wpisy do czarnej i białej listy filtrów.." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Grecki" + "message":"Słowacki" }, - "filterchinese":{ + "yes":{ + "description":"A positive response to a question", + "message":"Tak" + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" + }, + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Czy reklama wyświetla się też w tej przeglądarce?" + }, + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Wyklucz" + }, + "savebutton":{ + "description":"Save button", + "message":"Zapisz" + }, + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Chiński" + "message":"Rumuński" }, - "filtereasylist_plus_spanish":{ + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Aby ukryć przycisk, kliknij prawym przyciskiem myszy na ikonie AdBlocka a następnie wybierz \"Ukryj przycisk\". Możesz ponownie włączyć pokazywanie go pod adresem chrome://extensions/." + }, + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "filterisraeli":{ "description":"language", - "message":"Hiszpański" + "message":"Hebrajskim" }, - "filtermalware":{ - "description":"A filter list", - "message":"Ochrona przed złośliwym oprogramowaniem" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Ta funkcja AdBlocka nie działa na tej stronie, ponieważ wykorzystuje starą technologię. Możesz dodać zasoby do czarnej lub białej listy ręcznie w zakładce „Dostosuj” na stronie opcji." }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Co według ciebie będzie prawdziwe dla tej reklamy za każdym razem, gdy odwiedzasz tę stronę?" + "other":{ + "description":"Multiple choice option", + "message":"Innym" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Włącz AdBlocka na tej stronie" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Czeski" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Wróć" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Wyłączyliśmy wszystkie inne rozszerzenia. Teraz odświeżymy stronę z reklamą. Sekundę, prosimy." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Pokaż liczbę zablokowanych reklam na przycisku AdBlock" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Inne listy filtrów" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Ostatni krok: Co sprawia, że to reklama?" + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opcje" }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Twój komputer może być zainfekowany przez złośliwe oprogramowanie. Kliknij tutaj aby uzyskać więcej informacji." }, - "filterlatvian":{ + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Aktualizacje są pobierane automatycznie; możesz również kliknąć przycisk: Aktualizuj" + }, + "typeunknown":{ + "description":"A resource type", + "message":"nieznane" + }, + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Pokazuj reklamy na stronie lub domenie" + }, + "filterturkish":{ "description":"A filter list", - "message":"Łotewski" + "message":"Turecki" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Listy filtrów blokują większość reklam. Możesz również:" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Kod źródłowy jest swobodnie dostępny!" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Zbyt wiele subskrybowanych list może spowolnić pracę AdBlock'a. Korzystanie ze zbyt wielu list może doprowadzić nawet do wykrzaczenia przeglądarki na niektórych stronach. Naciśnij przycisk OK, aby mimo tego zasubskrybować tą listę." + }, + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Zainstaluj Adblock Plus dla Firefoxa $chrome$, jeśli go nie posiadasz.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Nie mamy domyślnej listy filtrów dla tego języka.
Spróbuj znaleźć odpowiednią listę dla tego języka $link$ albo zablokuj tą reklamę dla siebie poprzez zakładkę 'Dostosuj' na stronie opcji.", + "placeholders":{ + "link":{ + "content":"", + "example":"here" + } + } + }, + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" + }, + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Kliknij w reklamę, aby rozpocząć proces blokowania." + }, + "typestylesheet":{ + "description":"A resource type", + "message":"css" + }, + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Aktualizacje AdBlocka" }, "aalinkadreport":{ "description":"Acceptable Ads link message on ad report page", "message":"Dowiedz się więcej o programie Akceptowanych Reklam." }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Przepraszamy, AdBlock jest wyłączony na tej stronie przez jedną z list filtrów." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "updateddayago":{ + "description":"Label for subscription", + "message":"zaktualizowano 1 dzień temu" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Pokazuj reklamy na stronie lub domenie" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Ilość elementów pasujących do filtru na tej stronie: 1." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Ukryj część strony" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Nie określono żadnego filtru!" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Dodaj kanał $name$ do białej listy", + "filtereasylist_plus_german":{ + "description":"language", + "message":"Niemiecki" + }, + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grecki" + }, + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"ilość sekund od aktualizacji: $seconds$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opcje ogólne" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Nie jesteś pewien? Po prostu kliknij 'Zablokuj!'." }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Twój komputer może być zainfekowany przez złośliwe oprogramowanie. Kliknij tutaj aby uzyskać więcej informacji." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Obejście problemu niedziałających filmów na hulu.com (wymaga ponownego uruchomienia przeglądarki)" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock nie będzie działać na żadnej stronie pasującej do:" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Arabski" + }, + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Szukanie złośliwego oprogramowania, które mogłoby wprowadzać reklamy:" + }, + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokuj reklamy tylko na tych stronach:" + }, + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Dostosuj" + }, + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Aby zgłosić reklamę, musisz być podłączony do internetu." + }, + "buttonok":{ + "description":"OK button", + "message":"Okej!" + }, + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Zrobione! Odświeżyliśmy stronę z reklamą. Prosimy sprawdzić tę stronę, aby zobaczyć czy reklama zniknęła, a wtedy wrócić na tę stronę i odpowiedzieć na pytanie poniżej." }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Nie mamy domyślnej listy filtrów dla tego języka.
Spróbuj znaleźć odpowiednią listę dla tego języka $link$ albo zablokuj tą reklamę dla siebie poprzez zakładkę 'Dostosuj' na stronie opcji.", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Dodaj kanał $name$ do białej listy", "placeholders":{ - "link":{ - "example":"here", - "content":"" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Subskrybuj" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Jestem zaawansowanym użytkownikiem, pokaż mi zaawansowane opcje" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, możesz zablokować reklamę tylko dla siebie na stronie opcji. Dzięki!" }, - "linkblockadbyurl":{ + "linkhidesection":{ "description":"Link on the 'Customize' tab", - "message":"Zablokuj reklamę poprzez jej adres URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Ukryj ten przycisk" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Aktualizacje są pobierane automatycznie; możesz również kliknąć przycisk: Aktualizuj" + "message":"Ukryj część strony" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Kliknij: Zaktualizuj filtry!" + "typesubdocument":{ + "description":"A resource type", + "message":"ramka" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~site1.com|~site2.com|~news.site3.org" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, "filtereasylist_plus_estonian":{ "description":"language", "message":"Estoński" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Ilość elementów pasujących do filtru na tej stronie: $matchcount$.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Mamy stronę, aby pomóc Ci dowiedzieć się o ludziach pracujących nad AdBlockiem!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonezyjski" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Typ" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Jest aktualizacja dla AdBlock'a! Przejdź $here$ aby zaktualizować.
Uwaga: Jeśli chcesz otrzymywać aktualizacje automatycznie, po prostu kliknij na Safari > Preferencje > Rozszerzenia > Aktualizacje
i wybierz opcję \"Zainstaluj aktualizacje automatycznie\".", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Pokaż liczbę zablokowanych reklam w menu AdBlock" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turecki" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Zgłaszanie reklam" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Co to jest?" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bułgarski" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Wstrzymaj blokowanie na stronach w tej domenie" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"Własne listy filtrów" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Nie subskrybuj większej ilości list niż potrzebujesz, każda trochę spowalnia przeglądarkę! Więcej list można znaleźć tutaj." - }, - "typestylesheet":{ - "description":"A resource type", - "message":"css" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Zablokować więcej reklam:" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Usuń listę filtrów" + "lang_ukranian":{ + "description":"language", + "message":"Ukraiński" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Celem tego pytania jest ustalenie kto powinien otrzymać twój raport. Jeśli odpowiesz błędnie na to pytanie to raport zostanie wysłany do niewłaściwych osób, więc może zostać zignorowany." + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polski" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domena lub URL gdzie AdBlock nie powinien niczego blokować" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dodaj pozycję do menu pod prawym przyciskiem" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Nie włączaj AdBlock'a na..." }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Filmy i Flash" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokuj adres URL zawierający" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Zablokuj tę reklamę" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Jeśli nie chcesz oglądać reklam takich jak ta, możesz wyłączyć filtr Akceptowanych Reklam." }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"ilość godzin od aktualizacji: $hours$", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Zamknij" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"ilość sekund od aktualizacji: $seconds$", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Sprawdź w Firefoksie $chrome$", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Czy nasz zespół poprosił o pewne informacje debugowania? Kliknij tutaj, aby je uzyskać!" - }, - "typeobject":{ - "description":"A resource type", - "message":"obiekt interaktywny" - }, - "filterhungarian":{ - "description":"language", - "message":"Węgierski" - }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Zgłaszanie reklam jest dobrowolne. Pomaga ono innym użytkownikom poprzez włączanie listy filtrów, aby wszyscy mogli blokować zgłoszone reklamy. Jeśli nie masz ochoty na bezinteresowną pomoc innym - w porządku. Zamknij tę stronę i zablokuj reklamę tylko dla siebie." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Uwaga: Twój raport będzie dostępny publicznie. Pamiętaj, aby nie zamieszczać w nim niczego prywatnego." - }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Przeładuj stronę." - }, - "typepage":{ - "description":"A resource type", - "message":"strona" - }, - "filterdutch":{ - "description":"language", - "message":"Holenderski" - }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Nie zapomnij zapisać!" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Ostatni krok: Co sprawia, że to reklama?" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ będzie ustawiony jako $value$", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Czy na pewno chcesz usunąć $count$ blokad, które stworzyłeś do $host$?", "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." }, - "value":{ - "example":"AdBanner", - "content":"$2" + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Zamknij" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Zablokuj element:" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Celem tego pytania jest ustalenie kto powinien otrzymać twój raport. Jeśli odpowiesz błędnie na to pytanie to raport zostanie wysłany do niewłaściwych osób, więc może zostać zignorowany." }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filtr jest niepoprawny: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Wygląda dobrze" }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Ostrzeżenie: nie określono żadnego filtru!" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" + }, + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Dostosuj AdBlock'a" + }, + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nie znaleziono znanego złośliwego oprogramowania." }, "datacollectionoption":{ "description":"Checkbox on the 'General' tab of the Options page", "message":"Zezwalaj AdBlockowi na zbieranie anonimowych danych list filtrów" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Czy AdBlock ma powiadamiać Cię, gdy wykryje złośliwe oprogramowanie?" - }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Jeśli widzisz reklamę, nie twórz zgłoszenia błędu, stwórz zgłoszenie reklamy!" - }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Pokazuj reklamy wszędzie z wyjątkiem tych domen..." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Wstrzymaj blokowanie na tej stronie" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Ta funkcja AdBlocka nie działa na tej stronie, ponieważ wykorzystuje starą technologię. Możesz dodać zasoby do czarnej lub białej listy ręcznie w zakładce „Dostosuj” na stronie opcji." + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Fiński" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Pokaż liczbę zablokowanych reklam w menu AdBlock" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Ukryj ten przycisk" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opcje" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Listy filtrów blokujących reklamy" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Nie włączaj AdBlock'a na..." + "updateddaysago":{ + "description":"Label for subscription", + "message":"ilość dni od aktualizacji: $days$", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "typeobject":{ + "description":"A resource type", + "message":"obiekt interaktywny" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Co według ciebie będzie prawdziwe dla tej reklamy za każdym razem, gdy odwiedzasz tę stronę?" }, "blocked_ads":{ "description":"Title for popup menu section showing number of ads blocked", "message":"Zablokowanych reklam:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Własne filtry AdBlock'a (zalecane)" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Dodaj filtry dla innego języka: " + "typemain_frame":{ + "description":"A resource type", + "message":"strona" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Kłopoty fanboy'ów (usuwa kłopoty w internecie)" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Koreański" }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Upewnij się, że używasz właściwego filtru języka:" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Daj nam znać na naszej witrynie pomocy technicznej!" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS pasujący do" + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Cofnij moje blokady na tej domenie" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Aby ukryć przycisk, przejdź do opera://extensions i zaznacz opcję \"Nie pokazuj na pasku narzędzi\". Możesz przywrócić ten przycisk ponownie, odznaczając tą opcję." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Ręcznie edytować własne filtry:" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Pokaż linki do list filtrów" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Kliknij w reklamę, aby rozpocząć proces blokowania." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (zalecane)" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Krok 1: Określ co zablokować" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Zgłoś reklamę na stronie" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Mamy stronę, aby pomóc Ci dowiedzieć się o ludziach pracujących nad AdBlockiem!" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Domena:" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"tutaj" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Świetnie! Wszystko gotowe." + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock jest aktualny!" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Rosyjski" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Przeładuj stronę." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Pobieram subskrypcję... proszę czekać." + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Tylko w języku angielskim" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Uwaga: jeśli popełnisz błąd, może on zablokować inne filtry, także te oficjalne!
Przeczytaj poradnik tworzenia składni filtrów aby nauczyć się jak dodawać zaawansowane wpisy do czarnej i białej listy filtrów.." + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Używasz starej wersji AdBlock'a. Przejdź na stronę rozszerzeń, włącz \"Tryb programisty\" i kliknij \"Aktualizuj rozszerzenia\"" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Wsparcie dla AdBlock'a" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock jest wstrzymany." }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Dostosuj AdBlock'a" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"LUB, po prostu kliknij ten przycisk, aby wykonać wszystkie z powyższych: Wyłącz wszystkie inne rozszerzenia" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock jest aktualny!" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Dowiedz się więcej o złośliwym oprogramowaniu" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "filterisraeli":{ - "description":"language", - "message":"Hebrajskim" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Co nowego jest w najnowszej wersji? Zobacz listę zmian!" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Przepraszamy, AdBlock jest wyłączony na tej stronie przez jedną z list filtrów." + "filterantisocial":{ + "description":"A filter list", + "message":"Lista filtrów antyspołecznych (usuwa przyciski sieci społecznościowych)" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokuj adres URL zawierający" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Wyszukuję reklamy...

To potrwa tylko chwilę." }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock nie będzie działać na żadnej stronie pasującej do:" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Cofnij moje blokady na tej domenie" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Zapisz w tej przeglądarce tę samą listę filtrów, którą masz tutaj." }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Wpisz poniżej poprawny filtr i kliknij OK." + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Zablokuj reklamę" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"zaktualizowano 1 dzień temu" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Przekroczyłeś limit rozmiaru Dropboksa. Proszę usunąć niektóre wpisy z własnych lub wyłączonych filtrów i spróbować ponownie." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Funkcja w wersji beta" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Lub podaj adres URL:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ na tej stronie", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Uwaga: na wszystkich innych stronach będziesz widzieć reklamy!
Unieważnia to wszystkie inne filtry dla tych stron." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Jest aktualizacja dla AdBlock'a! Przejdź $here$ aby zaktualizować.
Uwaga: Jeśli chcesz otrzymywać aktualizacje automatycznie, po prostu kliknij na Safari > Preferencje > Rozszerzenia > Aktualizacje
i wybierz opcję \"Zainstaluj aktualizacje automatycznie\".", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "here":{ + "content":"", + "example":"here" } } }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Nie jesteś pewien? Po prostu kliknij 'Zablokuj!'." + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"W następującym filtrze:
$filter$
wystąpił błąd:
$message$", + "placeholders":{ + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" + } + } }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"zaktualizowano 1 godzinę temu" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Chcesz zobaczyć, co sprawia, że AdBlock działa?" }, - "optionsversion":{ - "description":"Version number", - "message":"Wersja $version$", + "filteradblock_custom":{ + "description":"A filter list", + "message":"Własne filtry AdBlock'a (zalecane)" + }, + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Typ" + }, + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Co to jest?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"lub AdBlock'a dla Chrome'a" }, "filterstabtitle":{ "description":"Title of the filter list tab", "message":"Subskrybuj listy filtrów" }, - "other":{ - "description":"Multiple choice option", - "message":"Innym" - }, - "typehiding":{ - "description":"A resource type", - "message":"ukryj" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Listy filtrów" - }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Przetłumaczył:" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Reklama pojawia się przed lub w trakcie filmu albo gry flash?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~site1.com|~site2.com|~news.site3.org" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Inne listy filtrów" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Wyłącz wszystkie rozszerzenia za wyjątkiem AdBlock'a odznaczając pole wyboru 'Włączone'. Pozostaw AdBlock'a włączonego." + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Filmy i Flash" }, - "buttonblockit":{ - "description":"Block button", - "message":"Zablokuj!" + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Świetnie! Teraz sprawdźmy, które rozszerzenie powodowało pojawianie się reklamy. Przejrzyj wszystkie rozszerzenia i włączaj je po kolei. Rozszerzenie, które przywraca reklamy należy usunąć, aby pozbyć się reklam." }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Zakończone!" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Listy filtrów blokują większość reklam. Możesz również:" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Zablokuj reklamę na tej stronie" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Aby ukryć przycisk, kliknij prawym przyciskiem myszy na pasek narzędzi Safari i wybierz \"Dostosuj pasek narzędzi\", a następnie przesuń przycisk AdBlocka poza pasek narzędzi. Możesz go przywrócić poprzez przeciągnięcie z powrotem na pasek." }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Upewnij się, że twoje listy filtrów są aktualne:" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Świetnie! Wszystko gotowe." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Nie chcę tego sprawdzać." + "filterhungarian":{ + "description":"language", + "message":"Węgierski" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"lub Chrome'a" }, - "lang_english":{ - "description":"language", - "message":"Angielski" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Subskrybuj" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Dostosuj" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Zapłać ile zechcesz!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Wstrzymaj AdBlock'a" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Edytuj zablokowane filtry:" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Czy na pewno chcesz subskrybować listę filtrów o nazwie $title$?", + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"To jest problem list filtrów. Zgłoś go tutaj: $link$", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Otwórz stronę rozszerzeń, aby włączyć rozszerzenia, które zostały poprzednio wyłączone." + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Zablokuj element:" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Zastosuj w domenie" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Uwaga: Twój raport będzie dostępny publicznie. Pamiętaj, aby nie zamieszczać w nim niczego prywatnego." }, - "filtereasylist_plun_korean":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Koreański" + "message":"Litewski" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Strona:" + "typepage":{ + "description":"A resource type", + "message":"strona" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Znalazłeś błąd?" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Arabski" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Czy reklama nadal się wyświetla?" }, - "lang_czech":{ - "description":"language", - "message":"Czeski" + "typeother":{ + "description":"A resource type", + "message":"inne" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Zapłać ile zechcesz!" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Kliknij: Zaktualizuj filtry!" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"lub AdBlock'a dla Chrome'a" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Upewnij się, że używasz właściwego filtru języka:" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Zablokuj reklamę" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Upewnij się, że twoje listy filtrów są aktualne:" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Aby ukryć przycisk, przejdź do opera://extensions i zaznacz opcję \"Nie pokazuj na pasku narzędzi\". Możesz przywrócić ten przycisk ponownie, odznaczając tą opcję." }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Coś poszło nie tak podczas sprawdzania aktualizacji." }, - "filterdanish":{ - "description":"language", - "message":"Duński" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Kliknij w menu Safari → Ustawienia → Rozszerzenia." }, - "typesub_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"ramka" - }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Edytuj" - }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Wyszukuję reklamy...

To potrwa tylko chwilę." - }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domena lub URL gdzie AdBlock nie powinien niczego blokować" + "message":"object_subrequest" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Wyszukiwanie aktualizacji (powinno to potrwać kilka sekund)..." + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Potwierdź" }, - "typescript":{ - "description":"A resource type", - "message":"skrypt" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Strona:" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ łącznie", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, "reloadadpage":{ "description":"Instruction on ad report page", "message":"Odśwież stronę z reklamą." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Zainstaluj Firefoksa $chrome$ jeśli go nie masz.", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } - }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Aktualizacje AdBlocka" - }, - "no":{ - "description":"A negative response to a question", - "message":"Nie" - }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Zbyt wiele subskrybowanych list może spowolnić pracę AdBlock'a. Korzystanie ze zbyt wielu list może doprowadzić nawet do wykrzaczenia przeglądarki na niektórych stronach. Naciśnij przycisk OK, aby mimo tego zasubskrybować tą listę." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Anulowano subskrypcje." }, - "lang_ukranian":{ - "description":"language", - "message":"Ukraiński" + "typemedia":{ + "description":"A resource type", + "message":"audio/wideo" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"ilość minut od aktualizacji: $minutes$", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francuski" - }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"LUB, po prostu kliknij ten przycisk, aby wykonać wszystkie z powyższych: Wyłącz wszystkie inne rozszerzenia" + "filterlatvian":{ + "description":"A filter list", + "message":"Łotewski" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Zablokuj reklamę na tej stronie" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"Właśnie zaktualizowano" + "buttonblockit":{ + "description":"Block button", + "message":"Zablokuj!" }, - "savebutton":{ - "description":"Save button", - "message":"Zapisz" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Zatrzymać blokowanie reklam:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Uwaga: na wszystkich innych stronach będziesz widzieć reklamy!
Unieważnia to wszystkie inne filtry dla tych stron." + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Kliknij tutaj: Wyłącz Akceptowane Reklamy" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Zablokuj te powiadomienia" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Pozwól dodać do białej listy konkretne kanały YouTube" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Subskrybuję listę filtrów..." + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"W jakim języku jest ta strona?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"ilość dni od aktualizacji: $days$", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "typesubdocument":{ - "description":"A resource type", - "message":"ramka" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (ochrona prywatności)" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Usuń listę filtrów" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Czeski" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Używasz starej wersji AdBlock'a. Przejdź na stronę rozszerzeń, włącz \"Tryb programisty\" i kliknij \"Aktualizuj rozszerzenia\"" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Nie można jeszcze blokować reklam wewnątrz Flasha oraz innych wtyczek." }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opcje AdBlocka" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Szukanie złośliwego oprogramowania, które mogłoby wprowadzać reklamy:" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Możesz przesunąć suwak poniżej, aby dokładnie określić na jakich stronach AdBlock ma być wyłączony." }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Wyczyść tą liste" + "typehiding":{ + "description":"A resource type", + "message":"ukryj" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Lista filtrów antyspołecznych (usuwa przyciski sieci społecznościowych)" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock jest wyłączony na tej stronie." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Pokazuj komunikaty debugowania w logach konsoli (spowalnia to jednak AdBlock'a)" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Reklama pojawia się przed lub w trakcie filmu albo gry flash?" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Przekroczyłeś limit rozmiaru Dropboksa. Proszę usunąć niektóre wpisy z własnych lub wyłączonych filtrów i spróbować ponownie." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Rosyjski" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Wznów AdBlock'a" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Hiszpański" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Zrobione! Odświeżyliśmy stronę z reklamą. Prosimy sprawdzić tę stronę, aby zobaczyć czy reklama zniknęła, a wtedy wrócić na tę stronę i odpowiedzieć na pytanie poniżej." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Zablokuj tę reklamę" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Niemiecki" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Uwaga: ten filtr zablokuje wszystkie elementy $elementtype$ na tej stronie!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"tutaj" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Włącz tryb zgodności „ClickToFlash”" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Obejście problemu niedziałających filmów na hulu.com (wymaga ponownego uruchomienia przeglądarki)" + "no":{ + "description":"A negative response to a question", + "message":"Nie" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Wyklucz" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Włącz AdBlocka na tej stronie" }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Wyłącz wszystkie rozszerzenia z wyjątkiem AdBlocka:" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filtr który można zmienić na stronie opcji:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"W jakim języku jest ta strona?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Pokaż liczbę zablokowanych reklam na przycisku AdBlock" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Niepowodzenie!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Czy na pewno chcesz usunąć $count$ blokad, które stworzyłeś do $host$?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Wstrzymaj AdBlock'a" + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Subskrybuj tę listę filtrów i spróbuj ponownie: $list_title$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "typeimage":{ - "description":"A resource type", - "message":"obraz" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Przetłumaczył:" + "lang_english":{ + "description":"language", + "message":"Angielski" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"ŁADOWANIE..." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dodaj pozycję do menu pod prawym przyciskiem" }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Kliknij w reklamę prawym przyciskiem myszy by ją zablokować, lub zablokuj ją samodzielnie tutaj." + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Znalazłeś reklamę na jakiejś stronie? Pomożemy Ci znaleźć właściwe miejsce do zgłoszenia tego!" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Aby ukryć przycisk, kliknij prawym przyciskiem myszy na ikonie AdBlocka a następnie wybierz \"Ukryj przycisk\". Możesz ponownie włączyć pokazywanie go pod adresem chrome://extensions/." + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Wyłącz wszystkie rozszerzenia z wyjątkiem AdBlocka:" }, - "filtereasylist_plus_romanian":{ + "lang_russian":{ "description":"language", - "message":"Rumuński" + "message":"Rosyjski" }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Edytuj zablokowane filtry:" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Jeśli widzisz reklamę, nie twórz zgłoszenia błędu, stwórz zgłoszenie reklamy!" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Używasz starej wersji Safari. Pobierz najnowszą wersję Safari, aby móc za pomocą przycisku na pasku narzędzi wstrzymać pracę AdBlock'a, dodać stronę do białej listy i zgłosić napotkane reklamy. Aktualizuj teraz." }, - "filteracceptable_ads":{ + "filtereasyprivacy":{ "description":"A filter list", - "message":"Akceptowane reklamy (zalecane)" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Coś poszło nie tak podczas sprawdzania aktualizacji." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Aby ukryć przycisk, kliknij prawym przyciskiem myszy na pasek narzędzi Safari i wybierz \"Dostosuj pasek narzędzi\", a następnie przesuń przycisk AdBlocka poza pasek narzędzi. Możesz go przywrócić poprzez przeciągnięcie z powrotem na pasek." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Wyłączyliśmy wszystkie inne rozszerzenia. Teraz odświeżymy stronę z reklamą. Sekundę, prosimy." - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"zaktualizowano 1 minutę temu" + "message":"EasyPrivacy (ochrona prywatności)" }, - "typemain_frame":{ - "description":"A resource type", - "message":"strona" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ będzie ustawiony jako $value$", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Kliknij w reklamę prawym przyciskiem myszy by ją zablokować, lub zablokuj ją samodzielnie tutaj." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", - "placeholders":{ - "here":{ - "content":"", - "example":"here" - } - } + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Zakończone!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Lub podaj adres URL:" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Wznów AdBlock'a" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Używasz starej wersji Safari. Pobierz najnowszą wersję Safari, aby móc za pomocą przycisku na pasku narzędzi wstrzymać pracę AdBlock'a, dodać stronę do białej listy i zgłosić napotkane reklamy. Aktualizuj teraz." + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Dodaj filtry dla innego języka: " }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Wybierz język -- " + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"ŁADOWANIE..." }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Kliknij w menu Safari → Ustawienia → Rozszerzenia." + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Czy nasz zespół poprosił o pewne informacje debugowania? Kliknij tutaj, aby je uzyskać!" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Zainstaluj Adblock Plus dla Firefoxa $chrome$, jeśli go nie posiadasz.", + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Ochrona przed złośliwym oprogramowaniem" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Zgłoś reklamę na stronie" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Pokazuj komunikaty debugowania w logach konsoli (spowalnia to jednak AdBlock'a)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Zainstaluj Firefoksa $chrome$ jeśli go nie masz.", "placeholders":{ "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Zatrzymać blokowanie reklam:" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Przeciągaj suwak dopóki reklama nie zostanie właściwie zablokowana, a inne elementy witryny pozostaną nienaruszone." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Przekroczono ilość pamięci z jakiej AdBlock może korzystać. Proszę anulować subskrypcje niektórych list filtrów!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Najpopularniejsze rozszerzenie Chrome, korzysta z niego ponad 40 milionów użytkowników! Blokuje reklamy w całej sieci." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Czy reklama nadal się wyświetla?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Znalazłeś błąd?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Wsparcie" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Dowiedz się więcej o złośliwym oprogramowaniu" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bułgarski" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Chcesz zobaczyć, co sprawia, że AdBlock działa?" + "typescript":{ + "description":"A resource type", + "message":"skrypt" }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Świetnie! Teraz sprawdźmy, które rozszerzenie powodowało pojawianie się reklamy. Przejrzyj wszystkie rozszerzenia i włączaj je po kolei. Rozszerzenie, które przywraca reklamy należy usunąć, aby pozbyć się reklam." + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Niepowodzenie!" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Listy filtrów" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filtr który można zmienić na stronie opcji:" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Jestem zaawansowanym użytkownikiem, pokaż mi zaawansowane opcje" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Ręcznie edytować własne filtry:" + "filterchinese":{ + "description":"language", + "message":"Chiński" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"W następującym filtrze:
$filter$
wystąpił błąd:
$message$", + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filtr jest niepoprawny: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Subskrybuję listę filtrów..." }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Przeciągaj suwak dopóki reklama nie zostanie właściwie zablokowana, a inne elementy witryny pozostaną nienaruszone." + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Otwórz stronę rozszerzeń, aby włączyć rozszerzenia, które zostały poprzednio wyłączone." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Typ" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Zablokuj te powiadomienia" }, - "lang_slovak":{ - "description":"language", - "message":"Słowacki" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Ilość elementów pasujących do filtru na tej stronie: $matchcount$.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"lub Chrome'a" + "updatedhourago":{ + "description":"Label for subscription", + "message":"zaktualizowano 1 godzinę temu" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Czy reklama wyświetla się też w tej przeglądarce?" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Wstrzymaj blokowanie na tej stronie" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Wybierz język -- " }, - "filtereasylist_plus_lithuania":{ - "description":"language", - "message":"Litewski" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Czy AdBlock ma powiadamiać Cię, gdy wykryje złośliwe oprogramowanie?" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokuj reklamy tylko na tych stronach:" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonezyjski" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Daj nam znać na naszej witrynie pomocy technicznej!" + "typeimage":{ + "description":"A resource type", + "message":"obraz" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock jest wstrzymany." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Edytuj" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Przekroczono ilość pamięci z jakiej AdBlock może korzystać. Proszę anulować subskrypcje niektórych list filtrów!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Pobieranie listy filtrów nie powiodło się!" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Nie można jeszcze blokować reklam wewnątrz Flasha oraz innych wtyczek." + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ łącznie", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "buttonok":{ - "description":"OK button", - "message":"Okej!" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Wsparcie" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Znalazłeś reklamę na jakiejś stronie? Pomożemy Ci znaleźć właściwe miejsce do zgłoszenia tego!" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Zablokuj reklamę poprzez jej adres URL" + }, + "buttoncancel":{ + "description":"Cancel button", + "message":"Anuluj" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, możesz zablokować reklamę tylko dla siebie na stronie opcji. Dzięki!" + "savereminder":{ + "description":"Reminder to press save", + "message":"Nie zapomnij zapisać!" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Ogólne" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Jeśli nie chcesz oglądać reklam takich jak ta, możesz wyłączyć filtr Akceptowanych Reklam." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Otwórz w niej stronę na której widzisz reklamę." }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Akceptowane reklamy (zalecane)" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "optionsversion":{ + "description":"Version number", + "message":"Wersja $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeother":{ - "description":"A resource type", - "message":"inne" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Potwierdź" + "filtericelandic":{ + "description":"language", + "message":"Islandzki" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Nie określono żadnego filtru!" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Zgłaszanie reklam jest dobrowolne. Pomaga ono innym użytkownikom poprzez włączanie listy filtrów, aby wszyscy mogli blokować zgłoszone reklamy. Jeśli nie masz ochoty na bezinteresowną pomoc innym - w porządku. Zamknij tę stronę i zablokuj reklamę tylko dla siebie." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Czy na pewno chcesz subskrybować listę filtrów o nazwie $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"nieznane" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Kod źródłowy jest swobodnie dostępny!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"Fiński" + "message":"Holenderski" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Wpisz poniżej poprawny filtr i kliknij OK." }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock jest wyłączony na tej stronie." + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Rozszerzenia, które zostały poprzednio wyłączone, zostały włączone ponownie." }, - "typemedia":{ - "description":"A resource type", - "message":"audio/wideo" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Ilość elementów pasujących do filtru na tej stronie: 1." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japoński" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Zezwalaj na nienatrętne reklamy" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Wyczyść tą liste" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"To jest problem list filtrów. Zgłoś go tutaj: $link$", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"ilość godzin od aktualizacji: $hours$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Wstrzymaj blokowanie na stronach w tej domenie" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Pobieranie listy filtrów nie powiodło się!" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Wróć" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Pokaż linki do list filtrów" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Tylko w języku angielskim" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Anuluj" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opcje AdBlocka" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Pomóż w rozpowszechnianiu!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Funkcja w wersji beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Możesz przesunąć suwak poniżej, aby dokładnie określić na jakich stronach AdBlock ma być wyłączony." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock zablokował pobieranie z tej strony, ponieważ jest znana z posiadania złośliwego oprogramowania." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Sprawdź w Firefoksie $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Nie subskrybuj większej ilości list niż potrzebujesz, każda trochę spowalnia przeglądarkę! Więcej list można znaleźć tutaj." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Włącz tryb zgodności „ClickToFlash”" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Wyszukiwanie aktualizacji (powinno to potrwać kilka sekund)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Subskrybuj tę listę filtrów i spróbuj ponownie: $list_title$", + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Zastosuj w domenie" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"Właśnie zaktualizowano" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"ilość minut od aktualizacji: $minutes$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Aby zgłosić reklamę, musisz być podłączony do internetu." + "lang_czech":{ + "description":"language", + "message":"Czeski" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Masz pytanie lub nowy pomysł?" + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Zezwalaj na nienatrętne reklamy" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Nieprawidłowy adres URL listy. Zostanie skasowany." + "filterswedish":{ + "description":"A filter list", + "message":"Szwedzki" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Krok 1: Określ co zablokować" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Wsparcie dla AdBlock'a" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Typ" }, - "yes":{ - "description":"A positive response to a question", - "message":"Tak" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filteritalian":{ + "filtereasylist_plus_french":{ "description":"language", - "message":"Włoski" + "message":"Francuski" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"zaktualizowano 1 minutę temu" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Wygląda dobrze" + "typesub_frame":{ + "description":"A resource type", + "message":"ramka" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (zalecane)" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - kliknij, aby zobaczyć szczegóły" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Ostrzeżenie: nie określono żadnego filtru!" } } \ No newline at end of file diff --git a/_locales/pt_BR/messages.json b/_locales/pt_BR/messages.json index e120c47f..753c7667 100644 --- a/_locales/pt_BR/messages.json +++ b/_locales/pt_BR/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Anexe uma captura de tela:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nenhum malware conhecido foi encontrado." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Naquele navegador, aplique a mesma lista de filtros que aplicou aqui." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Tem alguma pergunta ou ideia nova?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Nesse navegador, carregue a página com a propaganda." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opções" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Sueco" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Bloqueie mais propagandas:" - }, - "lang_russian":{ - "description":"language", - "message":"Russo" + "message":"EasyList (recomendado)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Subscrição cancelada." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ nesta página", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Chinês" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Se você tiver criado um filtro ativo usando o assistente de \"bloquear um anúncio\", cole-o na caixa abaixo:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Lista de filtro anti-social (remove os botões de mídia social)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Encontrou um anúncio em uma página da web? Nós ajudaremos você a encontrar o lugar certo para relatar isso!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Mostrar o número de anúncios bloqueados no botão AdBlock" + "message":"Polonês" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"O código-fonte está disponível gratuitamente!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS para corresponder" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"atualizado 1 minuto atrás" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Excluir" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Erro ao baixar este filtro!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Eu não quero ver isso" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Por favor, reinicie o Safari para concluir a desativação do bloqueio de conteúdo." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Bloquear uma propaganda por sua URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Esconder este botão" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Seja cuidadoso: se você fizer um erro aqui muitos outros filtros, incluindo os filtros oficiais, podem quebrar também!
Leia o tutorial de sintaxe de filtro para aprender como adicionar filtros avançados de listas negras e listas brancas." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Eu irei baixar as atualizações automaticamente; você também pode atualizar agora" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"A propaganda também aparece naquele navegador?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formato: ~site1.com|~site2.com|~noticias.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Se você prefere não ver anúncios como este, você pode querer deixar a lista de filtros de Anúncios Aceitáveis desligada." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Estoniano" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tipo" + "message":"Lituano" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Há uma atualização disponível para o AdBlock! Clique $here$ para atualizar.
Nota: Se quiser receber atualizações automáticas, clique em Safari > Preferências > Extensões > Atualizações
e ative a opção 'Instalar Atualizações Automaticamente'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Subscreva-se a essa lista de filtros, então tente novamente: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"O que é isto?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Não subscreva-se para mais do que você precisa -- cada um deixa você um pouquinho mais devagar! Créditos e mais listas podem ser encontrados aqui." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Esse recurso do AdBlock não funciona neste site poque ele usa tecnologia desatualizada. Você pode colocar na lista negra ou na lista branca os recursos manualmente pela guia 'Personalizar' da página de opções." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polonês" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Saiba mais sobre o programa de Anúncios Aceitáveis." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"atualizado $seconds$ segundos atrás", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Seu computador pode estar infectado por malware. Clique aqui para obter mais informações." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"subrequisito de objeto" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Mostrar propagandas em uma página da web ou domínio" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Húngaro" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Nota: seu relatório pode se tornar disponível publicamente. Mantenha isso em mente antes de incluir qualquer coisa privada." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Por favor, desative algumas listas de filtros. Mais informações nas opções do AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Eslovaco" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Origem do Filtro: $list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Instale o AdBlock Plus para Firefox $chrome$ se você não instalou.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Desculpe, o AdBlock está desativado nesta página por uma das suas listas de filtros." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"O filtro é inválido: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Não temos uma lista de filtros padrão para essa língua.
Por favor tente encontrar uma lista adequada que suporte esta língua $link$ ou bloqueie essa propaganda você mesmo na aba 'Personalizar'.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Aviso: nenhum filtro especificado!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock está desativado nesta página." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Clique na propaganda, e eu irei mostrar como bloqueá-la." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Mostrar propagandas em todos os lugares, exceto nesses domínios..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Moldura superior" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opções" + "typestylesheet":{ + "description":"A resource type", + "message":"definição de estilo" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"solicitação xmlhttp" + "message":"desconhecido" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Desculpe, o AdBlock está desativado nesta página por uma das suas listas de filtros." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Propagandas bloqueadas:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Adicionar filtros para outro idioma: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Terceiros" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Clique na propaganda, e eu irei mostrar como bloqueá-la." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Nenhum filtro especificado!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grego" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Se você está vendo um anúncio, não faça um relatório de erro, faça um relatório de anúncio!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Você está usando uma versão antiga do AdBlock. Por favor vá para 123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Submoldura" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Último passo: o que faz disso uma propaganda?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"atualizado 1 hora atrás" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Se você está vendo um anúncio, não faça um relatório de erro, faça um relatório de anúncio!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Coreano" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ou Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Qual é o seu nome?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"A extensão mais popular do Chrome, com mais de 40 milhões de usuários! Bloqueia anúncios em toda a web." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Você está usando uma versão antiga do Safari. Pegue a versão mais recente para usar o botão do AdBlock na barra de ferramenta para pausar o AdBlock, adicionar sites da web a lista branca, e reportar propagandas. Atualize agora." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Mostrar todas as solicitações" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandês" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Eu não quero ver isso" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Ucraniano" }, - "yes":{ - "description":"A positive response to a question", - "message":"Sim" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nenhum malware conhecido foi encontrado." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Desfazer os meus bloqueios neste domínio" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Por favor, desative algumas listas de filtros. Mais informações nas opções do AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personalizar" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Cancelamos sua subscrição em Anúncios Aceitáveis, porque você ativou o bloqueio de conteúdo do Safari. Você só pode selecionar um de cada vez. (Por que?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pausar AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Também temos uma página para ajudá-lo a descobrir as pessoas por trás do AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Você tem certeza que deseja assinar a lista de filtro $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"aqui" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Onde exatamente nessa página está o anúncio? Como ele parece?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"solicitação xmlhttp" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ou AdBlock para Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Recarregue a página." }, - "typestylesheet":{ - "description":"A resource type", - "message":"definição de estilo" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Em qual língua a página está escrita?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock está pausado." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Limite da regra de Bloqueio de Conteúdo ultrapassado" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Retomar o AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Encontrando propagandas...

Isso só levará um momento." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock está desativado nesta página." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"O domínio ou url onde AdBlock não deve bloquear nada" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Naquele navegador, aplique a mesma lista de filtros que aplicou aqui." }, - "typescript":{ - "description":"A resource type", - "message":"script" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Bloqueie uma propaganda" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ no total", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Aviso: em todos os outros sites você verá propagandas!
Isso anula todas os outros filtros para esses sites." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Há uma atualização disponível para o AdBlock! Clique $here$ para atualizar.
Nota: Se quiser receber atualizações automáticas, clique em Safari > Preferências > Extensões > Atualizações
e ative a opção 'Instalar Atualizações Automaticamente'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Tudo pronto! Em breve, entraremos em contato, provavelmente dentro de um dia, ou dois se for um feriado. Entretanto, aguarde um e-mail do AdBlock. Você irá encontrar um link para o seu tíquete no nosso site de ajuda. Se preferir acompanhar por e-mail, pode fazer isso também!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Terminado!" }, - "no":{ - "description":"A negative response to a question", - "message":"Não" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Filtros personalizados do AdBlock (recomendado)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Algo deu errado. Nenhum recurso foi enviado. Esta página irá fechar. Tente recarregar a página." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tipo" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"O que é isto?" + }, + "filterjapanese":{ "description":"language", - "message":"Ucraniano" + "message":"Japonês" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"atualizado $minutes$ minutos atrás", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Origem do Filtro: $list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Cancelamos sua subscrição em Anúncios Aceitáveis, porque você ativou o bloqueio de conteúdo do Safari. Você só pode selecionar um de cada vez. (Por que?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Você não está mais inscrito na lista de filtros de Anúncios Aceitáveis." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Proteção contra malware" - }, - "savebutton":{ - "description":"Save button", - "message":"Salvar" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Aviso: em todos os outros sites você verá propagandas!
Isso anula todas os outros filtros para esses sites." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Desativar estas notificações" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Subscrevendo-se a lista de filtros..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Subscreva a listas de filtros" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Você está usando uma versão antiga do AdBlock. Por favor vá para Atualize meus filtros!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Para ocultar o botão, clique com o botão direito na barra de ferramentas do Safari e escolha Personalizar Barra de Ferramentas e, em seguida, arraste o botão do AdBlock para fora da Barra de Ferramentas. Você pode mostrar o botão novamente, arrastando-o para a barra de ferramentas." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Houve um erro ao processar seu pedido." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Elemento oculto" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Para ocultar o botão, vá para opera://extensions e marque a opção 'Ocultar da barra de ferramentas'. Você pode mostrar o botão novamente desmarcando esta opção." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"página" + "message":"subrequisito de objeto" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Página:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Pronto! Nós recarregamos a página com o anúncio. Por favor, verifique a página para ver se o anúncio desapareceu. Em seguida, volte a esta página e responda à pergunta abaixo." + "buttonblockit":{ + "description":"Block button", + "message":"Bloqueie isto!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Ou insira uma URL:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permitir anúncios de canais específicos do YouTube" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Você está usando uma versão antiga do Safari. Pegue a versão mais recente para usar o botão do AdBlock na barra de ferramenta para pausar o AdBlock, adicionar sites da web a lista branca, e reportar propagandas. Atualize agora." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Clicar no menu Safari &rarr Preferências &rarr Extensões." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Pare de bloquear propagandas:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Ainda não podemos bloquear propagandas no Flash e em outros plugins. Estamos aguardando suporte do navegador e da WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Bloqueie isto!" + "filterhungarian":{ + "description":"language", + "message":"Húngaro" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"A propaganda ainda aparece?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Bloqueie esta propaganda" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Búlgaro" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Ótimo. Agora vamos descobrir qual extensão é a causa. Vá ativando cada extensão uma por vez. A extensão que trazer de volta o(s) anúncio(s) é aquela que você precisa desinstalar para livrar-se dos anúncios." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Ativar o AdBlock nesta página" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Mostrar o número de anúncios bloqueados no botão AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Falhou!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Edite seus filtros manualmente:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pausar AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Italiano" - }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "message":"Inglês" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tipo" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Adicionar itens ao menu de contexto" }, - "lang_slovak":{ - "description":"language", - "message":"Eslovaco" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Acesso nosso site de suporte." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Subscreva a listas de filtros" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Lista de Remoção de Avisos Adblock (remove avisos sobre uso de bloqueadores de anúncios)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Você pode ligar novamente isto e apoiar os sites que você ama, selecionando \"Permitir alguma publicidade não-intrusiva\" abaixo." + "typemain_frame":{ + "description":"A resource type", + "message":"página" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"A propaganda também aparece naquele navegador?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Tem certeza que deseja remover os $count$ bloqueios que criou em $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Não usar nesta página" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legenda: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"atualizado $minutes$ minutos atrás", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Anexe uma captura de tela:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Lituano" + "message":"Romeno" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Conte-nos no nosso site de suporte!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar os filtros desabilitados:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock está pausado." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Submoldura" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Ainda não podemos bloquear propagandas no Flash e em outros plugins. Estamos aguardando suporte do navegador e da WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Recarregue a página com a propaganda." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Ativar o bloqueio de conteúdo do Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Instale o Firefox $chrome$ se você não o tem.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Geral" + "message":"Listas de filtros" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Se você prefere não ver anúncios como este, você pode querer deixar a lista de filtros de Anúncios Aceitáveis desligada." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Se você tiver criado um filtro ativo usando o assistente de \"bloquear um anúncio\", cole-o na caixa abaixo:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Seu computador pode estar infectado por malware. Clique aqui para obter mais informações." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Esse arquivo é muito grande. Por favor, certifique-se de que seu arquivo tem menos de 10 MB." }, - "typeother":{ - "description":"A resource type", - "message":"outro" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock não irá atuar em qualquer página que corresponde a:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Nenhum filtro especificado!" + "filterchinese":{ + "description":"language", + "message":"Chinês" }, - "typeunknown":{ - "description":"A resource type", - "message":"desconhecido" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"O filtro é inválido: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Subscrevendo-se a lista de filtros..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Abra a página de extensões para habilitar as extensões que foram desabilitadas anteriormente." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Desativar estas notificações" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Turco" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Não subscreva-se para mais do que você precisa -- cada um deixa você um pouquinho mais devagar! Créditos e mais listas podem ser encontrados aqui." + }, + "typesubdocument":{ "description":"A resource type", - "message":"áudio/vídeo" + "message":"moldura" }, - "filterjapanese":{ - "description":"language", - "message":"Japonês" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonésio" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Permitir algumas propagandas não invasivas" + "typeimage":{ + "description":"A resource type", + "message":"imagem" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ no total", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Cancelar" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Você pode deslizar abaixo para mudar exatamente em que páginas o AdBlock não atuará." + "savereminder":{ + "description":"Reminder to press save", + "message":"Não se esqueça de salvar!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"seletor" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Desligamos o bloqueio de conteúdo do Safari, porque você optou por permitir anúncios publicitários não-intrusivos. Você só pode selecionar um de cada vez. (Por que?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Última etapa: relatar o problema para nós." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Tente no Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Islandês" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Para relatar um anúncio, você deve estar conectado à internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Listas de Filtro de Bloqueio de Propaganda" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (recomendado)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Bloqueie propagandas apenas nesses sites:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Carregado na página com domínio: $domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Reportando uma propaganda" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"As extensões que foram desabilitadas anteriormente foram reabilitadas." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Listas de Filtro de Bloqueio de Propaganda" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Como?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Limpar esta lista" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permitir anúncios de canais específicos do YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Ajude a divulgar!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Terceiros" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (remove irritações na Web)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - clique para detalhes" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opções do AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Houve um erro ao processar seu pedido." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"atualizado $hours$ horas atrás", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"atualizado 1 hora atrás" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russo e Ucraniano" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Verificando se há atualizações (deve demorar apenas alguns segundos)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"O que há de novo na versão mais recente? Veja o changelog!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"atualizado agora mesmo" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"As extensões que foram desabilitadas anteriormente foram reabilitadas." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Clique com o botão direito na propaganda para bloqueá-la -- ou bloqueie-a aqui manualmente." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grego" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Verificação de malware que poderia estar injetando anúncios:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Esconder uma seção de uma página da web" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Suporte AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Vídeos e Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tipo" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"O que você acha que será verdade sobre essa propaganda toda vez que visitar esta página?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Deslize o cursor até que a propaganda esteja bloqueada corretamente na página, e o elemento bloqueado pareça útil." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Ativar o AdBlock nesta página" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"atualizado 1 minuto atrás" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Voltar" + "typesub_frame":{ + "description":"A resource type", + "message":"moldura" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"As listas de filtros bloqueiam a maioria das propagandas na web. Você também pode:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Recurso bloqueado" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"As informações a seguir também serão incluídas no relatório de anúncio." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Dinamarquês" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Verificação dos filtros de Anúncios Aceitáveis:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Mostrar propagandas em uma página da web ou domínio" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Você pode ligar novamente isto e apoiar os sites que você ama, selecionando \"Permitir alguma publicidade não-intrusiva\" abaixo." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Baixando... por favor aguarde." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"URL de lista inválida. Será deletada." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opções gerais" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Desmarque a opção 'ativar' próxima a todas as extensões exceto AdBlock. Deixe AdBlock ativado." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Nesse navegador, carregue a página com a propaganda." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Mostrar propagandas em todos os lugares, exceto nesses domínios..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Você esqueceu de anexar uma captura de tela! Nós não podemos ajudá-lo sem ver o(s) anúncio(s) que você está relatando." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Isso corresponde a 1 item nesta página." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"E crie manualmente um tíquete, copiando e colando as informações abaixo para a seção \"Fill in any details you think will help us understand your issue\"." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Seja cuidadoso: se você fizer um erro aqui muitos outros filtros, incluindo os filtros oficiais, podem quebrar também!
Leia o tutorial de sintaxe de filtro para aprender como adicionar filtros avançados de listas negras e listas brancas." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Canal de lista branca $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Para esconder o botão, clique com o botão direito e escolha Esconder Botão. Você pode mostrá-lo novamente em chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opções gerais" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock não irá atuar em qualquer página que corresponde a:" + "filterisraeli":{ + "description":"language", + "message":"Hebraico" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Não temos uma lista de filtros padrão para essa língua.
Por favor tente encontrar uma lista adequada que suporte esta língua $link$ ou bloqueie essa propaganda você mesmo na aba 'Personalizar'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Esse recurso do AdBlock não funciona neste site poque ele usa tecnologia desatualizada. Você pode colocar na lista negra ou na lista branca os recursos manualmente pela guia 'Personalizar' da página de opções." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Subscrever" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tcheco e Eslovaco" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sou um usuário avançado, mostre-me opções avançadas" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Desativamos todas as outras extensões. Agora iremos recarregar a página com o anúncio. Um segundo, por favor." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Espanhol" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Outras Listas de Filtro" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Carregado na página com domínio: $domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Eu irei baixar as atualizações automaticamente; você também pode atualizar agora" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Clique nisto: Atualize meus filtros!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Mostrar todas as solicitações" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Quanto mais listas de filtros você usa, mais devagar o AdBlock funciona. Usar listas demais pode até travar o seu navegador em alguns sites da web. Pressione OK para subscrever-se a esta lista mesmo assim." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Último passo: o que faz disso uma propaganda?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Ótimo! Está tudo pronto." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Isso corresponde a $matchcount$ itens nesta página.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Também temos uma página para ajudá-lo a descobrir as pessoas por trás do AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Abra a página de extensões." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonésio" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Tudo pronto! Em breve, entraremos em contato, provavelmente dentro de um dia, ou dois se for um feriado. Entretanto, aguarde um e-mail do AdBlock. Você irá encontrar um link para o seu tíquete no nosso site de ajuda. Se preferir acompanhar por e-mail, pode fazer isso também!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turco" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Saiba mais sobre o programa de Anúncios Aceitáveis." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Bloqueie uma propaganda" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"O AdBlock deve notificá-lo quando detectar malware?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Listas de Filtro Personalizadas" + "updateddayago":{ + "description":"Label for subscription", + "message":"atualizado 1 dia atrás" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL da moldura: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"O propósito desta pergunta é determinar quem deve receber seu relatório. Se você responder esta pergunta incorretamente, o relatório sera enviado para as pessoas erradas, logo poderá ser ignorado." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Adicionar itens ao menu de contexto" - }, - "typeselector":{ - "description":"A resource type", - "message":"seletor" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Bloqueie esta propaganda" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"A nossa equipa solicitou algumas informações de depuração? Clique aqui para isso!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Alemão" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Não use o AdBlock em..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Relatar anúncios é algo voluntário. Isto ajuda outras pessoas, permitindo que os mantenedores da lista de filtros possam bloquear o anúncio para todo mundo. Se você não está se sentido altruísta agora, sem problemas. Feche esta página e bloqueie o anúncio apenas para si mesmo." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Esse nome de arquivo é muito longo. Por favor, dê a seu arquivo um nome mais curto." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Elemento oculto" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"atualizado $seconds$ segundos atrás", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Recarregue a página." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Não usar nesta página" }, - "typepage":{ - "description":"A resource type", - "message":"página" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Conte-nos no nosso site de suporte!" }, - "filterdutch":{ - "description":"language", - "message":"Holandês" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Esse nome de arquivo é muito longo. Por favor, dê a seu arquivo um nome mais curto." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Não se esqueça de salvar!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Pronto! Nós recarregamos a página com o anúncio. Por favor, verifique a página para ver se o anúncio desapareceu. Em seguida, volte a esta página e responda à pergunta abaixo." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Verificando se há atualizações (deve demorar apenas alguns segundos)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Todos os recursos" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Subscreva-se a essa lista de filtros, então tente novamente: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Canal de lista branca $name$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"O AdBlock deve notificá-lo quando detectar malware?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Recursos" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Mostrar o número de anúncios bloqueador no menu AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Site:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Reportando uma propaganda" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Filtros personalizados do AdBlock (recomendado)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Como?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Não usar em páginas neste domínio" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Listas de Filtro Personalizadas" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Bloqueie mais propagandas:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Informações requeridas estão ausentes ou inválidas. Por favor, preencha as perguntas que têm uma borda vermelha." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"O domínio ou url onde AdBlock não deve bloquear nada" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letão" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Você não está mais inscrito na lista de filtros de Anúncios Aceitáveis." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Certifique-se que está usando o(s) filtro(s) de idioma correto(s):" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (remove irritações na Web)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS para corresponder" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"O AdBlock bloqueou um download de um site conhecido por conter malware." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Para ocultar o botão, vá para opera://extensions e marque a opção 'Ocultar da barra de ferramentas'. Você pode mostrar o botão novamente desmarcando esta opção." + "savebutton":{ + "description":"Save button", + "message":"Salvar" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Não tem certeza? Apenas pressione 'Bloqueie isto!' abaixo." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Filtro correspondente" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Baixando... por favor aguarde." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Todos os recursos" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Última etapa: relatar o problema para nós." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"O AdBlock está atualizado!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Não usar em páginas neste domínio" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Onde exatamente nessa página está o anúncio? Como ele parece?" }, - "filterisraeli":{ - "description":"language", - "message":"Hebraico" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Parece bom" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Deslize o cursor até que a propaganda esteja bloqueada corretamente na página, e o elemento bloqueado pareça útil." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Bloqueie URLs contendo este texto" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permitir que o AdBlock colete o uso e dados da lista de filtro anônima" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Para relatar um anúncio, você deve estar conectado à internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"O número de regras da lista de filtros excede o limite de 50.000 e foi automaticamente reduzido. Por favor, cancele a subscrição de algumas listas de filtros ou desative o bloqueio de conteúdo do Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Você tem certeza que deseja assinar a lista de filtro $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"atualizado 1 dia atrás" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Anúncios Aceitáveis (recomentado)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Clique aqui: Desativar Anúncios Aceitáveis" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versão $version$", + "message":"atualizado $days$ dias atrás", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Remover da lista" + "typeobject":{ + "description":"A resource type", + "message":"objeto interativo" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Isso não é um arquivo de imagem. Por favor, faça o upload de um arquivo .png, .gif, ou .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"O que você acha que será verdade sobre essa propaganda toda vez que visitar esta página?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Por que você não nos envia um relatório de bug's?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Propagandas bloqueadas:" }, - "typehiding":{ - "description":"A resource type", - "message":"ocultando" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Listas de filtros" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Árabe" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domínio da moldura: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Desfazer os meus bloqueios neste domínio" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Moldura superior" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Edite seus filtros manualmente:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Terminado!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Passo 1: Descubra o que bloquear" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Recursos" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Por favor digite o filtro correto abaixo e pressione OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Bloqueie uma propaganda nesta página" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Créditos da tradução a:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Certifique-se que suas listas de filtros estão atualizadas:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"O AdBlock está atualizado!" }, - "lang_english":{ - "description":"language", - "message":"Inglês" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Apenas em inglês" }, - "filtericelandic":{ - "description":"language", - "message":"Islandês" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"OU, simplesmente clique neste botão para que façamos tudo que está acima: Desabilitar todas as outras extensões " }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Abra a página de extensões para habilitar as extensões que foram desabilitadas anteriormente." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"O que há de novo na versão mais recente? Veja o changelog!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domínio da página para aplicar" + "filterantisocial":{ + "description":"A filter list", + "message":"Lista de filtro anti-social (remove os botões de mídia social)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Página:" + "filtermalware":{ + "description":"A filter list", + "message":"Proteção contra malware" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Encontrou um erro?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sou um usuário avançado, mostre-me opções avançadas" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Árabe" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Você excedeu a quantidade de armazenamento que o AdBlock pode usar. Por favor cancele a subscrição de algumas listas de filtros!" }, - "lang_czech":{ - "description":"language", - "message":"Tcheco" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Pague o que quiser!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Qual é o seu endereço de e-mail?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Quer saber o que faz o AdBlock funcionar?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"URL de lista inválida. Será deletada." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Esconder uma seção de uma página da web" }, - "typesub_frame":{ - "description":"A resource type", - "message":"moldura" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Geral" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ou AdBlock para Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Vídeos e Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Ótimo. Agora vamos descobrir qual extensão é a causa. Vá ativando cada extensão uma por vez. A extensão que trazer de volta o(s) anúncio(s) é aquela que você precisa desinstalar para livrar-se dos anúncios." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Editar" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ou Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Tem alguma pergunta ou ideia nova?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formato: ~site1.com|~site2.com|~noticias.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Você esqueceu de anexar uma captura de tela! Nós não podemos ajudá-lo sem ver o(s) anúncio(s) que você está relatando." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Pague o que quiser!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"OU, simplesmente clique neste botão para que façamos tudo que está acima: Desabilitar todas as outras extensões " + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Este é um problema com a lista de filtros. Reporte aqui: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Saber mais sobre malware" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Nota: seu relatório pode se tornar disponível publicamente. Mantenha isso em mente antes de incluir qualquer coisa privada." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Recarregue a página com a propaganda." + "filteritalian":{ + "description":"language", + "message":"Italiano" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Instale o Firefox $chrome$ se você não o tem.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Atualizações do AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"A propaganda ainda aparece?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Lista de Remoção de Avisos Adblock (remove avisos sobre uso de bloqueadores de anúncios)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Certifique-se que está usando o(s) filtro(s) de idioma correto(s):" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Outras Listas de Filtro" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Certifique-se que suas listas de filtros estão atualizadas:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francês" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Algo deu errado durante a verificação de atualizações." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Elemento bloqueado:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Clicar no menu Safari &rarr Preferências &rarr Extensões." }, - "typeobject":{ - "description":"A resource type", - "message":"objeto interativo" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Enviar" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"atualizado agora mesmo" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"atualizado $days$ dias atrás", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Subscrição cancelada." + }, + "typemedia":{ "description":"A resource type", - "message":"moldura" + "message":"áudio/vídeo" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (proteção de privacidade)" + "message":"Letão" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Reportar uma propaganda nesta página" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Bloqueie uma propaganda nesta página" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Limpar esta lista" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Pare de bloquear propagandas:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Alemão" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Erro ao salvar o arquivo enviado." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Seja cuidadoso: este filtro bloqueia todos os elementos $elementtype$ na página!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Isso corresponde a $matchcount$ itens nesta página.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"aqui" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Em qual língua a página está escrita?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Erro ao baixar este filtro!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Tem certeza que deseja remover os $count$ bloqueios que criou em $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Você pode deslizar abaixo para mudar exatamente em que páginas o AdBlock não atuará." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"imagem" + "message":"ocultando" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"E crie manualmente um tíquete, copiando e colando as informações abaixo para a seção \"Fill in any details you think will help us understand your issue\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"A propaganda aparece em ou antes de um filme ou qualquer outro plugin como um jogo em Flash?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Para esconder o botão, clique com o botão direito e escolha Esconder Botão. Você pode mostrá-lo novamente em chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russo e Ucraniano" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Romeno" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Algo deu errado durante a verificação de atualizações." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Desativamos todas as outras extensões. Agora iremos recarregar a página com o anúncio. Um segundo, por favor." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Recurso na lista branca" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Espanhol" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Seja cuidadoso: este filtro bloqueia todos os elementos $elementtype$ na página!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tcheco e Eslovaco" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Ativar o modo de compatibilidade ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Tipo de moldura: " + "no":{ + "description":"A negative response to a question", + "message":"Não" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Selecione o idioma -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"O filtro, que pode ser modificado na página Opções:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Instale o AdBlock Plus para Firefox $chrome$ se você não instalou.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Esconder este botão" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Recurso bloqueado" + "other":{ + "description":"Multiple choice option", + "message":"Outro" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, você ainda pode bloquear esta propaganda você mesmo na página Opções. Obrigado!" + }, + "lang_russian":{ + "description":"language", + "message":"Russo" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"A propaganda aparece em ou antes de um filme ou qualquer outro plugin como um jogo em Flash?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Por que você não nos envia um relatório de bug's?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (proteção de privacidade)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ será $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"O filtro, que pode ser modificado na página Opções:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Ou insira uma URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"O seguinte filtro:
$filter$
possui um erro:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"CARREGANDO..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Fechar" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"A nossa equipa solicitou algumas informações de depuração? Clique aqui para isso!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Bloqueie propagandas apenas nesses sites:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Você excedeu a quantidade de armazenamento que o AdBlock pode usar. Por favor cancele a subscrição de algumas listas de filtros!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"O número de regras da lista de filtros excede o limite de 50.000 e foi automaticamente reduzido. Por favor, cancele a subscrição de algumas listas de filtros ou desative o bloqueio de conteúdo do Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Reportar uma propaganda nesta página" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permitir que o AdBlock colete o uso e dados da lista de filtro anônima" + "message":"Mostrar declarações de depuração no Log do Console (que deixa o AdBlock mais devagar)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, você ainda pode bloquear esta propaganda você mesmo na página Opções. Obrigado!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domínio da moldura: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"A extensão mais popular do Chrome, com mais de 40 milhões de usuários! Bloqueia anúncios em toda a web." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Encontrou um erro?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Enviar" + "lang_czech":{ + "description":"language", + "message":"Tcheco" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Isso não é um arquivo de imagem. Por favor, faça o upload de um arquivo .png, .gif, ou .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Mostrar links para as listas de filtros" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Permitir algumas propagandas não invasivas" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Sueco" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Remover da lista" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Selecione o idioma -- " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Finlandês" + "message":"Francês" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Editar" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Esse arquivo é muito grande. Por favor, certifique-se de que seu arquivo tem menos de 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Suporte" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"As informações a seguir também serão incluídas no relatório de anúncio." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Bloquear uma propaganda por sua URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Este é um problema com a lista de filtros. Reporte aqui: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Versão $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Desmarque a opção 'ativar' próxima a todas as extensões exceto AdBlock. Deixe AdBlock ativado." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"O propósito desta pergunta é determinar quem deve receber seu relatório. Se você responder esta pergunta incorretamente, o relatório sera enviado para as pessoas erradas, logo poderá ser ignorado." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Mostrar links para as listas de filtros" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Relatar anúncios é algo voluntário. Isto ajuda outras pessoas, permitindo que os mantenedores da lista de filtros possam bloquear o anúncio para todo mundo. Se você não está se sentido altruísta agora, sem problemas. Feche esta página e bloqueie o anúncio apenas para si mesmo." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Apenas em inglês" + "yes":{ + "description":"A positive response to a question", + "message":"Sim" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Ajude a divulgar!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"O código-fonte está disponível gratuitamente!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Holandês" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Só usaremos isto para entrar em contato com você se precisarmos de mais informações." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Isso corresponde a 1 item nesta página." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"atualizado $hours$ horas atrás", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Voltar" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"O AdBlock bloqueou um download de um site conhecido por conter malware." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legenda: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Clique aqui: Desativar Anúncios Aceitáveis" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Ativar o modo de compatibilidade ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domínio da página para aplicar" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Suporte" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Atualizações do AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Acesso nosso site de suporte." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Para pausar o AdBlock com o Bloqueio de Conteúdos ativado, por favor selecione o Safari (na barra de menu) > Preferências > Extensões > AdBlock e desmarque a opção 'Ativar AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Algo deu errado. Nenhum recurso foi enviado. Esta página irá fechar. Tente recarregar a página." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Saber mais sobre malware" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Site:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Anúncios Aceitáveis (recomentado)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Parece bom" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Para pausar o AdBlock com o Bloqueio de Conteúdos ativado, por favor selecione o Safari (na barra de menu) > Preferências > Extensões > AdBlock e desmarque a opção 'Ativar AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Abra a página de extensões." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - clique para detalhes" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Desative todas as extensões, exceto o AdBlock:" } } \ No newline at end of file diff --git a/_locales/pt_PT/messages.json b/_locales/pt_PT/messages.json index 8b191f4f..44f4ed00 100644 --- a/_locales/pt_PT/messages.json +++ b/_locales/pt_PT/messages.json @@ -1,1542 +1,1582 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Anexe uma captura de ecrã:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nenhum malware encontrado." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Nesse browser, subscreva às mesmas listas de filtros que tem aqui." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Tem alguma questão ou uma ideia nova?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Nesse browser, carregue a página com o anúncio." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opções" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Sueco" + "message":"EasyList (recomendado)" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Bloquear mais anúncios:" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ nesta página", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Russo" + "message":"Polaco" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Desinscrever" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS para corresponder" }, - "filterchinese":{ - "description":"language", - "message":"Chinês" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Excluir" }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Se criou um filtro manualmente usando o assistente de \"bloquear um anúncio\", cole-o na caixa abaixo:" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Não quero verificar isto" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Lista de filtros anti-social (remove os botões dos meios de comunicação social)" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Tenha cuidado: se cometer um erro aqui, muitos dos outros filtros, incluindo os oficiais, vão deixar de funcionar!
Leia o tutorial da sintaxe de filtros para aprender a adicionar avançadas listas negras e listas brancas manualmente." }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Encontrou um anúncio numa página da web? Nós vamos ajudá-lo a encontrar o lugar certo para denunciá-lo!" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"O anúncio também aparece nesse browser?" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Mostrar o número de anúncios bloqueados no botão AdBlock" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Se preferir não ver anúncios como este, pode desativar a lista de filtros de Anúncios Aceitáveis." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"O código-fonte está disponível gratuitamente!" + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"Lituano" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"actualizado há 1 minuto atrás" + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Inscreva-se nesta lista de filtros e tente novamente: $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Falhou a inscrição neste filtro!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"O seu computador pode estar infectado por um malware. Clique aqui para obter mais informações." }, - "linkblockadbyurl":{ + "linkunblock":{ "description":"Link on the 'Customize' tab", - "message":"Bloquear um anúncio pelo URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Esconder este botão" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"As actualizações são automáticas; mas também pode actualizar manualmente" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formato: ~site1.com|~site2.com|~news.site3.org" + "message":"Mostrar anúncios numa certa página ou domínio" }, - "filtereasylist_plus_estonian":{ + "lang_slovak":{ "description":"language", - "message":"Estoniano" + "message":"Eslovaco" }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tipo" + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Instale o Adblock Plus no Firefox $chrome$ caso não o tenha instalado.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Está disponível uma actualização para o AdBlock! Aceda $here$ para actualizar.
Nota: Se quiser receber actualizações automáticas, clique em Safari > Preferências > Extensões > Actualizações
e active a opção 'Instalar Actualizações Automaticamente'.", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Nós não temos uma lista padrão de filtros para esse idioma.
Por favor tente encontrar uma lista apropriada que suporte esse idioma $link$ ou bloqueie o anúncio só para si em 'Personalizar'.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "link":{ + "content":"", + "example":"here" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"O que é isto?" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Clica no anúncio e eu vou-te ajudar a bloqueá-lo." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "topframe":{ + "description":"Resource list page: frame type", + "message":"Frame superior" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Não subscrever mais do que o necessário - cada lista torna-o um pouco mais lento! Créditos e mais listas podem ser encontradas aqui." + "typestylesheet":{ + "description":"A resource type", + "message":"defenição de estilo" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Esta funcionalidade do AdBlock não funciona neste site porque apresenta tecnologia desactualizada. Pode colocar na lista negra ou nos recursos da whitelist manualmente no separador 'Personalizar' da página de opções." + "typeunknown":{ + "description":"A resource type", + "message":"desconhecido" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Polaco" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Desculpe, o AdBlock foi desactivado nesta página por uma das suas listas de filtros." }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Saiba mais acerca do programa de Anúncios Aceitáveis." + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"actualizado há $seconds$ segundos atrás", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Terceiros" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Nenhum filtro especificado!" }, - "filterhungarian":{ + "filtereasylist_plus_greek":{ "description":"language", - "message":"Húngaro" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Nota: o seu relatório pode tornar-se público. Tenha isso em atenção antes de incluir alguma coisa privada." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Por favor, desinscreva-se de algumas listas de filtros. Mais informações nas opções do AdBlock." + "message":"Grego" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Origem do filtro:\n$list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Está a usar uma versão antiga do AdBlock. Por favor vá à página das extensões, active o 'Modo de programador' e clique 'Atualizar extensões agora'" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Desculpe, o AdBlock foi desactivado nesta página por uma das suas listas de filtros." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Qual é o seu nome?" }, - "filtericelandic":{ - "description":"language", - "message":"Islandês" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Solução para a não reprodução dos vídeos no site Hulu.com (necessita de reiniciar o browser)" }, "blacklisterwarningnofilter":{ "description":"Warns the user that no filter was specified", "message":"Aviso: nenhum filtro especificado!" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock está desactivado neste site." + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personalizar" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Se está a ver um anúncio, não faça um relatório de erro, faça um relatório de anúncio!" + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Encontrou um anúncio numa página da web? Nós vamos ajudá-lo a encontrar o lugar certo para denunciá-lo!" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Mostrar anúncios em todo o lado excepto para estes sites..." + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opções" - }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" - }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." - }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Anúncios bloqueados:" - }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Adicione filtros para outro idioma: " - }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Clica no anúncio e eu vou-te ajudar a bloqueá-lo." - }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" - }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" - }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Ótimo! Está tudo pronto." - }, - "other":{ - "description":"Multiple choice option", - "message":"Outro" - }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Suporte AdBlock" + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estoniano" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Customizar AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Informação pedida está ausente ou inválida. Por favor preencha as perguntas que têm uma borda vermelha." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Búlgaro" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Erro ao guardar o ficheiro enviado." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Recursos com permissão" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Por favor, corrija o tipo de filtro abaixo e clique OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Limite da regra de Bloqueio de Conteúdos ultrapassado" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Passo 1: Descobrir o que bloquear" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Dinamarquês" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Não correr o AdBlock em..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ nesta página", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Bloqueia anúncios que contêm o seguinte texto" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Fechar" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Verificar no Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Subframe" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Último passo: O que torna isto num anúncio?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"actualizado há 1 hora atrás" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Se está a ver um anúncio, não faça um relatório de erro, faça um relatório de anúncio!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Coreano" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ou Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Qual é o seu nome?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"A extensão mais popular para o Chrome, com mais de 40 milhões de utilizadores! Bloqueia anúncios por todo o lado na Web." + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Porque não nos envia um relatório de erro?" }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Mostrar todos os pedidos" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandês" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Não quero verificar isto" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Ucraniano" }, - "yes":{ - "description":"A positive response to a question", - "message":"Sim" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nenhum malware encontrado." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personalizar" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Por favor, desinscreva-se de algumas listas de filtros. Mais informações nas opções do AdBlock." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Parar AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Também temos uma página para ajudá-lo a descobrir as pessoas por detrás do AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Tem a certeza que quer subscrever à lista de filtros de $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"aqui" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Onde é que se encontra exactamente o anúncio nessa página? O que está a ver?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ou AdBlock para Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Recarregar a página." }, - "typestylesheet":{ - "description":"A resource type", - "message":"defenição de estilo" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Em que idioma está a página escrita?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock está em pausa." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Limite da regra de Bloqueio de Conteúdos ultrapassado" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Retomar AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Encontrar anúncios...

Isto vai demorar um pouco." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock está desactivado neste site." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"O domínio ou o URL onde AdBlock não deve bloquear nada" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Nesse browser, subscreva às mesmas listas de filtros que tem aqui." }, - "typescript":{ - "description":"A resource type", - "message":"script" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Bloquear um anúncio" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ ao todo", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Atenção: em todos os outros sites, vais ver anúncios!
Isto ultrapassa todos os outros filtros para esses sites." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Está disponível uma actualização para o AdBlock! Aceda $here$ para actualizar.
Nota: Se quiser receber actualizações automáticas, clique em Safari > Preferências > Extensões > Actualizações
e active a opção 'Instalar Actualizações Automaticamente'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Tudo pronto! Em breve iremos entrar em contato, provavelmente dentro de um dia, ou dois se for um feriado. Entretanto, aguarde por um email da AdBlock. Irá encontrar um link para o seu ticket no nosso site de ajuda. Se preferir acompanhar por email, também pode fazer!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Terminado!" }, - "no":{ - "description":"A negative response to a question", - "message":"Não" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock filtros personalizados (recomendado)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Alguma coisa aconteceu de errado. Nenhum recurso foi enviado. Esta página vai ser fechada. Tente recarregar o site." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tipo" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"O que é isto?" + }, + "filterjapanese":{ "description":"language", - "message":"Ucraniano" + "message":"Japonês" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"actualizado há $minutes$ minutos atrás", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Origem do filtro:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Já não se encontra inscrito na lista de filtros de Anúncios Aceitáveis." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Proteção contra malware" - }, - "savebutton":{ - "description":"Save button", - "message":"Guardar" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Atenção: em todos os outros sites, vais ver anúncios!
Isto ultrapassa todos os outros filtros para esses sites." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Desativar estas notificações" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"A inscrever-se na lista de filtros..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Inscrever-se para filtrar listas" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Está a usar uma versão antiga do AdBlock. Por favor vá à página das extensões, active o 'Modo de programador' e clique 'Atualizar extensões agora'" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Site:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opções AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Adicione filtros para outro idioma: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Filtro correspondente" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Verificação de malware que poderá estar a injectar anúncios:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"As listas de filtros bloqueiam maior parte dos anúncios. Também pode:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Mostar as operações na Consola de Logs (torna o AdBlock lento)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Para ocultar o botão, faça clique com o botão da direita na barra de ferramentas do Safari e escolha Personalizar barra de ferramentas e, em seguida, arraste o botão do AdBlock para fora da barra de ferramentas. Pode visualizá-lo novamente, arrastando-o de novo para a barra de ferramentas." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Excedeu o limite de tamanho do Dropbox. Por favor, remova alguns dos seus filtros personalizados ou desativados e volte a tentar." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Retomar AdBlock" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Inscrever-se" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "contentblockingwarning":{ + "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", + "message":"Nota: Colocar na lista branca (permitir anúncios) numa página ou num site não é compatível com o Bloqueio de Conteúdos do Safari ativado." }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Solução para a não reprodução dos vídeos no site Hulu.com (necessita de reiniciar o browser)" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Elemento bloqueado:" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Excluir" + "typepage":{ + "description":"A resource type", + "message":"página" }, - "disableallextensions":{ + "typeother":{ + "description":"A resource type", + "message":"outro" + }, + "clickupdatefilters":{ "description":"Instruction on ad report page", - "message":"Desactive todas as extensões à excepção do AdBlock:" + "message":"Clica aqui: Actualizar os meus filtros!" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Crédito pela tradução vai para:" + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Elemento oculto" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"A CARREGAR..." + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Para ocultar o botão, aceda a opera://extensions e active a opção 'Ocultar da barra de ferramentas'. Para visualizar outra vez desactive essa opção." }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Clique com o botão direito do rato num anúncio para bloquear -- ou bloqueie manualmente aqui." + "typeobject_subrequest":{ + "description":"A resource type", + "message":"object_subrequest" }, - "contentblockingwarning":{ - "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", - "message":"Nota: Colocar na lista branca (permitir anúncios) numa página ou num site não é compatível com o Bloqueio de Conteúdos do Safari ativado." + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Página:" }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Só usaremos o seu contato caso seja necessário mais informações." + "buttonblockit":{ + "description":"Block button", + "message":"Bloquear!" }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editar filtros desactivados:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permitir anúncios de canais específicos do YouTube" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Ativar o Bloqueio de Conteúdos do Safari" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Qual é o seu endereço de e-mail?" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Não podemos bloquear anúncios dentro do Flash e outros plugins ainda. Estamos a aguardar o apoio do navegador e do WebKit." }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Para ocultar o botão, faça clique com o botão da direita na barra de ferramentas do Safari e escolha Personalizar barra de ferramentas e, em seguida, arraste o botão do AdBlock para fora da barra de ferramentas. Pode visualizá-lo novamente, arrastando-o de novo para a barra de ferramentas." + "filterhungarian":{ + "description":"language", + "message":"Húngaro" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Houve um erro ao processar o seu pedido." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Bloquear este anúncio" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "typemain_frame":{ - "description":"A resource type", - "message":"página" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Activar o AdBlock nesta página" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Mostrar o número de anúncios bloqueados no botão AdBlock" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Feito! Recarregámos a página com o anúncio. Por favor, verifique essa página para confirmar se o anúncio desapareceu. Em seguida, volte a esta página e responda à pergunta abaixo." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Falhou!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Ou escreva um URL:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Parar AdBlock" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Está a usar uma versão antiga do Safari. Obtenha a última versão para usar o botão AdBlock para pausar o AdBlock, colocar websites na lista de permissão e reportar anúncios. Actualizar agora." + "lang_english":{ + "description":"language", + "message":"Inglês" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Clique no menu Safari → Preferências → Extensões." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Adicionar itens ao menu do botão direito" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Parar de bloquear anúncios:" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Por favor aceda ao nosso site de suporte." }, - "buttonblockit":{ - "description":"Block button", - "message":"Bloquear!" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Lista de Remoção de Avisos Adblock (remove avisos acerca do uso de bloqueadores de anúncios)" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"O anúncio continua a aparecer?" + "typemain_frame":{ + "description":"A resource type", + "message":"página" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Búlgaro" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Tem a certeza que deseja remover os $count$ bloqueios que criou em $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Ótimo! Agora vamos descobrir qual é extensão que está a dar problemas. Habilite as extensões uma de cada vez. A extensão que fizer aparecer o anúncio(s) é aquela que precisa de desinstalar de maneira a livrar-se dos anúncios." + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legenda: " }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Falhou!" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editar manualmente os filtros:" + "updatedminutesago":{ + "description":"Label for subscription", + "message":"actualizado há $minutes$ minutos atrás", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } }, - "filteritalian":{ + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Anexe uma captura de ecrã:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Italiano" + "message":"Romêno" }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar filtros desactivados:" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tipo" + "subframe":{ + "description":"Resource list page: frame type", + "message":"Subframe" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Tenha cuidado: se cometer um erro aqui, muitos dos outros filtros, incluindo os oficiais, vão deixar de funcionar!
Leia o tutorial da sintaxe de filtros para aprender a adicionar avançadas listas negras e listas brancas manualmente." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Actualizar a página com o anúncio." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Inscrever-se para filtrar listas" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Ativar o Bloqueio de Conteúdos do Safari" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Pode ligar isto novamente e suportar os sites que ama bastando selecionar \"Permitir alguma publicidade não intrusiva\" abaixo." + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Instale o Firefox $chrome$ caso não o tenha instalado.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"O anúncio também aparece nesse browser?" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Lista de filtros" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Não correr nesta página" + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Se criou um filtro manualmente usando o assistente de \"bloquear um anúncio\", cole-o na caixa abaixo:" }, - "filtereasylist_plus_lithuania":{ - "description":"language", - "message":"Lituano" + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Esse ficheiro é muito grande. Por favor, certifique-se que o seu ficheiro ocupa menos de 10 MB." }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Deixe-nos saber no nosso site de suporte!" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Visualizar opções avançadas" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock está em pausa." + "filterchinese":{ + "description":"language", + "message":"Chinês" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Não podemos bloquear anúncios dentro do Flash e outros plugins ainda. Estamos a aguardar o apoio do navegador e do WebKit." + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"O filtro é inválido: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"A inscrever-se na lista de filtros..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"O que há de novo na versão mais recente? Veja a lista de alterações!" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Abra a página de extensões para activar as extensões que foram desactivadas anteriormente." }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Se preferir não ver anúncios como este, pode desativar a lista de filtros de Anúncios Aceitáveis." + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Desativar estas notificações" }, - "typeother":{ - "description":"A resource type", - "message":"outro" + "filterturkish":{ + "description":"A filter list", + "message":"Turco" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Nenhum filtro especificado!" + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Não subscrever mais do que o necessário - cada lista torna-o um pouco mais lento! Créditos e mais listas podem ser encontradas aqui." }, - "typeunknown":{ + "typesubdocument":{ "description":"A resource type", - "message":"desconhecido" + "message":"frame" }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonésio" }, - "filterjapanese":{ - "description":"language", - "message":"Japonês" + "typeimage":{ + "description":"A resource type", + "message":"imagem" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Permitir alguma publicidade não intrusiva" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ ao todo", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Cancelar" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Você pode deslizar abaixo para alterar as páginas em que o AdBlock não será executado." + "savereminder":{ + "description":"Reminder to press save", + "message":"Não se esqueça de guardar!" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Última etapa: reportar o problema." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Verificar no Firefox $chrome$", + "typeselector":{ + "description":"A resource type", + "message":"selector" + }, + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "filtericelandic":{ + "description":"language", + "message":"Islandês" + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Tem a certeza que quer subscrever à lista de filtros de $title$?", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Para denunciar um anúncio, é necessário estar conectado à internet." - }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (recomendado)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Bloquear anúncios apenas nestes sites:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Carregado na página do domínio:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Denunciar um anúncio" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"As extensões que foram desactivadas anteriormente foram reactivadas." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Listas de Filtros de Bloqueio de Anúncios" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Como?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Limpar esta lista" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permitir anúncios de canais específicos do YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Ajude a espalhar a palavra!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Terceiros" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (remove os aborrecimentos da Web)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - clique para detalhes" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opções AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Houve um erro ao processar o seu pedido." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"actualizado há $hours$ horas atrás", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"actualizado há 1 hora atrás" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Russo e Ucraniano" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"A verificar se há atualizações (só deve demorar alguns segundos)..." }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permitir que o AdBlock recolha lista de filtros usados e dados de forma anónima" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"actualizado agora mesmo" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"As extensões que foram desactivadas anteriormente foram reactivadas." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Clique com o botão direito do rato num anúncio para bloquear -- ou bloqueie manualmente aqui." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grego" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Verificação de malware que poderá estar a injectar anúncios:" }, - "lang_slovak":{ - "description":"language", - "message":"Eslovaco" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Suporte AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videos e Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tipo" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"O que acha que vai ser verdade sobre este anúncio cada vez que visita esta página?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Arrasta o marcador até que o anúncio seja removido completamente nesta página." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Activar o AdBlock nesta página" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"actualizado há 1 minuto atrás" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Voltar" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"As listas de filtros bloqueiam maior parte dos anúncios. Também pode:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Recurso bloqueado" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"As informações a seguir também serão incluídas no relatório de anúncio." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Dinamarquês" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Verifique os filtros de Anúncios Aceitáveis:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Mostrar anúncios numa certa página ou domínio" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Pode ligar isto novamente e suportar os sites que ama bastando selecionar \"Permitir alguma publicidade não intrusiva\" abaixo." }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Corresponde 1 item nesta página." + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Esconder uma parte da página" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Whitelist canal $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "fetchinglabel":{ + "description":"Status label", + "message":"Actualizando... por favor aguarde." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"URL de lista inválido. Vai ser apagado." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opções gerais" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opções gerais" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Desactive a opção 'Activado' ao lado de cada extensão excepto para o AdBlock. Deixe o AdBlock activado." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock não corre nas seguintes páginas:" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Nesse browser, carregue a página com o anúncio." }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Nós não temos uma lista padrão de filtros para esse idioma.
Por favor tente encontrar uma lista apropriada que suporte esse idioma $link$ ou bloqueie o anúncio só para si em 'Personalizar'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Mostrar anúncios em todo o lado excepto para estes sites..." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Inscrever-se" + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Esqueceu-se de anexar a captura de ecrã! Nós não conseguimos ajudá-lo sem ver o(s) anúncio(s) que está a reportar." }, - "advanced_options2":{ + "catblock_debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Visualizar opções avançadas" + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Espanhol" + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"E crie manualmente um ticket, e copie e cole as informações abaixo para a secção \"Fill in any details you think will help us understand your issue\"." }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Carregado na página do domínio:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Clica aqui: Actualizar os meus filtros!" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Para ocultar o botão, faça clique direito sobre ele e seleccione Ocultar botão. Pode visualizá-lo novamente em chrome://chrome/extensions." }, - "you_know_thats_a_bad_idea_right":{ + "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Quanto mais listas de filtros usar, mais lento será o funcionamento do AdBlock. Usar demasiadas listas até pode provocar um bloqueio do seu browser em alguns websites. Clique em OK para subscrever esta lista de qualquer forma." - }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Último passo: O que torna isto num anúncio?" + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Corresponde $matchcount$ items nesta página.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "filterisraeli":{ + "description":"language", + "message":"Hebraico" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Também temos uma página para ajudá-lo a descobrir as pessoas por detrás do AdBlock!" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Esta funcionalidade do AdBlock não funciona neste site porque apresenta tecnologia desactualizada. Pode colocar na lista negra ou nos recursos da whitelist manualmente no separador 'Personalizar' da página de opções." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonésio" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Checo e Eslovaco" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turco" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Desactivámos todas as outras extensões. Vamos agora recarregar a página com o anúncio. Um segundo, por favor." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Bloquear um anúncio" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Outras Listas de Filtros" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Listas de Filtros Personalizados" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"As actualizações são automáticas; mas também pode actualizar manualmente" }, - "frameurl":{ - "description":"Resource list page: full URL of the frame", - "message":"URL da frame: " + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Mostrar todos os pedidos" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"O propósito desta questão é determinar quem deve receber o seu relatório. Se responder a esta pergunta incorrectamente, o relatório será enviado às pessoas erradas, por isso pode ser ignorado." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Adicionar itens ao menu do botão direito" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Quanto mais listas de filtros usar, mais lento será o funcionamento do AdBlock. Usar demasiadas listas até pode provocar um bloqueio do seu browser em alguns websites. Clique em OK para subscrever esta lista de qualquer forma." }, - "typeselector":{ - "description":"A resource type", - "message":"selector" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Ótimo! Está tudo pronto." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Bloquear este anúncio" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"A nossa equipa solicitou algumas informações de depuração? Clique aqui para isso!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Abra a página das extensões." }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Não correr o AdBlock em..." + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Tudo pronto! Em breve iremos entrar em contato, provavelmente dentro de um dia, ou dois se for um feriado. Entretanto, aguarde por um email da AdBlock. Irá encontrar um link para o seu ticket no nosso site de ajuda. Se preferir acompanhar por email, também pode fazer!" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Reportar anúncios é voluntário. Ajuda outras pessoas ao permitir que os responsáveis pela lista de filtro bloqueiem o anúncio para todos. Se não te sentes altruísta agora, tudo okay. Feche esta página e bloqueie o anúncio apenas para si mesmo." + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Saiba mais acerca do programa de Anúncios Aceitáveis." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Elemento oculto" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"O AdBlock deve notificá-lo quando detecta malware?" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Recarregar a página." + "updateddayago":{ + "description":"Label for subscription", + "message":"actualizado há 1 dia atrás" }, - "typepage":{ - "description":"A resource type", - "message":"página" + "frameurl":{ + "description":"Resource list page: full URL of the frame", + "message":"URL da frame: " }, - "filterdutch":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Holandês" + "message":"Alemão" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, "adreport_response_file_name":{ "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", "message":"O nome de ficheiro é muito longo. Por favor altere o nome para um que seja mais curto." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Não se esqueça de guardar!" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"actualizado há $seconds$ segundos atrás", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"A verificar se há atualizações (só deve demorar alguns segundos)..." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Não correr nesta página" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Geral" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Deixe-nos saber no nosso site de suporte!" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Inscreva-se nesta lista de filtros e tente novamente: $list_title$", + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." + }, + "buttonok":{ + "description":"OK button", + "message":"OK!" + }, + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Feito! Recarregámos a página com o anúncio. Por favor, verifique essa página para confirmar se o anúncio desapareceu. Em seguida, volte a esta página e responda à pergunta abaixo." + }, + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Todos os recursos" + }, + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Whitelist canal $name$", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"O AdBlock deve notificá-lo quando detecta malware?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Recurso" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Mostrar o número de anúncios bloqueados no menu AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Site:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Denunciar um anúncio" + }, + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Como?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Não correr nas páginas deste site" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Listas de Filtros Personalizados" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Bloquear mais anúncios:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Informação pedida está ausente ou inválida. Por favor preencha as perguntas que têm uma borda vermelha." }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock filtros personalizados (recomendado)" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"O domínio ou o URL onde AdBlock não deve bloquear nada" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letão" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Já não se encontra inscrito na lista de filtros de Anúncios Aceitáveis." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Verifique se está a usar o(s) filtro(s) de idioma correto(s):" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (remove os aborrecimentos da Web)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS para corresponder" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"O AdBlock bloqueou um download de um site conhecido por alojar malware." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Para ocultar o botão, aceda a opera://extensions e active a opção 'Ocultar da barra de ferramentas'. Para visualizar outra vez desactive essa opção." + "savebutton":{ + "description":"Save button", + "message":"Guardar" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Não tem a certeza? apenas pressione 'Bloquear!' em baixo." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Filtro correspondente" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Actualizando... por favor aguarde." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Todos os recursos" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Última etapa: reportar o problema." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock está actualizado!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Não correr nas páginas deste site" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"O propósito desta questão é determinar quem deve receber o seu relatório. Se responder a esta pergunta incorrectamente, o relatório será enviado às pessoas erradas, por isso pode ser ignorado." }, - "filterisraeli":{ - "description":"language", - "message":"Hebraico" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Parece bem" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Arrasta o marcador até que o anúncio seja removido completamente nesta página." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Bloqueia anúncios que contêm o seguinte texto" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permitir que o AdBlock recolha lista de filtros usados e dados de forma anónima" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Para denunciar um anúncio, é necessário estar conectado à internet." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Desfazer os meus bloqueios neste domínio" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Listas de Filtros de Bloqueio de Anúncios" }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"actualizado há 1 dia atrás" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Anúncios aceitáveis (recomendado)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Clique aqui: Desativar Anúncios Aceitáveis" - }, - "optionsversion":{ - "description":"Version number", - "message":"Versão $version$", + "message":"actualizado há $days$ dias atrás", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Remover da lista" + "typeobject":{ + "description":"A resource type", + "message":"objecto interactivo" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Esse ficheiro não é uma imagem. Por favor, fazer carregue um ficheiro do tipo .png, .gif, ou .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"O que acha que vai ser verdade sobre este anúncio cada vez que visita esta página?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Porque não nos envia um relatório de erro?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Anúncios bloqueados:" }, - "typehiding":{ - "description":"A resource type", - "message":"Ocultado" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Lista de filtros" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Árabe" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domínio de frame: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Desfazer os meus bloqueios neste domínio" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Frame superior" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editar manualmente os filtros:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Terminado!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Passo 1: Descobrir o que bloquear" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Recurso" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Por favor, corrija o tipo de filtro abaixo e clique OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Bloquear um anúncio nesta página" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Crédito pela tradução vai para:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Certifique-se que as suas listas de filtros estão actualizadas:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock está actualizado!" }, - "lang_english":{ - "description":"language", - "message":"Inglês" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Apenas em inglês" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Abra a página de extensões para activar as extensões que foram desactivadas anteriormente." + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"OU, simplesmente clique neste botão para que façamos tudo o que precede: Desactivar todas as outras extensões" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domínio da página para aplicar em" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"O que há de novo na versão mais recente? Veja a lista de alterações!" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Página:" + "filterantisocial":{ + "description":"A filter list", + "message":"Lista de filtros anti-social (remove os botões dos meios de comunicação social)" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Encontrou um erro?" + "filtermalware":{ + "description":"A filter list", + "message":"Proteção contra malware" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Árabe" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock não corre nas seguintes páginas:" }, - "lang_czech":{ - "description":"language", - "message":"Checo" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Acabou de exceder a quantidade de armazenamento que o AdBlock pode usar. Por favor, desinscreva-se de algumas listas!" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Pague o que quiser!" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Qual é o seu endereço de e-mail?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Quer saber o que faz o AdBlock trabalhar?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"URL de lista inválido. Vai ser apagado." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Esconder uma parte da página" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Geral" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ou AdBlock para Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videos e Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Ótimo! Agora vamos descobrir qual é extensão que está a dar problemas. Habilite as extensões uma de cada vez. A extensão que fizer aparecer o anúncio(s) é aquela que precisa de desinstalar de maneira a livrar-se dos anúncios." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Editar" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ou Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Tem alguma questão ou uma ideia nova?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formato: ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Esqueceu-se de anexar a captura de ecrã! Nós não conseguimos ajudá-lo sem ver o(s) anúncio(s) que está a reportar." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Pague o que quiser!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"OU, simplesmente clique neste botão para que façamos tudo o que precede: Desactivar todas as outras extensões" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Isto é um problema com a lista de filtros. Denuncie Aqui: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Saber mais acerca do malware" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Nota: o seu relatório pode tornar-se público. Tenha isso em atenção antes de incluir alguma coisa privada." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Actualizar a página com o anúncio." + "filteritalian":{ + "description":"language", + "message":"Italiano" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Instale o Firefox $chrome$ caso não o tenha instalado.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Actualizações AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"O anúncio continua a aparecer?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Lista de Remoção de Avisos Adblock (remove avisos acerca do uso de bloqueadores de anúncios)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Verifique se está a usar o(s) filtro(s) de idioma correto(s):" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Outras Listas de Filtros" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Certifique-se que as suas listas de filtros estão actualizadas:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Francês" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Algo correu mal durante a verificação de actualizações." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Elemento bloqueado:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Clique no menu Safari → Preferências → Extensões." }, - "typeobject":{ - "description":"A resource type", - "message":"objecto interactivo" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Enviar" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"actualizado agora mesmo" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"actualizado há $days$ dias atrás", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Desinscrever" + }, + "typemedia":{ "description":"A resource type", - "message":"frame" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (protecção da privacidade)" + "message":"Letão" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Denunciar um anúncio nesta página" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Bloquear um anúncio nesta página" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Limpar esta lista" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Parar de bloquear anúncios:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Alemão" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Erro ao guardar o ficheiro enviado." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Cuidado: este filtro bloqueia todos os $elementtype$ elementos nesta página!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Corresponde $matchcount$ items nesta página.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"aqui" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Em que idioma está a página escrita?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Falhou a inscrição neste filtro!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Tem a certeza que deseja remover os $count$ bloqueios que criou em $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Você pode deslizar abaixo para alterar as páginas em que o AdBlock não será executado." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"imagem" + "message":"Ocultado" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"E crie manualmente um ticket, e copie e cole as informações abaixo para a secção \"Fill in any details you think will help us understand your issue\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"O anúncio aparece em ou antes de um filme ou qualquer outro plugin como um jogo em Flash?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Para ocultar o botão, faça clique direito sobre ele e seleccione Ocultar botão. Pode visualizá-lo novamente em chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Russo e Ucraniano" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Romêno" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Algo correu mal durante a verificação de actualizações." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Desactivámos todas as outras extensões. Vamos agora recarregar a página com o anúncio. Um segundo, por favor." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Recursos com permissão" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Espanhol" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Cuidado: este filtro bloqueia todos os $elementtype$ elementos nesta página!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Checo e Eslovaco" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Ativar o modo de compatibilidade ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Tipo de frame: " + "no":{ + "description":"A negative response to a question", + "message":"Não" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Seleccione o Idioma --" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"O filtro, que pode ser alterado na página das Opções:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Instale o Adblock Plus no Firefox $chrome$ caso não o tenha instalado.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Esconder este botão" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Recurso bloqueado" + "other":{ + "description":"Multiple choice option", + "message":"Outro" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, você também pode bloquear este anúncio manualmente." + }, + "lang_russian":{ + "description":"language", + "message":"Russo" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"O anúncio aparece em ou antes de um filme ou qualquer outro plugin como um jogo em Flash?" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Está a usar uma versão antiga do Safari. Obtenha a última versão para usar o botão AdBlock para pausar o AdBlock, colocar websites na lista de permissão e reportar anúncios. Actualizar agora." + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (protecção da privacidade)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ vai ser $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"O filtro, que pode ser alterado na página das Opções:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Ou escreva um URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"O seguinte filtro:
$filter$
tem um erro:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Tipo de frame: " }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Fechar" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"A CARREGAR..." }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Bloquear anúncios apenas nestes sites:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"A nossa equipa solicitou algumas informações de depuração? Clique aqui para isso!" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Acabou de exceder a quantidade de armazenamento que o AdBlock pode usar. Por favor, desinscreva-se de algumas listas!" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"O filtro é inválido: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Denunciar um anúncio nesta página" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, você também pode bloquear este anúncio manualmente." + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Mostar as operações na Consola de Logs (torna o AdBlock lento)" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domínio de frame: " }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"A extensão mais popular para o Chrome, com mais de 40 milhões de utilizadores! Bloqueia anúncios por todo o lado na Web." }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Enviar" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Encontrou um erro?" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "lang_czech":{ + "description":"language", + "message":"Checo" }, - "filtereasylist_plus_finnish":{ + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" + }, + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Esse ficheiro não é uma imagem. Por favor, fazer carregue um ficheiro do tipo .png, .gif, ou .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Mostrar links para as listas de filtros" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Permitir alguma publicidade não intrusiva" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Sueco" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Remover da lista" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Seleccione o Idioma --" + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Finlandês" + "message":"Francês" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Editar" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Esse ficheiro é muito grande. Por favor, certifique-se que o seu ficheiro ocupa menos de 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Suporte" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"As informações a seguir também serão incluídas no relatório de anúncio." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Bloquear um anúncio pelo URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Isto é um problema com a lista de filtros. Denuncie Aqui: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Versão $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Desactive a opção 'Activado' ao lado de cada extensão excepto para o AdBlock. Deixe o AdBlock activado." + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Onde é que se encontra exactamente o anúncio nessa página? O que está a ver?" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Mostrar links para as listas de filtros" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Reportar anúncios é voluntário. Ajuda outras pessoas ao permitir que os responsáveis pela lista de filtro bloqueiem o anúncio para todos. Se não te sentes altruísta agora, tudo okay. Feche esta página e bloqueie o anúncio apenas para si mesmo." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Apenas em inglês" + "yes":{ + "description":"A positive response to a question", + "message":"Sim" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Ajude a espalhar a palavra!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"O código-fonte está disponível gratuitamente!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Holandês" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Só usaremos o seu contato caso seja necessário mais informações." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Corresponde 1 item nesta página." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"actualizado há $hours$ horas atrás", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Voltar" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"O AdBlock bloqueou um download de um site conhecido por alojar malware." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legenda: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Clique aqui: Desativar Anúncios Aceitáveis" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Ativar o modo de compatibilidade ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domínio da página para aplicar em" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Suporte" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Actualizações AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Por favor aceda ao nosso site de suporte." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Alguma coisa aconteceu de errado. Nenhum recurso foi enviado. Esta página vai ser fechada. Tente recarregar o site." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Saber mais acerca do malware" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Anúncios aceitáveis (recomendado)" }, "safaricontentblockingpausemessage":{ "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", "message":"Para pausar o AdBlock com Bloqueio de Conteúdos ativado, por favor selecione Safari (na barra de menus) > Preferências > Extensões > AdBlock e desmarque a opção 'Ativar AdBlock'." }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" - }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Parece bem" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - clique para detalhes" }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Abra a página das extensões." + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Desactive todas as extensões à excepção do AdBlock:" } } \ No newline at end of file diff --git a/_locales/ro/messages.json b/_locales/ro/messages.json index 57d315b5..6406fa4b 100644 --- a/_locales/ro/messages.json +++ b/_locales/ro/messages.json @@ -1,966 +1,925 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Reportare reclamă" + "filterdanish":{ + "description":"language", + "message":"Daneză" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Filtre pentru blocare reclame" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Ajuta la răspândire!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Site:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ai o întrebare sau o idee nouă?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permite whitelisting pentru canale Youtube specifice" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Preluare... vă rugăm așteptați." }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nici un malware cunoscut găsit." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"General" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"În acel browser, subscrie la aceleași liste de filtrare cum ai aici." + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (înlătură deranjurile pe Web)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - click pentru detalii" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ pe această pagină", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Link invalid. Va fi șters." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"În acel browser, navighează la pagina cu reclama." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Poloneză" }, - "filterswedish":{ - "description":"A filter list", - "message":"Suedeză" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opțiuni generale" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Ce este nou în ultima versiune? Vezi changelog!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blochează mai multe reclame:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS care se potrivește" }, - "lang_russian":{ - "description":"language", - "message":"Rusă" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Închide" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Plătiţi ceea ce doriţi!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Nu doresc să încerc asta" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Dezabonat." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Arată reclame peste tot cu excepția acestor domenii..." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blocheză o reclamă introducându-i link-ul" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Ai girjă: dacă greșești aici, toate filtrele, inclusiv cele oficiale, pot funcționa greșit! \n
Citește sintaxa filtrelor pentru a învăța cum să adaugi filtre avansate." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Greacă" + "message":"Slovacă" }, - "filterchinese":{ - "description":"language", - "message":"Chineză" + "yes":{ + "description":"A positive response to a question", + "message":"Da" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video și Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Protecție malware" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Reclama apare şi în celălalt browser?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Ce crezi că va fi adevărat despre această reclamă de fiecare dată când accesezi această pagină?" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Ultimul pas: Ce caracterizează aceasta ca fiind o reclamă?" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Activează AdBlock pe această pagină" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Nu rula pe această pagină" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Înapoi" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Română" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Arată numărul de reclame blocate pe butonul AdBlock" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Pentru a ascunde butonul, click dreapta, iar apoi alege 'Ascundeți butonul'. Pentru a-l arăta trebuie să accesați managerul de extensii." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letonă" + "filterisraeli":{ + "description":"language", + "message":"Ebraică" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Filtrele blochează aproape toate reclamele de pe internet. De asemenea, poți:" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Această caracteristică AdBlock nu funcţionează pe acest site deoarece nu foloseşte tehnologie de actualitate. Puteţi pune manual resurse pe lista neagră sau albă în tab-ul 'Personalizare' din pagina de opţiuni." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Codul sursă este disponibil gratuit!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Cehă și Slovacă" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Alte filtre" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opțiuni" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Computerul poate fi infectat cu malware. Faceţi clic aici pentru mai multe informaţii." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Voi descărca automat actualizări; poţi, de asemenea, să actualizezi acum" + }, + "typeunknown":{ + "description":"A resource type", + "message":"necunoscut" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Arată reclame pe o pagină sau un domeniu" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"S-a găsit un element pe această pagină." + "filterturkish":{ + "description":"A filter list", + "message":"Turcă" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Ascunde o secțiune dintr-o pagină" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Trece pe lista albă canalul $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Cu cât ai mai multe filtre, cu atât mai încet funcționează AdBlock. Folosind prea multe filtre poate duce la oprirea navigatorului pe unele site-uri. Apasă OK pentru a adăuga filtrul oricum." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Adaugă acest filtru, iar apoi încearcă din nou: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opțiuni generale" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Computerul poate fi infectat cu malware. Faceţi clic aici pentru mai multe informaţii." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock nu va rula pe vreo pagină care conține:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Nu avem un filtru predefinit pentru limba ta.
Vă rugăm să căutați un filtru care suportă această limbă $link$ sau blocheză reclama în tabul 'Personalizare'.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Adaugă" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sunt un utilizator avansat, afişează-mi opţiunile avansate" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Ascunde acest buton" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Voi descărca automat actualizări; poţi, de asemenea, să actualizezi acum" - }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Click aici: Actualizează filtrele" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formatare: ~site1.com|~site2.com|~stiri.site3.org" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock este pauzat." - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"S-au găsit $matchcount$ rezultate", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Avem o pagină pentru a vă ajută sa gasiţi şi oamenii care au ajutat la construirea AdBlock!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indoneziană" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tip" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Click pe o reclamă și te voi ajuta să o blochezi." }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Există un update pentru AdBlock! Mergeţi la $here$ pentru actualizare.
Notă: Daca doriţi să primiţi automat update-uri, faceţi click pe opţiunea 'Install updates automatically' in Safari > Preferences > Extensions > Updates", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } + "typestylesheet":{ + "description":"A resource type", + "message":"definire de stil" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turcă" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Actualizări AdBlock" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Ce-i asta?" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Click dreapta pe o reclamă într-o pagină pentru a o bloca -- sau blocheaz-o aici manual" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Scuze, AdBlock este dezactivat pe această pagină din cauza unui filtru." }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Filtre personalizate" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Ar trebui să vă notifice AdBlock atunci când detectează malware?" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Nu adăuga mai multe filtre decât sunt necesare -- fiecare încetinește navigarea puțin! Credite și alte liste pot fi găsite aici." + "updateddayago":{ + "description":"Label for subscription", + "message":"Actualizat în urmă cu o zi" }, - "typestylesheet":{ - "description":"A resource type", - "message":"definire de stil" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Această caracteristică AdBlock nu funcţionează pe acest site deoarece nu foloseşte tehnologie de actualitate. Puteţi pune manual resurse pe lista neagră sau albă în tab-ul 'Personalizare' din pagina de opţiuni." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Scopul acestei întrebări este de a determina cine primește raportul tău." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Niciun filtru specificat!" }, - "filtereasylist_plus_polish":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Poloneză" + "message":"Germană" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Adaugă elemente la meniul clic dreapta" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Adaugă alte filtre" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blochează acest anunț" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Greacă" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"Actualizat în urmă cu $hours$ ore", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, "updatedsecondsago":{ "description":"Label for subscription", "message":"Actualizat în urmă cu $seconds$ secunde", "placeholders":{ "seconds":{ - "example":"15", - "content":"$1" + "content":"$1", + "example":"15" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Echipa noastră a solicitat unele informaţii de depanare? Faceţi clic aici pentru asta!" - }, - "typeobject":{ - "description":"A resource type", - "message":"obiect interactiv" - }, - "filterhungarian":{ - "description":"language", - "message":"Maghiară" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Link invalid. Va fi șters." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Notă: raportul tău poate deveni accesibil publicului. Gândește-te la aceasta înainte de a include ceva privat." + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Nesigur? Doar apasă 'Blocheză-l'." }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Reîncărcaţi pagina." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"În acel browser, navighează la pagina cu reclama." }, - "typepage":{ - "description":"A resource type", - "message":"pagină" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Aduceţi-ne la cunoştinţă pe siteul de suport!" }, - "filterdutch":{ - "description":"language", - "message":"Olandeză" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blocheză reclame doar pe aceste site-uri:" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Nu uita să salvezi!" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ va fi $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Personalizează" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Închide" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Pentru a raporta o reclamă, trebuie să fiţi conectat la internet." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Element blocat:" + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filtrul este invalid: $exception$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Trece pe lista albă canalul $name$", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Atenție: nici un filtru specificat!" - }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Permite AdBlock să colecteze anonim lista de utilizare a filtrului şi datele" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Ar trebui să vă notifice AdBlock atunci când detectează malware?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Ascunde o secțiune dintr-o pagină" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Arată reclame peste tot cu excepția acestor domenii..." + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Arată numărul de reclame blocate în meniul AdBlock" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opțiuni" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Reportare reclamă" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Nu rula AdBlock pe..." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgară" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"XMLHttpRequest" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Nu rula pe paginiile din acest domeniu" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Filtre personalizate" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Reclame blocate:" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blochează mai multe reclame:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Filtre AdBlock personalizate (recomandat)" + "lang_ukranian":{ + "description":"language", + "message":"Ucraineană" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Adaugă filtru pentru altă limbă: " + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tip" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (înlătură deranjurile pe Web)" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Extensiile care au fost dezactivate anterior acum au fost re-activate." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domeniul sau link-ul unde AdBlock nu va bloca reclame" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Nu rula AdBlock pe..." }, "blockurlwithtext":{ "description":"Message of the url-blocking area", "message":"Blochează link-urile care contine acest text" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS care se potrivește" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Exclude" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Pentru a ascunde butonul, du-te la opera://extensions şi bifează opţiunea 'Hide from toolbar'. Poate fi afișat din nou prin debifarea acestei opţiuni." + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Verifica în Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Click pe o reclamă și te voi ajuta să o blochezi." + "savebutton":{ + "description":"Save button", + "message":"Salvează" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Raportează o reclamă de pe această pagină" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Arată bine" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Personalizează AdBlock" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Rusă și ucraineană" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nici un malware cunoscut găsit." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Preluare... vă rugăm așteptați." + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permite AdBlock să colecteze anonim lista de utilizare a filtrului şi datele" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Ai girjă: dacă greșești aici, toate filtrele, inclusiv cele oficiale, pot funcționa greșit! \n
Citește sintaxa filtrelor pentru a învăța cum să adaugi filtre avansate." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Bifează pentru a putea folosi pe Hulu.com în cazul în care nu merge. Este necesară repornirea navigatorului." }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Suport AdBlock" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finlandeză" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Personalizează AdBlock" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Ascunde acest buton" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock este actualizat!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Filtre pentru blocare reclame" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ în total", + "updateddaysago":{ + "description":"Label for subscription", + "message":"Actualizat în urmă cu $days$ zile", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "days":{ + "content":"$1", + "example":"15" } } }, - "filterisraeli":{ - "description":"language", - "message":"Ebraică" + "typeobject":{ + "description":"A resource type", + "message":"obiect interactiv" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Scuze, AdBlock este dezactivat pe această pagină din cauza unui filtru." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Ce crezi că va fi adevărat despre această reclamă de fiecare dată când accesezi această pagină?" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Reclame blocate:" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "typemain_frame":{ + "description":"A resource type", + "message":"pagină" + }, + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Coreeană" }, "undo_last_block":{ "description":"Menu entry to let the user cancel the result of running the blacklist wizard", "message":"Anulare blocajele mele pe acest domeniu" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Introdu filtrul corect dedesubt și apasă OK" - }, - "updateddayago":{ - "description":"Label for subscription", - "message":"Actualizat în urmă cu o zi" - }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editează manual filtrele:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ pe această pagină", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Arată link-urile către listele de filtre" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Nesigur? Doar apasă 'Blocheză-l'." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (recomandat)" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"Actualizat în urmă cu o oră" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Pasul 1: Găsește ce vrei să blochezi" }, - "optionsversion":{ - "description":"Version number", - "message":"Versiunea $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Avem o pagină pentru a vă ajută sa gasiţi şi oamenii care au ajutat la construirea AdBlock!" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Șterge din listă" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Site:" }, - "other":{ - "description":"Multiple choice option", - "message":"Alte" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"aici" }, - "typehiding":{ + "typepopup":{ "description":"A resource type", - "message":"ascuns" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filtre" + "message":"pop-up" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Reclama apare înainte sau înăuntru unui film sau plugin (Flash)?" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Dacă vedeţi un anunţ, nu faceţi un raport de problemă, faceţi un raport de reclamă!" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Alte filtre" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock este actualizat!" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"sau Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Reîncărcaţi pagina." }, - "buttonblockit":{ - "description":"Block button", - "message":"Blocheză-l!" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Doar engleză" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Terminat!" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Folosești o versiune veche AdBlock. Vă rugăm să accesați managerul de extensii, să activați 'Mod dezvoltator' și să faceți click pe 'Actualizați extensiile imediat'." }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blocheză o reclamă de pe această pagină" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock este pauzat." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Nu doresc să încerc asta" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"Sau, doar faceţi click pe acest buton pentru ca noi să facem toate cele de mai sus: Dezactivaţi toate celelalte extensii" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Ce este nou în ultima versiune? Vezi changelog!" }, - "lang_english":{ - "description":"language", - "message":"Engleză" + "filterantisocial":{ + "description":"A filter list", + "message":"Filtru rețele sociale (elimină butoanele sociale)" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Personalizează" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Căutare reclame...

Va rugăm așteptați." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pauzează AdBlock" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sunt un utilizator avansat, afişează-mi opţiunile avansate" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Sunteţi sigur că doriţi să vă abonaţi la lista de filtrare $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"În acel browser, subscrie la aceleași liste de filtrare cum ai aici." }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Deschideţi pagina de extensii pentru a activa extensiile care au fost dezactivate anterior." + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blochează un anunț" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domeniul paginii pe care se va aplica:" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Coreeană" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Atenție: pe toate celălalte site-uri vei vedea reclame!
Aceasta respinge celălalte filtre pentru acele site-uri." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Pagina:" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Extensiile care au fost dezactivate anterior acum au fost re-activate." }, - "foundbug":{ + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"Ai găsit un bug?" + "message":"Vreţi să vedeţi cum a fost construit AdBlock?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Pasul 1: Găsește ce vrei să blochezi" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Filtre AdBlock personalizate (recomandat)" }, - "lang_czech":{ - "description":"language", - "message":"Cehă" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Cu cât ai mai multe filtre, cu atât mai încet funcționează AdBlock. Folosind prea multe filtre poate duce la oprirea navigatorului pe unele site-uri. Apasă OK pentru a adăuga filtrul oricum." + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Ce-i asta?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"sau AdBlock pentru Chrome" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blochează un anunț" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Mulțumiri:" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formatare: ~site1.com|~site2.com|~stiri.site3.org" }, - "filterdanish":{ - "description":"language", - "message":"Daneză" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video și Flash" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Editează" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Filtrele blochează aproape toate reclamele de pe internet. De asemenea, poți:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Căutare reclame...

Va rugăm așteptați." + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Pentru a ascunde butonul, faceţi clic dreapta pe bara de instrumente din Safari şi alegeţi Customize Toolbar, apoi glisaţi butonul AdBlock afară din bara de instrumente. Îl puteţi afișa din nou trăgându-l înapoi în bara de instrumente." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domeniul sau link-ul unde AdBlock nu va bloca reclame" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Ai depăşit limita de spaţiu Dropbox. Te rugăm îndepărtează câteva intrări din filtrele proprii sau cele dezactivate şi încearcă din nou." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Verificare actualizări (ar trebui să ia doar câteva secunde)..." + "filterhungarian":{ + "description":"language", + "message":"Maghiară" }, - "typescript":{ - "description":"A resource type", - "message":"script" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"sau Chrome" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Nu rula pe paginiile din acest domeniu" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Adaugă" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Reîncarcă pagina cu reclama." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Plătiţi ceea ce doriţi!" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Instalează Firefox $chrome$ dacă nu le ai.", + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Editare filtre dezactivate:" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Aceasta este o problemă de filtru. Reporteaz-o aici: $link$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Actualizări AdBlock" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Element blocat:" }, - "no":{ - "description":"A negative response to a question", - "message":"Nu" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Notă: raportul tău poate deveni accesibil publicului. Gândește-te la aceasta înainte de a include ceva privat." }, - "lang_ukranian":{ - "description":"language", - "message":"Ucraineană" + "typepage":{ + "description":"A resource type", + "message":"pagină" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"Actualizat în urmă cu $minutes$ minute", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ + "adstillappear":{ + "description":"Question on ad report page", + "message":"Reclama încă apare?" + }, + "typeother":{ + "description":"A resource type", + "message":"altul" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Click aici: Actualizează filtrele" + }, + "filteritalian":{ "description":"language", - "message":"Franceză" + "message":"Italiană" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"Sau, doar faceţi click pe acest buton pentru ca noi să facem toate cele de mai sus: Dezactivaţi toate celelalte extensii" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Pentru a ascunde butonul, du-te la opera://extensions şi bifează opţiunea 'Hide from toolbar'. Poate fi afișat din nou prin debifarea acestei opţiuni." + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Ceva a mers prost în timp ce se verificau actualizările." + }, + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Click pe meniul Safari → Preferințe → Extensii." }, "typeobject_subrequest":{ "description":"A resource type", "message":"object_subrequest" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"Actualizare finalizată acum" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Submit" }, - "savebutton":{ - "description":"Save button", - "message":"Salvează" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Pagina:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Atenție: pe toate celălalte site-uri vei vedea reclame!
Aceasta respinge celălalte filtre pentru acele site-uri." + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Dezactivaţi aceste notificări" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Reîncarcă pagina cu reclama." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Se adaugă filtrul..." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Dezabonat." }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"Actualizat în urmă cu $days$ zile", + "typemedia":{ + "description":"A resource type", + "message":"audio/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"frame" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (protecție a vieții private)" + "message":"Letonă" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Aflaţi mai multe despre malware" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blocheză o reclamă de pe această pagină" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Cehă și Slovacă" + "buttonblockit":{ + "description":"Block button", + "message":"Blocheză-l!" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Folosești o versiune veche AdBlock. Vă rugăm să accesați managerul de extensii, să activați 'Mod dezvoltator' și să faceți click pe 'Actualizați extensiile imediat'." + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Oprește blocarea reclamelor:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opțiuni AdBlock" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Permite whitelisting pentru canale Youtube specifice" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Curăţă această listă" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"În ce limbă este scrisă pagina?" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Filtru rețele sociale (elimină butoanele sociale)" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Debizează caseta de selectare 'Activată' de lângă fiecare extensie, cu excepția AdBlock. Lasă AdBlock activat." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Arată declarații de depanare în Consolă (încetinește AdBlock)" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Ai depăşit limita de spaţiu Dropbox. Te rugăm îndepărtează câteva intrări din filtrele proprii sau cele dezactivate şi încearcă din nou." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Șterge din listă" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Activaţi AdBlock" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Nu putem bloca reclame din plugin-uri (Flash). Avem nevoie de suport de la navigator și de la motorul WebKit." }, - "filtereasylist_plus_german":{ + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" + }, + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Poți glisa dedesubt pentru a alege exact pe ce pagini AdBlock nu va rula." + }, + "typehiding":{ + "description":"A resource type", + "message":"ascuns" + }, + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock este dezactivat pe această pagină." + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Reclama apare înainte sau înăuntru unui film sau plugin (Flash)?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Rusă și ucraineană" + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Germană" + "message":"Spaniolă" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blochează acest anunț" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Fii atent! Acest filtru blochează toate elementele de tip $elementtype$ de pe pagină.", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"aici" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Activați modul de compatibilitate ClickToFlash" }, - "yes":{ - "description":"A positive response to a question", - "message":"Da" + "no":{ + "description":"A negative response to a question", + "message":"Nu" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Bifează pentru a putea folosi pe Hulu.com în cazul în care nu merge. Este necesară repornirea navigatorului." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Activează AdBlock pe această pagină" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Exclude" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filtrul, care poate fi schimbat în Opțiuni:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"În ce limbă este scrisă pagina?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Arată numărul de reclame blocate pe butonul AdBlock" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Eșec!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Sigur doriţi să eliminaţi $count$ blocaje pe care le-aţi creat pe $host$?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pauzează AdBlock" + }, + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Următorul filtru:
$filter$
are o eroare:
$message$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "message":{ + "content":"$2", + "example":"invalid filter" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typeimage":{ - "description":"A resource type", - "message":"imagine" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Mulțumiri:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"Încărcare..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Click dreapta pe o reclamă într-o pagină pentru a o bloca -- sau blocheaz-o aici manual" - }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Pentru a ascunde butonul, click dreapta, iar apoi alege 'Ascundeți butonul'. Pentru a-l arăta trebuie să accesați managerul de extensii." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Română" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editare filtre dezactivate:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Ceva a mers prost în timp ce se verificau actualizările." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Pentru a ascunde butonul, faceţi clic dreapta pe bara de instrumente din Safari şi alegeţi Customize Toolbar, apoi glisaţi butonul AdBlock afară din bara de instrumente. Îl puteţi afișa din nou trăgându-l înapoi în bara de instrumente." + "lang_english":{ + "description":"language", + "message":"Engleză" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"Actualizat în urmă cu un minut" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Adaugă elemente la meniul clic dreapta" }, - "typemain_frame":{ - "description":"A resource type", - "message":"pagină" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Poți bloca această reclamă pentru tine în Opțiuni. Mulțumesc!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "lang_russian":{ + "description":"language", + "message":"Rusă" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Sigur doriţi să eliminaţi $count$ blocaje pe care le-aţi creat pe $host$?", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Folosești o versiune veche Safari. Instalează ultima versiune pentru a putea folosi butonul din bara de instrumente AdBlock, pentru a permite reclame pe anumite site-uri și pentru a raporta reclame. Actualizează acum." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (protecție a vieții private)" + }, + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "typexmlhttprequest":{ + "description":"A resource type", + "message":"XMLHttpRequest" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ va fi $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -968,285 +927,366 @@ "description":"Link for custom subscription", "message":"Sau introdu URL-ul:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Folosești o versiune veche Safari. Instalează ultima versiune pentru a putea folosi butonul din bara de instrumente AdBlock, pentru a permite reclame pe anumite site-uri și pentru a raporta reclame. Actualizează acum." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Terminat!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Alege Limba --" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Activaţi AdBlock" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Adaugă filtru pentru altă limbă: " }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Click pe meniul Safari → Preferințe → Extensii." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"Încărcare..." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Oprește blocarea reclamelor:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Echipa noastră a solicitat unele informaţii de depanare? Faceţi clic aici pentru asta!" + }, + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Protecție malware" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Raportează o reclamă de pe această pagină" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Arată declarații de depanare în Consolă (încetinește AdBlock)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Instalează Firefox $chrome$ dacă nu le ai.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Glisează cursorul până când reclama este blocată corect și arată bine." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Ai depășit spațiul de stocare pe care AdBlock îl poate folosi. Vă rugăm ștergeți câteva filtre!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Cea mai populară extensie pentru Chrome, cu peste 40 de milioane de utilizatori! Blochează orice reclamă pe web." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Reclama încă apare?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ai găsit un bug?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Suport" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Aflaţi mai multe despre malware" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgară" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Vreţi să vedeţi cum a fost construit AdBlock?" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Eșec!" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filtrul, care poate fi schimbat în Opțiuni:" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Filtre" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Editează manual filtrele:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock nu va rula pe vreo pagină care conține:" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Următorul filtru:
$filter$
are o eroare:
$message$", + "filterchinese":{ + "description":"language", + "message":"Chineză" + }, + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filtrul este invalid: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"pop-up" - }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Glisează cursorul până când reclama este blocată corect și arată bine." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Se adaugă filtrul..." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tip" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Deschideţi pagina de extensii pentru a activa extensiile care au fost dezactivate anterior." }, - "lang_slovak":{ - "description":"language", - "message":"Slovacă" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Dezactivaţi aceste notificări" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Adaugă alte filtre" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"S-au găsit $matchcount$ rezultate", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Reclama apare şi în celălalt browser?" + "updatedhourago":{ + "description":"Label for subscription", + "message":"Actualizat în urmă cu o oră" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Nu rula pe această pagină" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blocheză reclame doar pe aceste site-uri:" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Alege Limba --" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Aduceţi-ne la cunoştinţă pe siteul de suport!" + "filtereasylist_plus_french":{ + "description":"language", + "message":"Franceză" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Ultimul pas: Ce caracterizează aceasta ca fiind o reclamă?" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indoneziană" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Ai depășit spațiul de stocare pe care AdBlock îl poate folosi. Vă rugăm ștergeți câteva filtre!" + "typeimage":{ + "description":"A resource type", + "message":"imagine" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Nu putem bloca reclame din plugin-uri (Flash). Avem nevoie de suport de la navigator și de la motorul WebKit." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Editează" }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Eșec la preluarea filtrului!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Poți bloca această reclamă pentru tine în Opțiuni. Mulțumesc!" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ în total", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "tabgeneral":{ + "tabsupport":{ "description":"A tab on the options page", - "message":"General" + "message":"Suport" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blocheză o reclamă introducându-i link-ul" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "buttoncancel":{ + "description":"Cancel button", + "message":"Anulează" }, - "typeother":{ - "description":"A resource type", - "message":"altul" + "savereminder":{ + "description":"Reminder to press save", + "message":"Nu uita să salvezi!" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Submit" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Niciun filtru specificat!" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "optionsversion":{ + "description":"Version number", + "message":"Versiunea $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"necunoscut" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "filtereasylist_plus_finnish":{ + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Scopul acestei întrebări este de a determina cine primește raportul tău." + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Sunteţi sigur că doriţi să vă abonaţi la lista de filtrare $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Codul sursă este disponibil gratuit!" + }, + "filterdutch":{ "description":"language", - "message":"Finlandeză" + "message":"Olandeză" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Introdu filtrul corect dedesubt și apasă OK" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock este dezactivat pe această pagină." + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Există un update pentru AdBlock! Mergeţi la $here$ pentru actualizare.
Notă: Daca doriţi să primiţi automat update-uri, faceţi click pe opţiunea 'Install updates automatically' in Safari > Preferences > Extensions > Updates", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"S-a găsit un element pe această pagină." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japoneză" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Aceasta este o problemă de filtru. Reporteaz-o aici: $link$", + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Curăţă această listă" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"Actualizat în urmă cu $hours$ ore", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Debizează caseta de selectare 'Activată' de lângă fiecare extensie, cu excepția AdBlock. Lasă AdBlock activat." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Înapoi" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Arată link-urile către listele de filtre" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Doar engleză" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Anulează" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opțiuni AdBlock" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Ajuta la răspândire!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Poți glisa dedesubt pentru a alege exact pe ce pagini AdBlock nu va rula." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock a blocat descărcarea de pe un site cunoscut că găzduiește malware." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Verifica în Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Nu adăuga mai multe filtre decât sunt necesare -- fiecare încetinește navigarea puțin! Credite și alte liste pot fi găsite aici." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Activați modul de compatibilitate ClickToFlash" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Verificare actualizări (ar trebui să ia doar câteva secunde)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Adaugă acest filtru, iar apoi încearcă din nou: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Alte" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domeniul paginii pe care se va aplica:" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"Actualizare finalizată acum" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"Actualizat în urmă cu $minutes$ minute", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Pentru a raporta o reclamă, trebuie să fiţi conectat la internet." + "lang_czech":{ + "description":"language", + "message":"Cehă" }, - "filtereasylist":{ + "filterswedish":{ "description":"A filter list", - "message":"EasyList (recomandat)" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "message":"Suedeză" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Eșec la preluarea filtrului!" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Suport AdBlock" }, - "filteritalian":{ - "description":"language", - "message":"Italiană" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tip" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spaniolă" + "typesubdocument":{ + "description":"A resource type", + "message":"frame" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Arată bine" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"Actualizat în urmă cu un minut" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Dacă vedeţi un anunţ, nu faceţi un raport de problemă, faceţi un raport de reclamă!" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Ai o întrebare sau o idee nouă?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - click pentru detalii" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Atenție: nici un filtru specificat!" } } \ No newline at end of file diff --git a/_locales/ru/messages.json b/_locales/ru/messages.json index f2ca9bd5..e1a910e1 100644 --- a/_locales/ru/messages.json +++ b/_locales/ru/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Приложите скриншот:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Известных вредоносных программ не обнаружено." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"В этом браузере подпишитесь на те же списки фильтров, как у Вас здесь." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock актуальный!" + "message":"Есть вопрос или новая идея?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"В этом браузере, загрузите страницу с рекламой." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Параметры" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Шведский" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Блокировать больше рекламы:" - }, - "lang_russian":{ - "description":"language", - "message":"Русский" + "message":"EasyList (рекомендуется)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Отказ от подписки." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ на этой странице", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Китайский" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Если Вы создали рабочий фильтр с помощью мастера «блокировка рекламы», вставьте его в поле ниже:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Список антисоциальных фильтров (удаляет кнопки социальных средств массовой информации)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Нашли рекламу на странице? Мы поможем вам найти правильное место, чтобы сообщить о ней!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Показать количество заблокированной рекламы на кнопке AdBlock" + "message":"Польский" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Исходный код в свободном доступе !" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"Соответствующий CSS" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"обновлено 1 минуту назад" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Исключить" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Не удалось извлечь этот фильтр!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Я не хочу проверять это" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Пожалуйста, перезапустите Safari для завершения отключения блокировки содержимого." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Блокировать рекламу по её URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Скрыть эту кнопку" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Осторожно: Если Вы сделаете здесь ошибку, много других фильтров, включая официальные фильтры, могут оказаться сломанными тоже!
Прочитайте Учебник по синтаксису фильтров, чтобы научиться дополнять черный и белый списки фильтров." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Я буду вносить обновления автоматически; Вы можете также обновить сейчас" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Реклама появляется в этом браузере тоже?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Формат: ~site1.com|~site2.com|~news.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Если Вы не хотите видеть рекламу вроде этой - вам нужно оставить фильтр Приемлемой Рекламы выключенным." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Эстонский" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Тип" + "message":"Литовский" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Есть обновление для AdBlock! Перейдите на $here$ для обновления.
Примечание: Если Вы хотите получать обновления автоматически, просто нажмите на Safari > Настройки...> Расширения> Обновления
и отметьте опцию «Устанавлить обновления автоматически».", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Подпишитесь на этот список, а затем попробуйте снова: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Что это?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Остановить CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Не подписывайтесь на больше чем нужно – каждый из них замедляет чуть-чуть работу! Первоисточники и дополнительные списки Вы можете найти здесь." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Эта функция AdBlock не работает на этом сайте, потому что он использует устаревшие технологии. Вы можете внести её в черный или белый список ресурсов вручную на вкладке «Настроить» страницы параметров." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Польский" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Узнайте больше о программе Приемлемой Рекламы." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"обновлено $seconds$ сек. назад", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Ваш компьютер может быть заражен вредоносными программами. Нажмите здесь для получения дополнительной информации." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Показывать рекламу на веб-странице или домене" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Венгерский" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Примечание: отчет может стать общедоступным. Имейте это в виду, прежде чем включать в него что-то личное." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Пожалуйста, отключите некоторые списки фильтров. Больше информации см. в Параметры AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"словацкий" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Происхождение фильтра:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Установите Adblock Plus для Firefox $chrome$, если у вас его нет.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Извените, AdBlock отключен на этой странице одним из списков фильтров." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Недопустимый фильтр: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"У нас нет списка фильтров по умолчанию для этого языка.
Пожалуйста, попробуйте найти подходящий список, который поддерживает этот язык $link$, или заблокируйте эту рекламу для себя на вкладке 'Настройка'", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Внимание: фильтр не задан!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock отключен на этой странице." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Щелкните по рекламе, и я доведу Вас до ее блокировки." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Показывать рекламу везде, кроме этих доменов..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Топ фрейм" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Параметры" + "typestylesheet":{ + "description":"A resource type", + "message":"задание стиля" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"неизвестно" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Извините, CatBlock отключен на этой странице одним из списков фильтров." + "message":"Извените, AdBlock отключен на этой странице одним из списков фильтров." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Заблокированная реклама:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Добавьте фильтры для другого языка: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Сторонний" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Щелкните по рекламе, и я доведу Вас до ее блокировки." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Фильтр не задан!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"Поиск фотографий (например: парусная гонка)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Греческий" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Если Вы видите рекламу, не отправляйте отчет об ошибках, отправьте отчет о рекламе!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Настроить CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Вы используете старую версию AdBlock. Пожалуйста, перейдите на страницу Расширения, включите 'Режим разработчика' и нажмите кнопку 'Обновить расширения'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Прекрасно! Все настроено." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Как Вас зовут?" }, - "other":{ - "description":"Multiple choice option", - "message":"Другой" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Решение проблемы Видео на Hulu.com не воспроизводится (требуется перезапуск браузера)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Поддержка AdBlock" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Внимание: фильтр не задан!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Настройка" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Нашли рекламу на странице? Мы поможем вам найти правильное место, чтобы сообщить о ней!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Эстонский" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Настройка AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Необходимая информация отсутствует или недопустима. Ответьте, пожалуйста, на вопросы в красных рамках." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Болгарский" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Ошибка при сохранении загружаемого файла." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Ресурс из белого списка" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Введите правильный фильтр и нажмите OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Превышено ограничение правил Блокировки Содержимого" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Шаг 1: Определить, что нужно заблокировать" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Установите флажок на наборы картинок, которые вы хотите использовать." }, - "filterdanish":{ - "description":"language", - "message":"Датский" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Не запускать AdBlock на..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ на этой странице", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Блокировать URL, содержащие этот текст" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Закрыть" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Проверить в Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Субфрейм" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Последний шаг: Что делать с этой рекламой?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"обновлено 1 час назад" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Если Вы видите рекламу, не отправляйте отчет об ошибках, отправьте отчет о рекламе!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Корейский" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"или Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Как Вас зовут?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Наиболее популярное расширение Chrome с более чем 40 миллионами пользователей! Блокирует рекламу по всему Интернету." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Вы используете старую версию Safari. Установите последнюю версию, чтобы использовать кнопки панели инструментов AdBlock для приостановки работы AdBlock, использования белого списка веб-сайтов и сообщений о рекламе. Обновить сейчас." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Показать все запросы" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Финский" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Я не хочу проверять это" + "typescript":{ + "description":"A resource type", + "message":"сценарий" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Параметры" + "lang_ukranian":{ + "description":"language", + "message":"Украинский" }, - "yes":{ - "description":"A positive response to a question", - "message":"Да" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Известных вредоносных программ не обнаружено." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Отменить мои блокировки на этом домене" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Пожалуйста, отключите некоторые списки фильтров. Больше информации см. в Параметры AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Настройка" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Мы отписался Вас от Приемлемой Рекламы, потому что Вы включили Блокировку Содержимого в Safari. Одновременно можно выбрать только одно. (Почему?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Приостановить AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"А также у нас есть страница, которая поможет Вам узнать людей, стоящих за AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Вы уверены, что хотите подписаться на список фильтров $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"здесь" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Где именно на этой странице появляется реклама? Как это выглядит?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Отключите все расширения, кроме CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"или AdBlock для Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Перезагрузить страницу." }, - "typestylesheet":{ - "description":"A resource type", - "message":"задание стиля" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"На каком языке эта страница?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Показывать сообщения отладки в Журнале Консоли (замедляет CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock приостановлен." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Бета" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Параметры" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Превышено ограничение правил Блокировки Содержимого" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Возобновить работу AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Поиск рекламы...

Это займет секунды" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"Flickr фотосет URL-адрес (например: $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock отключен на этой странице." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Домен или URL, где AdBlock не должен ничего блокировать" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"В этом браузере подпишитесь на те же списки фильтров, как у Вас здесь." }, - "typescript":{ - "description":"A resource type", - "message":"сценарий" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Заблокировать рекламу" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ всего", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Внимание: на всех других сайтах Вы увидите рекламу!
Будут отменены все другие фильтры для этих сайтов." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Есть обновление для AdBlock! Перейдите на $here$ для обновления.
Примечание: Если Вы хотите получать обновления автоматически, просто нажмите на Safari > Настройки...> Расширения> Обновления
и отметьте опцию «Устанавлить обновления автоматически».", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Все готово! Мы скоро свяжемся с Вами, наиболее вероятно в течение одного-двух дней, если это не праздники. Также, найдите в электронной почте письмо от AdBlock. Вы найдете там ссылку на Ваш запрос на нашем сайте помощи. Если Вы предпочитаете следить за результатами по электронной почте, Вы можете делать это тоже!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Завершено!" }, - "no":{ - "description":"A negative response to a question", - "message":"Нет" + "filteradblock_custom":{ + "description":"A filter list", + "message":"пользовательские фильтры AdBlock (рекомендуется)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Что-то пошло не так. Ресурсы не были отправлены. Эта страница будет закрыта. Попробуйте перезагрузить сайт." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Тип" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Что это?" + }, + "filterjapanese":{ "description":"language", - "message":"Украинский" + "message":"Японский" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"обновлено $minutes$ мин. назад", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Происхождение фильтра:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Мы отписался Вас от Приемлемой Рекламы, потому что Вы включили Блокировку Содержимого в Safari. Одновременно можно выбрать только одно. (Почему?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Вы не подписались на список фильтров приемлемой рекламы." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Защита от вредоносных программ" - }, - "savebutton":{ - "description":"Save button", - "message":"Сохранить" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Внимание: на всех других сайтах Вы увидите рекламу!
Будут отменены все другие фильтры для этих сайтов." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Отключить эти уведомления" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Подписка на список фильтров..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Подписка на списки фильтров" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Вы используете старую версию AdBlock. Пожалуйста, перейдите на страницу Расширения, включите 'Режим разработчика' и нажмите кнопку 'Обновить расширения'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Тип фрейма: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Параметры AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Добавьте фильтры для другого языка: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Соответствующий фильтр" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Проверка наличия вредоносных программ, которые могут добавлять рекламу:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Списки фильтров блокируют большинство рекламы в Интернете. Вы также можете:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Показывать сообщения отладки в Журнале Консоли (замедляет AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Чтобы скрыть кнопку, щелкните правой кнопкой мыши по панели инструментов Safari и выберите Настроить панель инструментов, а затем перетащите кнопку AdBlock с панели инструментов. Вы можете показать её снова, перетащив обратно на панель инструментов." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Превышен предельный размер Dropbox. Пожалуйста, удалите некоторые записи из Ваших действующих или отключенных фильтров и повторите попытку." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Возобновить работу AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Решение проблемы Видео на Hulu.com не воспроизводится (требуется перезапуск браузера)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Исключить" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Отключите все расширения, кроме AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Не запускать CatBlock на..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Благодарите за перевод:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"ЗАГРУЗКА..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Щелкните правой кнопкой мыши рекламу на странице, чтобы заблокировать её - или заблокируйте здесь вручную." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Подписаться" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Примечание: Белый список (разрешает рекламу) на странице или сайте не поддерживается в Safari блокирование содержимого включена." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Домен или URL, где CatBlock не должен ничего блокировать" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Мы будем использовать его только для связи с Вами, если нам нужно будет больше информации." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Редактировать отключенные фильтры:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Блокируемый элемент:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"страница" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Включить Блокировку Содержимого в Safari" + "typeother":{ + "description":"A resource type", + "message":"другое" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Ваш адрес электронной почты?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Щелкните: Обновить фильтры!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Чтобы скрыть кнопку, щелкните правой кнопкой мыши по панели инструментов Safari и выберите Настроить панель инструментов, а затем перетащите кнопку AdBlock с панели инструментов. Вы можете показать её снова, перетащив обратно на панель инструментов." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Произошла ошибка при обработке вашего запроса." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Скрытый элемент" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Чтобы скрыть кнопку, перейдите в opera://extensions и включите опцию \"Скрыть из панели инструментов\". Вы можете отобразить её снова, сняв эту опцию." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"страница" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Добавить Фотографии" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Стр.:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Готово! Мы перезагрузили страницу с рекламой. Пожалуйста, проверьте пропала реклама на ней или нет. Потом вернитесь на эту страницу и дайте ответы на следующие вопросы." + "buttonblockit":{ + "description":"Block button", + "message":"Блокировать!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Или введите URL:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Разрешить заносить определенные каналы YouTube в белый список" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Вы используете старую версию Safari. Установите последнюю версию, чтобы использовать кнопки панели инструментов AdBlock для приостановки работы AdBlock, использования белого списка веб-сайтов и сообщений о рекламе. Обновить сейчас." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Настроить CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Откройте меню Safari → Параметры → Расширения." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"Поиск фотографий (например: парусная гонка)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Остановить блокировку рекламы:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Мы еще не можем блокировать рекламу внутри Флэш и других плагинах. Мы ждем поддержки от браузера и WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Блокировать!" + "filterhungarian":{ + "description":"language", + "message":"Венгерский" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Реклама все еще появляется?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Блокировать эту рекламу" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Болгарский" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Прекрасно! Теперь давайте выясним, какое расширение является причиной. Попробуйте включать каждое расширение одно за другим. Расширение, которое вернет рекламные объявления необходимо удалить, чтобы избавится от рекламы." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Включить AdBlock на этой странице" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Показать количество заблокированной рекламы на кнопке AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Ошибка!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Редактирование фильтров вручную:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Приостановить AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Итальянский" - }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "message":"Английский" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Тип" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Добавить элементы в меню правой кнопки мыши" }, - "lang_slovak":{ - "description":"language", - "message":"словацкий" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Пожалуйста, перейдите на наш сайт поддержки." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Подписка на списки фильтров" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Список Предупреждений об удалении AdBlock (удаляет предупреждения об использовании блокировщика рекламы)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Вы можете снова включить это и поддерживать веб-сайты, которые Вы любите, выбрав «Разрешить некоторую ненавязчивую рекламу» ниже." + "typemain_frame":{ + "description":"A resource type", + "message":"страница" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Реклама появляется в этом браузере тоже?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Вы уверены, что хотите удалить $count$ блокировок, которые Вы создали на $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Не запускать на этой странице" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Условные обозначения: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"обновлено $minutes$ мин. назад", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Приложите скриншот:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Литовский" + "message":"Румынский" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Дайте нам знать на нашем сайте поддержки!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Редактировать отключенные фильтры:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock приостановлен." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Субфрейм" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Мы еще не можем блокировать рекламу внутри Флэш и других плагинах. Мы ждем поддержки от браузера и WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Перезагрузите страницу с рекламой." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Включить Блокировку Содержимого в Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Установите Firefox $chrome$, если у Вас их нет.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Общая" + "message":"Списки фильтров" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Если Вы не хотите видеть рекламу вроде этой - вам нужно оставить фильтр Приемлемой Рекламы выключенным." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Если Вы создали рабочий фильтр с помощью мастера «блокировка рекламы», вставьте его в поле ниже:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Ваш компьютер может быть заражен вредоносными программами. Нажмите здесь для получения дополнительной информации." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Этот файл слишком большой. Пожалуйста, убедитесь, что ваш файл менее 10 МБ." }, - "typeother":{ - "description":"A resource type", - "message":"другое" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock не будет работать на соответствующих страницах:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Фильтр не задан!" + "filterchinese":{ + "description":"language", + "message":"Китайский" }, - "typeunknown":{ - "description":"A resource type", - "message":"неизвестно" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Недопустимый фильтр: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Подписка на список фильтров..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Откройте страницу расширений, чтобы включить расширения, которые ранее были отключены." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Отключить эти уведомления" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Турецкий" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Не подписывайтесь на больше чем нужно – каждый из них замедляет чуть-чуть работу! Первоисточники и дополнительные списки Вы можете найти здесь." + }, + "typesubdocument":{ "description":"A resource type", - "message":"аудио/видео" + "message":"фрейм" }, - "filterjapanese":{ - "description":"language", - "message":"Японский" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Индонезийский" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Разрешить некоторую ненавязчивую рекламу" + "typeimage":{ + "description":"A resource type", + "message":"изображение" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ всего", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Отмена" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Вы можете переместиться ниже, чтобы изменить именно те страницы, на которых AdBlock не будет работать." + "savereminder":{ + "description":"Reminder to press save", + "message":"Не забудьте сохранить!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"селектор" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Мы отключить Блокировку Содержимого в Safari потому, что Вы решили разрешить ненавязчивую рекламу. Одновременно можно выбрать только одно. (Почему?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Последний шаг: сообщите нам о проблеме." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Проверить в Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Исландский" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Чтобы сообщить о рекламе, необходимо подключение к Интернету." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Списки фильтров блокировки рекламы" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (рекомендуется)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Блокировать рекламу только на этих сайтах:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"Flickr фотосет ID (например: $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Загружено на страницу с доменом:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - отчет о рекламе" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Расширения, которые были отключены ранее, снова включены." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Списки фильтров блокировки рекламы" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Извините, CatBlock отключен на этой странице одним из списков фильтров." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Как?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Очистить этот список" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Разрешить заносить определенные каналы YouTube в белый список" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Помогите распространить информацию!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Сторонний" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Включить CatBlock на этой странице" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (удаляет отвлекающее содержимое в интернете)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - нажмите, чтобы увидеть подробности" + "optionstitle":{ + "description":"Title for the options page", + "message":"Параметры AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock актуальный!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Произошла ошибка при обработке вашего запроса." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"обновлено $hours$ час. назад", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"обновлено 1 час назад" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Русский и украинский" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Проверка обновлений (займет всего несколько секунд)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Что нового в последней версии? См. changelog!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"обновлено прямо сейчас" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Расширения, которые были отключены ранее, снова включены." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Щелкните правой кнопкой мыши рекламу на странице, чтобы заблокировать её - или заблокируйте здесь вручную." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Греческий" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Проверка наличия вредоносных программ, которые могут добавлять рекламу:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Скрыть секцию веб-страницы" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Поддержка AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Видео и Флэш" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Тип" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Как Вы думаете, будет правильно видеть эту рекламу каждый раз при посещении этой страницы?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Сдвигайте ползунок до тех пор, пока реклама не будет заблокирована правильно, а заблокированный элемент выглядит пригодным." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Включить AdBlock на этой странице" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"обновлено 1 минуту назад" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Назад" + "typesub_frame":{ + "description":"A resource type", + "message":"фрейм" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Списки фильтров блокируют большинство рекламы в Интернете. Вы также можете:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Заблокированный ресурс" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Следующие сведения будут также включены в отчет о рекламе." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock приостановлен." + "filterdanish":{ + "description":"language", + "message":"Датский" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Проверяем фильтры Приемлемой Рекламы:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Показывать рекламу на веб-странице или домене" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Вы можете снова включить это и поддерживать веб-сайты, которые Вы любите, выбрав «Разрешить некоторую ненавязчивую рекламу» ниже." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Получение... подождите." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Недопустимый список URL. Будет удален." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Общие параметры" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock не может работать на этом домене." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Снимите флажок 'Включен' рядом с каждым расширением кроме AdBlock. Оставьте AdBlock включенным." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"В этом браузере, загрузите страницу с рекламой." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Показывать рекламу везде, кроме этих доменов..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Вы забыли приложить скриншот! Мы не можем помочь Вам не видя рекламу, о которой Вы сообщаете." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Показывать сообщения отладки в Журнале Консоли (замедляет CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Соответствует 1 элементу на этой странице." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"И вручную создать карточку, и копировать и вставить информацию ниже в раздел «Fill in any details you think will help us understand your issue»." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Осторожно: Если Вы сделаете здесь ошибку, много других фильтров, включая официальные фильтры, могут оказаться сломанными тоже!
Прочитайте Учебник по синтаксису фильтров, чтобы научиться дополнять черный и белый списки фильтров." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Не запускать CatBlock на..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Канал $name$ белого списка", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Чтобы скрыть кнопку, нажмите правую кнопку мыши и выберите Скрыть. Вы можете показать её снова в chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Общие параметры" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock не будет работать на соответствующих страницах:" + "filterisraeli":{ + "description":"language", + "message":"Иврит" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"У нас нет списка фильтров по умолчанию для этого языка.
Пожалуйста, попробуйте найти подходящий список, который поддерживает этот язык $link$, или заблокируйте эту рекламу для себя на вкладке 'Настройка'", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Эта функция AdBlock не работает на этом сайте, потому что он использует устаревшие технологии. Вы можете внести её в черный или белый список ресурсов вручную на вкладке «Настроить» страницы параметров." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Подписаться" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Чешский и словацкий" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Я продвинутый пользователь, покажите мне дополнительные опции" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Мы отключили все остальные расширения. Сейчас мы перезагрузим страницу с рекламой. Одну секундочку, пожалуйста." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Испанский" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Другие списки фильтров" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Загружено на страницу с доменом:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Я буду вносить обновления автоматически; Вы можете также обновить сейчас" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Щелкните: Обновить фильтры!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Показать все запросы" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Чем больше списков фильтров Вы используете, тем медленнее работает AdBlock. Использование слишком большого количества списков может привести даже к сбою браузера на некоторых веб-сайтах. Нажмите OK, чтобы подписаться на этот список в любом случае." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Последний шаг: Что делать с этой рекламой?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Прекрасно! Все настроено." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Соответствует $matchcount$ элементам на этой странице.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Бета" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"А также у нас есть страница, которая поможет Вам узнать людей, стоящих за AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Откройте страницу расширений." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Индонезийский" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Все готово! Мы скоро свяжемся с Вами, наиболее вероятно в течение одного-двух дней, если это не праздники. Также, найдите в электронной почте письмо от AdBlock. Вы найдете там ссылку на Ваш запрос на нашем сайте помощи. Если Вы предпочитаете следить за результатами по электронной почте, Вы можете делать это тоже!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Турецкий" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Узнайте больше о программе Приемлемой Рекламы." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Заблокировать рекламу" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Следует ли AdBlock уведомляет Вас, когда он обнаруживает вредоносные программы?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Пользовательские списки фильтров" + "updateddayago":{ + "description":"Label for subscription", + "message":"обновлено 1 день назад" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL фрейма: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Цель этого вопроса определить, кто должен получить Ваш отчет. Если Вы ответите на этот вопрос неправильно, то отчет будет направлен не тем людям и может быть проигнорирован." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Добавить элементы в меню правой кнопки мыши" - }, - "typeselector":{ - "description":"A resource type", - "message":"селектор" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Блокировать эту рекламу" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Наша команда запросила некоторую отладочную информацию? Нажмите здесь!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Немецкий" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Не запускать AdBlock на..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Сообщения о рекламе является добровольным. Это поможет каждому пользователю, благодаря добавлению в список фильтров реклама будет блокироваться у всех пользователей. Если Вы не чувствуете себя альтруистом прямо сейчас - ничего страшного. Просто закройте эту страничку и заблокируйте рекламу только для себя." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Это имя файла слишком длинное. Пожалуйста, дайте Вашему файлу более короткое имя." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Скрытый элемент" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"обновлено $seconds$ сек. назад", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Перезагрузить страницу." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Не запускать на этой странице" }, - "typepage":{ - "description":"A resource type", - "message":"страница" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Дайте нам знать на нашем сайте поддержки!" }, - "filterdutch":{ - "description":"language", - "message":"Голландский" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Это имя файла слишком длинное. Пожалуйста, дайте Вашему файлу более короткое имя." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Не забудьте сохранить!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Готово! Мы перезагрузили страницу с рекламой. Пожалуйста, проверьте пропала реклама на ней или нет. Потом вернитесь на эту страницу и дайте ответы на следующие вопросы." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Проверка обновлений (займет всего несколько секунд)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Все ресурсы" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Подпишитесь на этот список, а затем попробуйте снова: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Канал $name$ белого списка", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Следует ли AdBlock уведомляет Вас, когда он обнаруживает вредоносные программы?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Ресурс" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Снимите флажок 'Включен' рядом с каждым расширением кроме CatBlock. Оставьте CatBlock включенным." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Показать количество заблокированной рекламы в меню AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Сайт:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - отчет о рекламе" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"пользовательские фильтры AdBlock (рекомендуется)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Как?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Не запускать на страницах этого домена" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Пользовательские списки фильтров" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Блокировать больше рекламы:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Необходимая информация отсутствует или недопустима. Ответьте, пожалуйста, на вопросы в красных рамках." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Домен или URL, где AdBlock не должен ничего блокировать" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Латышский" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Вы не подписались на список фильтров приемлемой рекламы." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Убедитесь, что вы используете правильный язык фильтра(ов):" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (удаляет отвлекающее содержимое в интернете)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"Соответствующий CSS" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock заблокировал загрузку с сайта, известного как место размещения вредоносного ПО." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Чтобы скрыть кнопку, перейдите в opera://extensions и включите опцию \"Скрыть из панели инструментов\". Вы можете отобразить её снова, сняв эту опцию." + "savebutton":{ + "description":"Save button", + "message":"Сохранить" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Не уверены? Просто нажмите кнопку 'Блокировать!'." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Соответствующий фильтр" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Получение... подождите." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Все ресурсы" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Последний шаг: сообщите нам о проблеме." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock актуальный!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Остановить CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Не запускать на страницах этого домена" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Где именно на этой странице появляется реклама? Как это выглядит?" }, - "filterisraeli":{ - "description":"language", - "message":"Иврит" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Выглядит хорошо" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Сдвигайте ползунок до тех пор, пока реклама не будет заблокирована правильно, а заблокированный элемент выглядит пригодным." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Блокировать URL, содержащие этот текст" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Разрешить AdBlock сбирать анонимное использование списка фильтров и данные" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Добавить несколько фотографий с Flickr! Вы можете выбрать:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Чтобы сообщить о рекламе, необходимо подключение к Интернету." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Количество правил списка фильтров превышает ограничение в 50 000 и автоматически уменьшено. Пожалуйста, отпишитесь от некоторых списков фильтров или отключите блокирование содержимого Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Вы уверены, что хотите подписаться на список фильтров $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"обновлено 1 день назад" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Ненавязчивая реклама (рекомендуется)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Нажмите кнопку: Отключить Приемлемую Рекламу" - }, - "optionsversion":{ - "description":"Version number", - "message":"Версия $version$", + "message":"обновлено $days$ дн. назад", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Удалить из списка" + "typeobject":{ + "description":"A resource type", + "message":"интерактивный объект" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Это не файл изображения. Пожалуйста, загрузите файл .png, .gif или .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Как Вы думаете, будет правильно видеть эту рекламу каждый раз при посещении этой страницы?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Почему бы Вам не отправить нам сообщение об ошибке?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Заблокированная реклама:" }, - "typehiding":{ - "description":"A resource type", - "message":"скрытие" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Списки фильтров" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Арабский" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Домен фрейма:" + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Отменить мои блокировки на этом домене" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Топ фрейм" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Редактирование фильтров вручную:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Завершено!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Шаг 1: Определить, что нужно заблокировать" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Ресурс" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Введите правильный фильтр и нажмите OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Блокировать рекламу на этой странице" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Благодарите за перевод:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Убедитесь, что списки фильтров актуальны:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock актуальный!" }, - "lang_english":{ - "description":"language", - "message":"Английский" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Только на английском языке" }, - "filtericelandic":{ - "description":"language", - "message":"Исландский" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ИЛИ, просто нажмите эту кнопку для нас, чтобы сделать все вышеперечисленное: Отключить все другие расширения" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Откройте страницу расширений, чтобы включить расширения, которые ранее были отключены." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Что нового в последней версии? См. changelog!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Домен страницы" + "filterantisocial":{ + "description":"A filter list", + "message":"Список антисоциальных фильтров (удаляет кнопки социальных средств массовой информации)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Стр.:" + "filtermalware":{ + "description":"A filter list", + "message":"Защита от вредоносных программ" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Нашли ошибку?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Я продвинутый пользователь, покажите мне дополнительные опции" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Арабский" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Вы превысили объем памяти, который может использовать AdBlock. Пожалуйста, отключите некоторые списки фильтров!" }, - "lang_czech":{ - "description":"language", - "message":"Чешский" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Заплати сколько хочешь!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Ваш адрес электронной почты?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Хотите увидеть кто продвигает AdBlock?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Отключите все расширения, кроме CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Недопустимый список URL. Будет удален." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Скрыть секцию веб-страницы" }, - "typesub_frame":{ - "description":"A resource type", - "message":"фрейм" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Общая" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"или AdBlock для Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Видео и Флэш" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Прекрасно! Теперь давайте выясним, какое расширение является причиной. Попробуйте включать каждое расширение одно за другим. Расширение, которое вернет рекламные объявления необходимо удалить, чтобы избавится от рекламы." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Изменить" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"или Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Есть вопрос или новая идея?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Формат: ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Вы забыли приложить скриншот! Мы не можем помочь Вам не видя рекламу, о которой Вы сообщаете." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Заплати сколько хочешь!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ИЛИ, просто нажмите эту кнопку для нас, чтобы сделать все вышеперечисленное: Отключить все другие расширения" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Это проблема со списком фильтров. Сообщите сюда: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Подробнее о вредоносных программах" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Примечание: отчет может стать общедоступным. Имейте это в виду, прежде чем включать в него что-то личное." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Перезагрузите страницу с рекламой." + "filteritalian":{ + "description":"language", + "message":"Итальянский" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Установите Firefox $chrome$, если у Вас их нет.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"Flickr фотосет ID (например: $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Включить CatBlock на этой странице" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Обновления AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Реклама все еще появляется?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Список Предупреждений об удалении AdBlock (удаляет предупреждения об использовании блокировщика рекламы)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Убедитесь, что вы используете правильный язык фильтра(ов):" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Другие списки фильтров" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Убедитесь, что списки фильтров актуальны:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Французский" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Что-то пошло не так во время проверки обновлений." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Блокируемый элемент:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Откройте меню Safari → Параметры → Расширения." }, - "typeobject":{ - "description":"A resource type", - "message":"интерактивный объект" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Отправить" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"обновлено прямо сейчас" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"обновлено $days$ дн. назад", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"Flickr фотосет URL-адрес (например: $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Отказ от подписки." + }, + "typemedia":{ "description":"A resource type", - "message":"фрейм" + "message":"аудио/видео" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (конфиденциальность)" + "message":"Латышский" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Сообщить о рекламе на этой странице" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Блокировать рекламу на этой странице" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Очистить этот список" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Остановить блокировку рекламы:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Немецкий" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Ошибка при сохранении загружаемого файла." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Осторожно: этот фильтр блокирует все элементы $elementtype$ на странице!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Соответствует $matchcount$ элементам на этой странице.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"здесь" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"На каком языке эта страница?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Не удалось извлечь этот фильтр!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Вы уверены, что хотите удалить $count$ блокировок, которые Вы создали на $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Вы можете переместиться ниже, чтобы изменить именно те страницы, на которых AdBlock не будет работать." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"изображение" + "message":"скрытие" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"И вручную создать карточку, и копировать и вставить информацию ниже в раздел «Fill in any details you think will help us understand your issue»." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Отображается ли реклама перед фильмом или любым другим плагином как Flash-игра?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Чтобы скрыть кнопку, нажмите правую кнопку мыши и выберите Скрыть. Вы можете показать её снова в chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Русский и украинский" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Румынский" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Что-то пошло не так во время проверки обновлений." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Мы отключили все остальные расширения. Сейчас мы перезагрузим страницу с рекламой. Одну секундочку, пожалуйста." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Ресурс из белого списка" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Испанский" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Осторожно: этот фильтр блокирует все элементы $elementtype$ на странице!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Чешский и словацкий" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Включить режим совместимости ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Тип фрейма: " + "no":{ + "description":"A negative response to a question", + "message":"Нет" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Выберите язык --" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Фильтры, которые могут быть изменены на странице Параметры:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Установите Adblock Plus для Firefox $chrome$, если у вас его нет.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Скрыть эту кнопку" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Заблокированный ресурс" + "other":{ + "description":"Multiple choice option", + "message":"Другой" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, Вы все равно можете заблокировать эту рекламу для себя на странице Параметры. Спасибо!" + }, + "lang_russian":{ + "description":"language", + "message":"Русский" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Отображается ли реклама перед фильмом или любым другим плагином как Flash-игра?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Почему бы Вам не отправить нам сообщение об ошибке?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (конфиденциальность)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ будет $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Фильтры, которые могут быть изменены на странице Параметры:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Или введите URL:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Следующий фильтр:
$filter$
содержит ошибку:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Установите флажок на наборы картинок, которые вы хотите использовать." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"ЗАГРУЗКА..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Закрыть" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Наша команда запросила некоторую отладочную информацию? Нажмите здесь!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Блокировать рекламу только на этих сайтах:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Снимите флажок 'Включен' рядом с каждым расширением кроме CatBlock. Оставьте CatBlock включенным." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Вы превысили объем памяти, который может использовать AdBlock. Пожалуйста, отключите некоторые списки фильтров!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Количество правил списка фильтров превышает ограничение в 50 000 и автоматически уменьшено. Пожалуйста, отпишитесь от некоторых списков фильтров или отключите блокирование содержимого Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Сообщить о рекламе на этой странице" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Разрешить AdBlock сбирать анонимное использование списка фильтров и данные" + "message":"Показывать сообщения отладки в Журнале Консоли (замедляет AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, Вы все равно можете заблокировать эту рекламу для себя на странице Параметры. Спасибо!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Домен фрейма:" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock не может работать на этом домене." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Наиболее популярное расширение Chrome с более чем 40 миллионами пользователей! Блокирует рекламу по всему Интернету." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Нашли ошибку?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Отправить" + "lang_czech":{ + "description":"language", + "message":"Чешский" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Домен или URL, где CatBlock не должен ничего блокировать" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Это не файл изображения. Пожалуйста, загрузите файл .png, .gif или .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Добавить несколько фотографий с Flickr! Вы можете выбрать:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Показать ссылки на списки фильтров" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Разрешить некоторую ненавязчивую рекламу" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Шведский" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Удалить из списка" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Добавить Фотографии" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Выберите язык --" + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Финский" + "message":"Французский" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Изменить" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Этот файл слишком большой. Пожалуйста, убедитесь, что ваш файл менее 10 МБ." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Поддержка" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Следующие сведения будут также включены в отчет о рекламе." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Блокировать рекламу по её URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Это проблема со списком фильтров. Сообщите сюда: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Версия $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Снимите флажок 'Включен' рядом с каждым расширением кроме AdBlock. Оставьте AdBlock включенным." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Цель этого вопроса определить, кто должен получить Ваш отчет. Если Вы ответите на этот вопрос неправильно, то отчет будет направлен не тем людям и может быть проигнорирован." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Показать ссылки на списки фильтров" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Сообщения о рекламе является добровольным. Это поможет каждому пользователю, благодаря добавлению в список фильтров реклама будет блокироваться у всех пользователей. Если Вы не чувствуете себя альтруистом прямо сейчас - ничего страшного. Просто закройте эту страничку и заблокируйте рекламу только для себя." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Только на английском языке" + "yes":{ + "description":"A positive response to a question", + "message":"Да" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Помогите распространить информацию!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Исходный код в свободном доступе !" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Голландский" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Мы будем использовать его только для связи с Вами, если нам нужно будет больше информации." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Соответствует 1 элементу на этой странице." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"обновлено $hours$ час. назад", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Назад" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock заблокировал загрузку с сайта, известного как место размещения вредоносного ПО." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Условные обозначения: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Нажмите кнопку: Отключить Приемлемую Рекламу" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Включить режим совместимости ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Домен страницы" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Поддержка" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Обновления AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Пожалуйста, перейдите на наш сайт поддержки." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock приостановлен." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Чтобы приостановить AdBlock с включенной Блокировкой Содержимого, пожалуйста, выберите Safari (в строке меню) > Предпочтения > Расширения > AdBlock и снимите флажок 'Включить AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Что-то пошло не так. Ресурсы не были отправлены. Эта страница будет закрыта. Попробуйте перезагрузить сайт." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Подробнее о вредоносных программах" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Сайт:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Ненавязчивая реклама (рекомендуется)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Выглядит хорошо" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Чтобы приостановить AdBlock с включенной Блокировкой Содержимого, пожалуйста, выберите Safari (в строке меню) > Предпочтения > Расширения > AdBlock и снимите флажок 'Включить AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Откройте страницу расширений." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - нажмите, чтобы увидеть подробности" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Отключите все расширения, кроме AdBlock:" } } \ No newline at end of file diff --git a/_locales/sk/messages.json b/_locales/sk/messages.json index aa91b68a..2f7bc2d3 100644 --- a/_locales/sk/messages.json +++ b/_locales/sk/messages.json @@ -1,966 +1,925 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Nahlásenie reklamy" + "filterdanish":{ + "description":"language", + "message":"Dánčina" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Zoznamy filtrov pre blokovanie reklám" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Zdieľajte nás!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Doména:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Máte otázku alebo nový nápad?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Povoliť odblokovanie reklám na konkrétnych YouTube kanáloch" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Chcete vidieť, kto a čo stojí za CatBlockom?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Zaškrtnite políčko pri súboroch obrázkov, ktoré chcete použiť." + "fetchinglabel":{ + "description":"Status label", + "message":"Načítavam... prosím čakajte." }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Malvér nebol nájdený." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Všeobecné" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Skontrolujte či máte ten istý zoznam filtrov v prehliadači ako aj tu." + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (odstraňuje rušivé elementy na webe)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - kliknite pre viac informácií" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ na tejto stránke", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Prepáčte, ale CatBlock je na tejto stránke zakázaný jedným z vašich filtrov." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Neplatný zoznam URL. Zoznam bude vymazaný." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Načítajte v prehliadači stránku s reklamou." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polština" }, - "filterswedish":{ - "description":"A filter list", - "message":"Švédčina" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Hlavné nastavenia" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Čo je nové v najnovšej verzii? Pozri zoznam zmien!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock sa nedá spustiť na tejto doméne." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokovať viac reklám:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS obsahuje" }, - "lang_russian":{ - "description":"language", - "message":"Ruština" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Zavrieť" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Zaplaťte, koľko chcete!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Nechcem to takto kontrolovať" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Odhlásené." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Zobrazovať reklamy všade okrem týchto domén..." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokovať reklamu podľa jej URL" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Buďte opatrní: pokiaľ tu urobíte chybu, veľa iných filtrov, vrátane oficiálnych, môžu byť tiež poškodené!
Prečítajte si filter syntax tutorial (anglicky) kde sa dozviete, ako pridávať pokročilé vlastné filtre a výnimky." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Gréčtina" + "message":"Slovenčina" }, - "filterchinese":{ - "description":"language", - "message":"Čínština" + "yes":{ + "description":"A positive response to a question", + "message":"Áno" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Videá a Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Zobrazovať chybové hlásenia v konzole (spomaluje CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Ochrana pred malvérom" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Tiež sa zobrazuje reklama v tomto prehliadači?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Myslíte si, že sa budete pozerať na túto reklamu zakaždým, keď navštívite túto stránku?" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Posledný krok: Podľa čoho rozpoznám reklamu?" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Zapnúť AdBlock na tejto stránke" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Nepoužívať na tejto stránke" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Späť" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Nespúšťať CatBlock na..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Má Vás CatBlock upozorniť, keď zistí malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Rumunčina" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Zobraziť počet zablokovaných reklám na AdBlock tlačidle" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Ak chcete skryť tlačidlo, kliknite naň pravým tlačidlom myši a vyberte Skryť tlačidlo. Tlačidlo môžete zobraziť znovu v chrome://chrome/extensions." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Chcete vidieť, kto a čo stojí za CatBlockom?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Čím viac filtrov prihlásite, tým bude CatBlock pomalší. Použitie príliš veľa filtrov môže dokonca spôsobiť pád prehliadača na niektorých stránkach. Pre potvrdenie prihlásenia stlačte tlačidlo OK." }, - "filterlatvian":{ - "description":"A filter list", - "message":"Lotyština" + "filterisraeli":{ + "description":"language", + "message":"Hebrejčina" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Zoznamy filtrov blokujú väčšinu reklám na webe. Môžete tiež:" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Táto funkcia AdBlocku nefunguje na tejto stránke, pretože využíva zastarané technológie. Avšak stále môžete zablokovať alebo odblokovať zdroje manuálne v tabe 'Prispôsobenie' na stránke s nastaveniami." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Zdrojový kód je voľne k dispozícii!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Čeština a Slovenčina" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"CatBlock používa príliš veľa pamäte. Prosím, odznačte niekoľko filtrov zo zoznamu!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Táto funkcia CatBlocku nefunguje na tejto stránke, pretože využíva zastarané technológie. Avšak stále môžete zablokovať alebo odblokovať zdroje manuálne v tabe 'Prispôsobenie' na stránke s nastaveniami." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock je pozastavený." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Ostatné zoznamy filtrov" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Nastavenia" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Váš počítač môže byť napadnutý malwarom. Kliknite tu pre viac informácií." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Aktualizácie filtrov sa sťahujú automaticky; ale môžete ich aj stiahnuť teraz" + }, + "typeunknown":{ + "description":"A resource type", + "message":"neznámy" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Zobrazovať reklamy na webovej stránke alebo doméne" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Toto zodpovedá 1 položke na tejto stránke." + "filterturkish":{ + "description":"A filter list", + "message":"Turečtina" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Skryť časť webovej stránky" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Odblokuj kanál $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Čím viac filtrov prihlásite, tým bude AdBlock pomalší. Použitie príliš veľa filtrov môže dokonca spôsobiť pád prehliadača na niektorých stránkach. Pre potvrdenie prihlásenia stlačte tlačidlo OK." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Prihláste sa k odberu tohoto zoznamu filtrov a skúste to znovu: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Hlavné nastavenia" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Váš počítač môže byť napadnutý malwarom. Kliknite tu pre viac informácií." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock sa nespustí na týchto stránkach:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Nemáme zoznam filtrov pre daný jazyk.
Prosím, skúste nájsť vhodný zoznam pre tento jazyk $link$ alebo si túto reklamu zablokujte len pre seba na záložke 'Prispôsobenie'.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Pridať" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Som skúsený používateľ, ukáž mi pokročilé nastavenia" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Zapnúť CatBlock na tejto stránke" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Vypnite všetky rozšírenia okrem CatBlocku." - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Skryť toto tlačidlo" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Aktualizácie filtrov sa sťahujú automaticky; ale môžete ich aj stiahnuť teraz" - }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Kliknite tu: Aktualizovať filtre!" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Formát: ~stránka1.sk|~stránka2.sk|~správy.site3.sk" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock je pozastavený." - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Toto zodpovedá $matchcount$ položkám na tejto stránke.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Máme pre vás stránku, ktorá vám pomôže nájsť ľudí, ktorí pracujú na AdBlocku!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonézština" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Typ" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Kliknite na reklamu a ja vám ju pomôžem zablokovať." }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"K dispozícii je aktualizácia pre AdBlock! Choďte $here$ pre aktualizáciu AdBlocku.
Poznámka: Ak chcete dostávať aktualizácie automaticky, stačí ísť do Safari > Nastavenia... > Rozšírenia > Aktualizácie
a začiarknite možnosť \"Automaticky inštalovať aktualizácie\".", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } + "typestylesheet":{ + "description":"A resource type", + "message":"CSS" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turečtina" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Aktualizácie AdBlocku" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Čo je to?" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Kliknite pravým tlačidlom myši na reklamu pre jej zablokovanie -- alebo ju zablokujte ručne tu." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pozastaviť CatBlock" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Prepáčte, ale AdBlock je na tejto stránke zakázaný jedným z vašich filtrov." }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Vlastné zoznamy filtrov" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Má Vás AdBlock upozorniť, keď zistí malware?" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Neprihlasujte k odberu viac filtrov ako potrebujete -- každý filter naviac spôsobí drobné spomalenie! Poďakovanie a ďalšie zoznamy nájdete tu." + "updateddayago":{ + "description":"Label for subscription", + "message":"aktualizované pred dňom" }, - "typestylesheet":{ - "description":"A resource type", - "message":"CSS" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Zobraziť počet zablokovaných reklám v CatBlock menu" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Táto funkcia AdBlocku nefunguje na tejto stránke, pretože využíva zastarané technológie. Avšak stále môžete zablokovať alebo odblokovať zdroje manuálne v tabe 'Prispôsobenie' na stránke s nastaveniami." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Účelom tejto otázky je určiť, komu má byť vaše hlásenie odoslané. Ak odpoviete na túto otázku nesprávne, hlásenie môže byť odoslané nesprávnej osobe, ktoré toto hlásenie môže ignorovať." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Nebol vybraný filter!" }, - "filtereasylist_plus_polish":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Polština" + "message":"Nemčina" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Pridať položky do ponuky po kliknutí pravým tlačidlom myši" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Zoznam filtrov" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokovať túto reklamu" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Gréčtina" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"aktualizované pred $hours$ hodinami", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Používate starú verziu prehiadača Safari. Získajte najnovšiu verziu prehliadača Safari, ktorá umožňuje pozastaviť CatBlock stlačením tlačidla na paneli nástrojov, nahlásiť reklamy a poskytuje ďalšie nové funkcie. Aktualizovať prehliadač." }, "updatedsecondsago":{ "description":"Label for subscription", "message":"aktualizované pred $seconds$ sekundami", "placeholders":{ "seconds":{ - "example":"15", - "content":"$1" + "content":"$1", + "example":"15" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Vyžiadal si náš tím niektoré ladiace informácie? Kliknite sem pre to!" - }, - "typeobject":{ - "description":"A resource type", - "message":"interaktívny objekt" - }, - "filterhungarian":{ - "description":"language", - "message":"Maďarčina" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Neplatný zoznam URL. Zoznam bude vymazaný." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Poznámka: vaše nahlásenie môže byť verejne dostupné. Majte to na pamäti predtým ako tam vložíte niečo súkromné." + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Nie ste si istí? Tak len stlačte tlačidlo 'Blokovať!' nižšie." }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Obnoviť stránku" + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Načítajte v prehliadači stránku s reklamou." }, - "typepage":{ - "description":"A resource type", - "message":"stránka" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Dajte nám vedieť na našej stránke podpory!" }, - "filterdutch":{ - "description":"language", - "message":"Holandčina" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokovať reklamy len na týchto stránkach:" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Nezabudnite uložiť!" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Nastavením posuvníku nižšie vyberte tie stránky, pri ktorých sa CatBlock nebude spúšťať." }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ bude $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Prispôsobenie" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Zavrieť" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Ak chcete nahlásiť reklamu, musíte byť pripojený na internet." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokovaný prvok:" + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Tento filter je neplatný: $exception$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Odblokuj kanál $name$", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Upozornenie: nie je vybraný filter!" - }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Povoliť AdBlock zbierať anonymné údaje o používaní filtrov" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Má Vás AdBlock upozorniť, keď zistí malware?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Odčiarknite všetky 'Povolené' políčka okrem CatBlocku. Nechajte CatBlock zapnutý." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Skryť časť webovej stránky" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Zobrazovať reklamy všade okrem týchto domén..." + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Zobraziť počet zablokovaných reklám v AdBlock menu" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Nastavenia" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Nahlásenie reklamy" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Nespúšťať AdBlock na..." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulharčina" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xml-http žiadosť" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Nespúšťať na podstránkach tejto domény" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock je aktuálny!" + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Vlastné zoznamy filtrov" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Počet blokovaných reklám:" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokovať viac reklám:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock filter (odporúčané)" + "lang_ukranian":{ + "description":"language", + "message":"Ukrainčina" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Pridať filtre pre iný jazyk: " + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Typ" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (odstraňuje rušivé elementy na webe)" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Zaškrtnite políčko pri súboroch obrázkov, ktoré chcete použiť." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Rozšírenia ktoré sú zakázané boli znovu povolené." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Doména alebo URL, na ktorej AdBlock nesmie nič blokovať" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Nespúšťať AdBlock na..." }, "blockurlwithtext":{ "description":"Message of the url-blocking area", "message":"Blokovať URL obsahujúce tento text" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS obsahuje" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Vylúčiť" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Ak chcete skryť tlačidlo, navštívte stránku opera://extensions a začiarknite voľbu \"Skryť z panela s nástrojmi\". Tlačidlo môžete zobraziť neskôr zrušením začiarknutia tejto možnosti." + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Skontrolujte vo Firefoxe $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Kliknite na reklamu a ja vám ju pomôžem zablokovať." + "savebutton":{ + "description":"Save button", + "message":"Uložiť" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"vyhľadať fotky (napríklad závod plachetníc)" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pozastaviť CatBlock" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Nahlásiť reklamu na tejto stránke" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Doména alebo Url, na ktorej CatBlock nesmie nič blokovať" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Pokračovať" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Prispôsobenie CatBlocku" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Zobraz na CatBlock tlačidle" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock je na tejto stránke zakázaný." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Prispôsobenie AdBlocku" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ruština a Ukrajinčina" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Malvér nebol nájdený." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Načítavam... prosím čakajte." + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Povoliť AdBlock zbierať anonymné údaje o používaní filtrov" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Buďte opatrní: pokiaľ tu urobíte chybu, veľa iných filtrov, vrátane oficiálnych, môžu byť tiež poškodené!
Prečítajte si filter syntax tutorial (anglicky) kde sa dozviete, ako pridávať pokročilé vlastné filtre a výnimky." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Ak máte problémy s prehrávaním videa na Hulu.com, zapnite túto funkciu (vyžaduje reštartovanie prehliadača)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Podpora" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Fínčina" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Prispôsobenie AdBlocku" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Skryť toto tlačidlo" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock je aktuálny!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Zoznamy filtrov pre blokovanie reklám" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ celkovo", + "updateddaysago":{ + "description":"Label for subscription", + "message":"aktualizované pred $days$ dňami", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "days":{ + "content":"$1", + "example":"15" } } }, - "filterisraeli":{ - "description":"language", - "message":"Hebrejčina" + "typeobject":{ + "description":"A resource type", + "message":"interaktívny objekt" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Prepáčte, ale AdBlock je na tejto stránke zakázaný jedným z vašich filtrov." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Myslíte si, že sa budete pozerať na túto reklamu zakaždým, keď navštívite túto stránku?" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Používate starú verziu prehiadača Safari. Získajte najnovšiu verziu prehliadača Safari, ktorá umožňuje pozastaviť CatBlock stlačením tlačidla na paneli nástrojov, nahlásiť reklamy a poskytuje ďalšie nové funkcie. Aktualizovať prehliadač." + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Počet blokovaných reklám:" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Pridať nejaké fotky z Flickr! Môžete:" + "typemain_frame":{ + "description":"A resource type", + "message":"stránka" + }, + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Kórejčina" }, "undo_last_block":{ "description":"Menu entry to let the user cancel the result of running the blacklist wizard", "message":"Vrátiť blokovanie na tejto doméne" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Nižšie zadajte správny filter a stlačte OK" - }, - "updateddayago":{ - "description":"Label for subscription", - "message":"aktualizované pred dňom" - }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta verzia" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Ručne upraviť vlastné filtre:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ na tejto stránke", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Odkazy pre zobrazenie zoznamov filtrov" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Nie ste si istí? Tak len stlačte tlačidlo 'Blokovať!' nižšie." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (odporúčané)" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"aktualizované pred hodinou" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Krok 1: Určte, čo sa bude blokovať" }, - "optionsversion":{ - "description":"Version number", - "message":"Verzia $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Máme pre vás stránku, ktorá vám pomôže nájsť ľudí, ktorí pracujú na AdBlocku!" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Odstrániť zo zoznamu" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Doména:" }, - "other":{ - "description":"Multiple choice option", - "message":"Iný" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"tu" }, - "typehiding":{ + "typepopup":{ "description":"A resource type", - "message":"skrytý" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Zoznam filtrov" + "message":"vyskakovacie okno" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Objavuje sa reklama vo filme alebo pred ním, alebo v akomkoľvek inom doplnku, napr. vo Flash hre?" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Ak ste videli reklamu, neposielajte nám hlásenie o chybe ale hlásenie o reklame!" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Ostatné zoznamy filtrov" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock je aktuálny!" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"alebo Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Obnoviť stránku" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokovať!" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Iba v angličtine" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Dokončené!" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Používate starú verziu AdBlocku. Prosím choďte na stránku s rozšíreniami, zapnite 'Režim pre vývojárov' a kliknite na 'Aktualizovať rozšírenia'." }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokovať reklamu na tejto stránke" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock je pozastavený." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Nechcem to takto kontrolovať" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"alebo, kliknite na toto tlačidlo a my urobíme všetky veci uvedené vyššie: Zakázať všetky ostatné rožšírenia" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"Možnosti CatBlocku" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Čo je nové v najnovšej verzii? Pozri zoznam zmien!" }, - "lang_english":{ - "description":"language", - "message":"Angličtina" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisociálny zoznam filtrov (odstraňuje tlačidlá sociálnych sietí)" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Prispôsobenie" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Hľadanie reklám...

Môže to chvíľu trvať." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pozastaviť AdBlock" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Som skúsený používateľ, ukáž mi pokročilé nastavenia" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Chcete naozaj používať tento zoznam filtrov $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Skontrolujte či máte ten istý zoznam filtrov v prehliadači ako aj tu." }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Otvorte stránku s rozšíreniami aby ste ich mohli znovu povoliť." + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokovanie reklamy" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Používať na stránkach domény" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Kórejčina" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Upozornenie: na všetkých ostatných stránkach uvidíte reklamy!
Toto má prednosť pred všetkými ostatnými filtrami pre tieto stránky." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Podstránka:" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Rozšírenia ktoré sú zakázané boli znovu povolené." }, - "foundbug":{ + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Nahradiť reklamy obrázkami mačiek" + }, + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"Našli ste chybu?" + "message":"Chcete vidieť, kto a čo stojí za AdBlockom?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Krok 1: Určte, čo sa bude blokovať" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock filter (odporúčané)" }, - "lang_czech":{ - "description":"language", - "message":"Čeština" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Vypnite všetky rozšírenia okrem CatBlocku." }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Čím viac filtrov prihlásite, tým bude AdBlock pomalší. Použitie príliš veľa filtrov môže dokonca spôsobiť pád prehliadača na niektorých stránkach. Pre potvrdenie prihlásenia stlačte tlačidlo OK." + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Čo je to?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"K dispozícii je aktualizácia pre CatBlock! Choďte $here$ pre aktualizáciu CatBlocku.
Poznámka: Ak chcete dostávať aktualizácie automaticky, stačí ísť do Safari > Nastavenia... > Rozšírenia > Aktualizácie
a začiarknite možnosť \"Automaticky inštalovať aktualizácie\".", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"alebo AdBlock pre Chrome" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokovanie reklamy" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"Možnosti CatBlocku" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Máme pre vás stránku, ktorá vám pomôže nájsť ľudí, ktorí pracujú na CatBlocku!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Autorom prekladu je:" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Zobrazovať chybové hlásenia v konzole (spomaluje CatBlock)" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Formát: ~stránka1.sk|~stránka2.sk|~správy.site3.sk" }, - "filterdanish":{ - "description":"language", - "message":"Dánčina" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typesub_frame":{ - "description":"A resource type", - "message":"sub-dokument" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Videá a Flash" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Upraviť" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Zoznamy filtrov blokujú väčšinu reklám na webe. Môžete tiež:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Hľadanie reklám...

Môže to chvíľu trvať." + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Aby ste skryli tlačidlo, kliknite pravým tlačidlom myši na Safari toolbar, zvoľte 'Prispôsobiť panel s nástrojmi' a odtiahnite AdBlock tlačidlo preč z toolbaru. Ak ho budete znovu chcieť zobraziť, stačí ho presunúť do toolbaru." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Doména alebo URL, na ktorej AdBlock nesmie nič blokovať" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Prekročili ste limit veľkosti súboru v Dropboxe. Odstráňte niektoré položky z vlastných alebo vypnutých filtrov a skúste to znova." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Kontrola aktualizácií (mala by trvať iba pár sekúnd)..." + "filterhungarian":{ + "description":"language", + "message":"Maďarčina" }, - "typescript":{ - "description":"A resource type", - "message":"skript" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"alebo Chrome" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Nespúšťať na podstránkach tejto domény" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Pridať" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Načítajte znovu stránku s reklamou." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Zaplaťte, koľko chcete!" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Nainštalujte FireFox $chrome$ ak ho nemáte.", + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Upraviť vypnuté filtre:" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Toto je chyba zoznamu filtrov. Nahláste ju tu: $link$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Zapnúť CatBlock na tejto stránke" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Aktualizácie AdBlocku" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokovaný prvok:" }, - "no":{ - "description":"A negative response to a question", - "message":"Nie" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Poznámka: vaše nahlásenie môže byť verejne dostupné. Majte to na pamäti predtým ako tam vložíte niečo súkromné." }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrainčina" + "typepage":{ + "description":"A resource type", + "message":"stránka" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"aktualizované pred $minutes$ minútami", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"zadať ID Flickr galérie (napr. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ + "adstillappear":{ + "description":"Question on ad report page", + "message":"Zobrazuje sa táto reklama stále?" + }, + "typeother":{ + "description":"A resource type", + "message":"ostatné" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Kliknite tu: Aktualizovať filtre!" + }, + "filteritalian":{ "description":"language", - "message":"Francúzština" + "message":"Taliančina" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"alebo, kliknite na toto tlačidlo a my urobíme všetky veci uvedené vyššie: Zakázať všetky ostatné rožšírenia" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Ak chcete skryť tlačidlo, navštívte stránku opera://extensions a začiarknite voľbu \"Skryť z panela s nástrojmi\". Tlačidlo môžete zobraziť neskôr zrušením začiarknutia tejto možnosti." + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Niečo sa pokazilo pri kontrole aktualizácií." + }, + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Kliknite v Safari menu -> Predvoľby -> Rozšírenia." }, "typeobject_subrequest":{ "description":"A resource type", "message":"žiadosť objektu" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"aktualizované práve teraz" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Potvrdiť" }, - "savebutton":{ - "description":"Save button", - "message":"Uložiť" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Podstránka:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Upozornenie: na všetkých ostatných stránkach uvidíte reklamy!
Toto má prednosť pred všetkými ostatnými filtrami pre tieto stránky." + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Má Vás CatBlock upozorniť, keď zistí malware?" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Vypnúť tieto notifikácie" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Načítajte znovu stránku s reklamou." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Prihlasovanie k odberu zoznamu filtrov..." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Odhlásené." }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"aktualizované pred $days$ dňami", + "typemedia":{ + "description":"A resource type", + "message":"audio/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"zadať adresu FIickr galérie (napr. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"sub-dokument" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (ochrana súkromia)" + "message":"Lotyština" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Dozvedieť sa viac o malware" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokovať reklamu na tejto stránke" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Čeština a Slovenčina" + "buttonblockit":{ + "description":"Block button", + "message":"Blokovať!" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Používate starú verziu AdBlocku. Prosím choďte na stránku s rozšíreniami, zapnite 'Režim pre vývojárov' a kliknite na 'Aktualizovať rozšírenia'." + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Zrušiť blokovanie reklám:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Nastavenia" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Povoliť odblokovanie reklám na konkrétnych YouTube kanáloch" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Vyčistiť tento zoznam" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"V akom jazyku je stránka napísaná?" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisociálny zoznam filtrov (odstraňuje tlačidlá sociálnych sietí)" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Odčiarknite všetky 'Povolené' políčka okrem AdBlocku. Nechajte AdBlock zapnutý." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Zobrazovať chybové hlásenia v konzole (spomaluje AdBlock)" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Prispôsobenie CatBlocku" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Prekročili ste limit veľkosti súboru v Dropboxe. Odstráňte niektoré položky z vlastných alebo vypnutých filtrov a skúste to znova." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Odstrániť zo zoznamu" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Spustiť AdBlock" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"vyhľadať fotky (napríklad závod plachetníc)" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Spustiť CatBlock" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Zatiaľ nemôžeme blokovať reklamy vo vnútri objektov Flash alebo v iných doplnkoch. Čakáme na podporu prehliadača a WebKitu." }, - "filtereasylist_plus_german":{ + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Aktualizácie CatBlocku" + }, + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Nastavením posuvníku nižšie vyberte tie stránky, pri ktorých sa AdBlock nebude spúšťať." + }, + "typehiding":{ + "description":"A resource type", + "message":"skrytý" + }, + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock je na tejto stránke zakázaný" + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Objavuje sa reklama vo filme alebo pred ním, alebo v akomkoľvek inom doplnku, napr. vo Flash hre?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ruština a Ukrajinčina" + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Nemčina" + "message":"Španielčina" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokovať túto reklamu" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock je na tejto stránke zakázaný." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Buďte opatrní: tento filter blokuje všetky $elementtype$ prvky na stránke!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"tu" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Povoliť spätnú kompatibilitu s doplnkom ClickToFlash" }, - "yes":{ - "description":"A positive response to a question", - "message":"Áno" + "no":{ + "description":"A negative response to a question", + "message":"Nie" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Ak máte problémy s prehrávaním videa na Hulu.com, zapnite túto funkciu (vyžaduje reštartovanie prehliadača)" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Zapnúť AdBlock na tejto stránke" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Vylúčiť" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filter, ktorý sa dá neskôr zmeniť v nastaveniach:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"V akom jazyku je stránka napísaná?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Zobraziť počet zablokovaných reklám na AdBlock tlačidle" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Nespúšťať CatBlock na..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Neúspešné!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Naozaj chcete odstrániť $count$ blokovania/í, ktoré ste vytvorili na $host$?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pozastaviť AdBlock" + }, + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Následujúci filter:
$filter$
je chybný:
$message$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "message":{ + "content":"$2", + "example":"invalid filter" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typeimage":{ - "description":"A resource type", - "message":"obrázok" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Autorom prekladu je:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"NAČÍTAVAM..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Kliknite pravým tlačidlom myši na reklamu pre jej zablokovanie -- alebo ju zablokujte ručne tu." - }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Ak chcete skryť tlačidlo, kliknite naň pravým tlačidlom myši a vyberte Skryť tlačidlo. Tlačidlo môžete zobraziť znovu v chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumunčina" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Upraviť vypnuté filtre:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Nastavením posuvníku nižšie vyberte tie stránky, pri ktorých sa CatBlock nebude spúšťať." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Niečo sa pokazilo pri kontrole aktualizácií." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Aby ste skryli tlačidlo, kliknite pravým tlačidlom myši na Safari toolbar, zvoľte 'Prispôsobiť panel s nástrojmi' a odtiahnite AdBlock tlačidlo preč z toolbaru. Ak ho budete znovu chcieť zobraziť, stačí ho presunúť do toolbaru." + "lang_english":{ + "description":"language", + "message":"Angličtina" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"aktualizované pred minútou" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Pridať položky do ponuky po kliknutí pravým tlačidlom myši" }, - "typemain_frame":{ - "description":"A resource type", - "message":"stránka" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, môžete si zablokovať túto reklamu len pre seba v nastaveniach. Ďakujem!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Pridať fotografie" + "lang_russian":{ + "description":"language", + "message":"Ruština" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"zadať adresu FIickr galérie (napr. $example$)", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Naozaj chcete odstrániť $count$ blokovania/í, ktoré ste vytvorili na $host$?", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Čím viac filtrov prihlásite, tým bude CatBlock pomalší. Použitie príliš veľa filtrov môže dokonca spôsobiť pád prehliadača na niektorých stránkach. Pre potvrdenie prihlásenia stlačte tlačidlo OK." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Používate starú verziu prehiadača Safari. Získajte najnovšiu verziu prehliadača Safari, ktorá umožňuje pozastaviť AdBlock stlačením tlačidla na paneli nástrojov, nahlásiť reklamy a poskytuje ďalšie nové funkcie. Aktualizovať prehliadač." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"K dispozícii je aktualizácia pre CatBlock! Choďte $here$ pre aktualizáciu CatBlocku.
Poznámka: Ak chcete dostávať aktualizácie automaticky, stačí ísť do Safari > Nastavenia... > Rozšírenia > Aktualizácie
a začiarknite možnosť \"Automaticky inštalovať aktualizácie\".", + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (ochrana súkromia)" + }, + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"CatBlock používa príliš veľa pamäte. Prosím, odznačte niekoľko filtrov zo zoznamu!" + }, + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xml-http žiadosť" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ bude $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -968,285 +927,366 @@ "description":"Link for custom subscription", "message":"Alebo zadajte URL:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Používate starú verziu prehiadača Safari. Získajte najnovšiu verziu prehliadača Safari, ktorá umožňuje pozastaviť AdBlock stlačením tlačidla na paneli nástrojov, nahlásiť reklamy a poskytuje ďalšie nové funkcie. Aktualizovať prehliadač." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Dokončené!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Zvoľte jazyk --" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Spustiť AdBlock" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Nahradiť reklamy obrázkami mačiek" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Pridať filtre pre iný jazyk: " }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Kliknite v Safari menu -> Predvoľby -> Rozšírenia." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"NAČÍTAVAM..." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Zrušiť blokovanie reklám:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Vyžiadal si náš tím niektoré ladiace informácie? Kliknite sem pre to!" + }, + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Odčiarknite všetky 'Povolené' políčka okrem CatBlocku. Nechajte CatBlock zapnutý." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Ochrana pred malvérom" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Nahlásiť reklamu na tejto stránke" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Zobrazovať chybové hlásenia v konzole (spomaluje AdBlock)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Nainštalujte FireFox $chrome$ ak ho nemáte.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Nastavte posuvník tak, aby reklama na stránke bola blokovaná a zbytok stránky stále vyzeral uspokojivo." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"AdBlock používa príliš veľa pamäte. Prosím, odznačte niekoľko filtrov zo zoznamu!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Najobľúbenejšie rozšírenie pre Chrome s viac ako 40 miliónmi používateľov! Blokuje reklamy na celom webe." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Zobrazuje sa táto reklama stále?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Našli ste chybu?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Podpora" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Dozvedieť sa viac o malware" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulharčina" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Doména alebo Url, na ktorej CatBlock nesmie nič blokovať" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Chcete vidieť, kto a čo stojí za AdBlockom?" + "typescript":{ + "description":"A resource type", + "message":"skript" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Neúspešné!" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Pridať nejaké fotky z Flickr! Môžete:" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filter, ktorý sa dá neskôr zmeniť v nastaveniach:" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Zoznam filtrov" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Ručne upraviť vlastné filtre:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock sa nespustí na týchto stránkach:" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Následujúci filter:
$filter$
je chybný:
$message$", + "filterchinese":{ + "description":"language", + "message":"Čínština" + }, + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Tento filter je neplatný: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"vyskakovacie okno" - }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Nastavte posuvník tak, aby reklama na stránke bola blokovaná a zbytok stránky stále vyzeral uspokojivo." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Prihlasovanie k odberu zoznamu filtrov..." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Typ" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Otvorte stránku s rozšíreniami aby ste ich mohli znovu povoliť." }, - "lang_slovak":{ - "description":"language", - "message":"Slovenčina" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Vypnúť tieto notifikácie" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Zoznam filtrov" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Toto zodpovedá $matchcount$ položkám na tejto stránke.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Tiež sa zobrazuje reklama v tomto prehliadači?" + "updatedhourago":{ + "description":"Label for subscription", + "message":"aktualizované pred hodinou" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Nepoužívať na tejto stránke" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Pridať fotografie" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokovať reklamy len na týchto stránkach:" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Zvoľte jazyk --" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Dajte nám vedieť na našej stránke podpory!" + "filtereasylist_plus_french":{ + "description":"language", + "message":"Francúzština" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Posledný krok: Podľa čoho rozpoznám reklamu?" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonézština" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"AdBlock používa príliš veľa pamäte. Prosím, odznačte niekoľko filtrov zo zoznamu!" + "typeimage":{ + "description":"A resource type", + "message":"obrázok" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Zatiaľ nemôžeme blokovať reklamy vo vnútri objektov Flash alebo v iných doplnkoch. Čakáme na podporu prehliadača a WebKitu." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Upraviť" }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Nepodarilo sa načítať tento filter!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, môžete si zablokovať túto reklamu len pre seba v nastaveniach. Ďakujem!" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ celkovo", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "tabgeneral":{ + "tabsupport":{ "description":"A tab on the options page", - "message":"Všeobecné" + "message":"Podpora" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock sa nedá spustiť na tejto doméne." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokovať reklamu podľa jej URL" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Táto funkcia CatBlocku nefunguje na tejto stránke, pretože využíva zastarané technológie. Avšak stále môžete zablokovať alebo odblokovať zdroje manuálne v tabe 'Prispôsobenie' na stránke s nastaveniami." + "buttoncancel":{ + "description":"Cancel button", + "message":"Zrušiť" }, - "typeother":{ - "description":"A resource type", - "message":"ostatné" + "savereminder":{ + "description":"Reminder to press save", + "message":"Nezabudnite uložiť!" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Potvrdiť" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Spustiť CatBlock" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Nebol vybraný filter!" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Máme pre vás stránku, ktorá vám pomôže nájsť ľudí, ktorí pracujú na CatBlocku!" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Zobraz na CatBlock tlačidle" + "optionsversion":{ + "description":"Version number", + "message":"Verzia $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"neznámy" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "filtereasylist_plus_finnish":{ + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Účelom tejto otázky je určiť, komu má byť vaše hlásenie odoslané. Ak odpoviete na túto otázku nesprávne, hlásenie môže byť odoslané nesprávnej osobe, ktoré toto hlásenie môže ignorovať." + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Chcete naozaj používať tento zoznam filtrov $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Zdrojový kód je voľne k dispozícii!" + }, + "filterdutch":{ "description":"language", - "message":"Fínčina" + "message":"Holandčina" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Zobraziť počet zablokovaných reklám v CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Nižšie zadajte správny filter a stlačte OK" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock je na tejto stránke zakázaný" + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"K dispozícii je aktualizácia pre AdBlock! Choďte $here$ pre aktualizáciu AdBlocku.
Poznámka: Ak chcete dostávať aktualizácie automaticky, stačí ísť do Safari > Nastavenia... > Rozšírenia > Aktualizácie
a začiarknite možnosť \"Automaticky inštalovať aktualizácie\".", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Toto zodpovedá 1 položke na tejto stránke." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Prepáčte, ale CatBlock je na tejto stránke zakázaný jedným z vašich filtrov." }, "filterjapanese":{ "description":"language", "message":"Japončina" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Toto je chyba zoznamu filtrov. Nahláste ju tu: $link$", + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Vyčistiť tento zoznam" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"aktualizované pred $hours$ hodinami", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Odčiarknite všetky 'Povolené' políčka okrem AdBlocku. Nechajte AdBlock zapnutý." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Späť" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Odkazy pre zobrazenie zoznamov filtrov" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Iba v angličtine" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Zrušiť" + "optionstitle":{ + "description":"Title for the options page", + "message":"Nastavenia" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Zdieľajte nás!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta verzia" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Nastavením posuvníku nižšie vyberte tie stránky, pri ktorých sa AdBlock nebude spúšťať." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock je aktuálny!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock zablokoval sťahovanie zo stránky na ktorej sa vyskytuje malware." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Skontrolujte vo Firefoxe $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Neprihlasujte k odberu viac filtrov ako potrebujete -- každý filter naviac spôsobí drobné spomalenie! Poďakovanie a ďalšie zoznamy nájdete tu." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Povoliť spätnú kompatibilitu s doplnkom ClickToFlash" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Kontrola aktualizácií (mala by trvať iba pár sekúnd)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Prihláste sa k odberu tohoto zoznamu filtrov a skúste to znovu: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Iný" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Používať na stránkach domény" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"aktualizované práve teraz" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock je pozastavený." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"aktualizované pred $minutes$ minútami", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Ak chcete nahlásiť reklamu, musíte byť pripojený na internet." + "lang_czech":{ + "description":"language", + "message":"Čeština" }, - "filtereasylist":{ + "filterswedish":{ "description":"A filter list", - "message":"EasyList (odporúčané)" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Aktualizácie CatBlocku" + "message":"Švédčina" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Nepodarilo sa načítať tento filter!" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Podpora" }, - "filteritalian":{ - "description":"language", - "message":"Taliančina" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Typ" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Španielčina" + "typesubdocument":{ + "description":"A resource type", + "message":"sub-dokument" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Pokračovať" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"aktualizované pred minútou" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Ak ste videli reklamu, neposielajte nám hlásenie o chybe ale hlásenie o reklame!" + "typesub_frame":{ + "description":"A resource type", + "message":"sub-dokument" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Máte otázku alebo nový nápad?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - kliknite pre viac informácií" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"zadať ID Flickr galérie (napr. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Upozornenie: nie je vybraný filter!" } } \ No newline at end of file diff --git a/_locales/sl/messages.json b/_locales/sl/messages.json index 7d5dd056..82faba58 100644 --- a/_locales/sl/messages.json +++ b/_locales/sl/messages.json @@ -1,1470 +1,1510 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Priložite posnetek zaslona:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Zlonamerna programska oprema ni bila najdena." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"V tistem brskalniku se naročite na iste sezname filtrov kot v tem." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Imate vprašanje ali novo idejo?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"V tistem brskalniku pojdite na stran z oglasom." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Možnosti" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"švedščina" + "message":"EasyList (priporočeno)" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokiraj več oglasov:" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ na tej strani", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "lang_russian":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"ruščina" + "message":"poljščina" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Odjavljeno." + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS, ki mu mora ustrezati" }, - "filterchinese":{ - "description":"language", - "message":"kitajščina" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Izvzemi" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Seznam antisocialnih filtrov (odstrani gumbe za deljenje vsebine preko socialnih omrežij)" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Tega ne želim preveriti" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Ste našli oglas na spletni strani? Pomagali vam bomo najti pravi kraj za prijavo!" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Bodite previdni: v kolikor tu storite napako, večina filtrov, vključno z uradnimi, ne bo delovala!
Preberite si vodič po sintaksi filtrov in se naučite pravilno dodajati napredne možnosti." }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Prikaži št. blokiranih oglasov na AdBlockovem gumbu" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Ali se oglas prikaže tudi v tistem v brskalniku?" + }, + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"litovščina" }, "retryaftersubscribe":{ "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", "message":"Naročite se na ta seznam filtrov, nato pa poskusite znova: $list_title$", "placeholders":{ "list_title":{ - "example":"French filters", - "content":"$1" + "content":"$1", + "example":"French filters" } } }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Izvorna koda je na voljo brezplačno!" - }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"posodobljeno pred 1 minuto" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Filter ni bil uspešno pridobljen!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, "malwarewarning":{ "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", "message":"Vaš računalnik je morda okužen z zlonamerno programsko opremo. Kliknite sem za dodatne informacije." }, - "linkblockadbyurl":{ + "linkunblock":{ "description":"Link on the 'Customize' tab", - "message":"Blokiraj oglas z URL naslovom" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Skrij ta gumb" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Posodobitve se bodo izvajale samodejno; vseeno pa lahko posodobite zdaj" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Oblika: ~stran1.com|~stran2.com|~novice.stran3.org" + "message":"Prikaži oglase na spletni strani ali domeni" }, - "filtereasylist_plus_estonian":{ + "lang_slovak":{ "description":"language", - "message":"estonščina" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Vrsta" + "message":"slovaščina" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Na voljo je posodobitev za AdBlock! Za posodobitev pojdite $here$.
Vedite: Če želite prejemati posodobitve samodejno, kliknite na Safari > Nastavitve > Razširitve > Posodobitve
in izberite možnost 'Samodejno namesti posodobitve'.", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Namestite Adblock Plus za Firefox $chrome$, v kolikor ga še nimate.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Kaj je to?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Ne naročite se na več kot potrebujete -- vsak filter malce upočasni brskanje. Zasluge in drugi seznami se nahajajo tukaj." - }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Ta funkcija AdBlocka tukaj ne deluje, ker stran uporablja zastarelo tehnologijo. Vire lahko ročno blokirate ali dovolite v zavihku Prilagodi na strani z nastavitvami." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"poljščina" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Izvedite več o Sprejemljivih oglasih." - }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"posodobljeno pred naslednjim številom sekund: $seconds$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Trenutno nimamo privzetega seznama filtrov za ta jezik.
Prosimo, poskusite najti seznam, ki podpira vaš jezik $link$, ali pa blokirajte ta oglas le zase s klikom na zavihek 'Prilagodi'.", "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" - }, - "filterhungarian":{ - "description":"language", - "message":"madžarščina" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Kliknite na oglas in vodili vas bomo skozi postopek blokiranja." }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Opomba: poročilo lahko postane javno dostopno. To imejte v mislih, preden vključite karkoli zasebnega." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Zgornji okvir" }, - "other":{ - "description":"Multiple choice option", - "message":"drugo" + "typestylesheet":{ + "description":"A resource type", + "message":"definicija stila" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ bo $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "typeunknown":{ + "description":"A resource type", + "message":"neznano" }, "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", "message":"Oprostite, AdBlock je na tej strani onemogočen s strani enega izmed vaših filtrov." }, - "filtericelandic":{ - "description":"language", - "message":"islandščina" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Opozorilo: filter ni določen!" + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Tretja oseba" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock je onemogočen na tej strani." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Filter ni določen!" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"V kolikor se vam prikazuje oglas, ne prijavite hrošča, temveč pošljite poročilo o oglasu!" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"grščina" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Prikaži oglase povsod, razen na teh domenah..." + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Možnosti" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Uporabljate staro različico AdBlocka. Prosimo, pojdite na stran z razširitvami, omogočite 'Način za razvijalce' in kliknite 'Posodobi razširitve'." }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Kako vam je ime?" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Obidi težavo z nedelovanjem videov na Hulu.com (zahteva ponovni zagon brskalnika)" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Blokirani oglasi:" + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Prilagodi" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Filtri za druge jezike: " + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Ste našli oglas na spletni strani? Pomagali vam bomo najti pravi kraj za prijavo!" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Kliknite na oglas in vodili vas bomo skozi postopek blokiranja." + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" - }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" - }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Super! Vse je urejeno." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"estonščina" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock podpora" + "updateddaysago":{ + "description":"Label for subscription", + "message":"posodobljeno pred naslednjim številom dni: $days$", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Prilagodite AdBlock" + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Dovoljen vir" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Napaka pri shranjevanju priložene datoteke." + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Prosimo, vnesite pravilen filter v spodnje polje in izberite 'V redu'" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Ne izvajaj AdBlocka na..." }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"1. korak: Kaj želite blokirati?" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokiraj URL naslove, ki vsebujejo to besedilo" }, - "filterdanish":{ - "description":"language", - "message":"danščina" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Zapri" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ na tej strani", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Preverite v brskalniku Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Podokvir" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Zadnji korak: kaj velja za ta oglas?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"posodobljeno pred 1 uro" + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Prilagodite AdBlock" }, "filtereasylist_plun_korean":{ "description":"language", "message":"korejščina" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ali Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Kako vam je ime?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Najbolj priljubljena razširitev za brskalnik Chrome z več kot 40 milijoni uporabnikov! Blokira oglase po vsem spletu." + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"finščina" }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Prikaži vse zahteve" + "typescript":{ + "description":"A resource type", + "message":"skripta" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Tega ne želim preveriti" + "lang_ukranian":{ + "description":"language", + "message":"ukrajinščina" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Zlonamerna programska oprema ni bila najdena." }, - "yes":{ - "description":"A positive response to a question", - "message":"Da" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Imamo tudi stran kjer lahko najdete ljudi, ki so naredili AdBlock!" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Prilagodi" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"tukaj" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Začasno ustavi AdBlock" + "typepopup":{ + "description":"A resource type", + "message":"pojavno okno" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Ali ste prepričani, da se želite naročiti na filter $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"V kolikor se vam prikazuje oglas, ne prijavite hrošča, temveč pošljite poročilo o oglasu!" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Kje točno na strani se nahaja oglas? Kako izgleda?" + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Ponovno naložite stran." }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ali AdBlock za Chrome" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"V katerem jeziku je napisana stran?" }, - "typestylesheet":{ - "description":"A resource type", - "message":"definicija stila" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock je začasno ustavljen." }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Ponovno aktiviraj AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Iskanje oglasov...

To bo trajalo le trenutek." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domena ali spletni naslov, kjer AdBlock naj ne blokira ničesar" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock je onemogočen na tej strani." }, - "typescript":{ - "description":"A resource type", - "message":"skripta" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"V tistem brskalniku se naročite na iste sezname filtrov kot v tem." }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ skupno", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokiraj oglas" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Opozorilo: na vseh drugih spletnih mestih boste videli oglase!
To povozi vse druge filtre za tista mesta." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Na voljo je posodobitev za AdBlock! Za posodobitev pojdite $here$.
Vedite: Če želite prejemati posodobitve samodejno, kliknite na Safari > Nastavitve > Razširitve > Posodobitve
in izberite možnost 'Samodejno namesti posodobitve'.", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "here":{ + "content":"", + "example":"here" } } }, - "no":{ - "description":"A negative response to a question", - "message":"Ne" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Končano!" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Nekaj je šlo narobe. Viri niso bili poslani. Ta stran se bo zdaj zaprla. Poskusite ponovno naložiti spletno stran." + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock filtri po meri (priporočeno)" }, - "lang_ukranian":{ + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Vrsta" + }, + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Kaj je to?" + }, + "filterjapanese":{ "description":"language", - "message":"ukrajinščina" + "message":"japonščina" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"posodobljeno pred naslednjim številom minut $minutes$", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Izvor filtra:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "filtermalware":{ - "description":"A filter list", - "message":"Zaščita pred zlonamerno programsko opremo" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Naročite se na sezname filtrov" }, - "savebutton":{ - "description":"Save button", - "message":"Shrani" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Opozorilo: na vseh drugih spletnih mestih boste videli oglase!
To povozi vse druge filtre za tista mesta." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Izključi ta sporočila" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Poteka naročanje na seznam filtrov..." - }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Uporabljate staro različico AdBlocka. Prosimo, pojdite na stran z razširitvami, omogočite 'Način za razvijalce' in kliknite 'Posodobi razširitve'." + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Domena:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock - možnosti" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Filtri za druge jezike: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Ujemajoči se filter" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Preverjanje za zlonamerno programsko opremo, ki lahko vsiljuje oglase:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Seznami filtrov blokirajo večino oglasov na spletu. Lahko pa tudi:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Pokaži izjave za odpravljanje napak v dnevniku konzole (upočasni AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Če želite skriti gumb, z desno miškino tipko kliknite na orodno vrstico, izberite 'Prilagodi orodno vrstico' in povlecite AdBlockov gumb iz orodne vrstice. Znova ga omogočite tako, da ga povlečete nazaj v orodno vrstico." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Presegli ste največjo velikost za storitev Dropbox. Odstranite nekaj vnosov filtrov po meri oz. onemogočenih filtrov in poskusite znova." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Ponovno aktiviraj AdBlock" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Naroči se" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokirani element:" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Obidi težavo z nedelovanjem videov na Hulu.com (zahteva ponovni zagon brskalnika)" + "typepage":{ + "description":"A resource type", + "message":"stran" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Izvzemi" + "typeother":{ + "description":"A resource type", + "message":"drugo" }, - "disableallextensions":{ + "clickupdatefilters":{ "description":"Instruction on ad report page", - "message":"Onemogočite vse razširitve, razen AdBlocka:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Prevod:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"NALAGANJE..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Če želite blokirati oglas, kliknite nanj z desno miškino tipko -- isto pa tudi lahko ročno storite tukaj." - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Kontaktirali vas bomo le v primeru, v kolikor bomo potrebovali dodatne informacije." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Uredi izklopljene filtre:" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" - }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Omogoči Safari Content Blocking" - }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Kakšen je vaš e-poštni naslov?" + "message":"Kliknite to: Posodobi moje filtre!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Če želite skriti gumb, z desno miškino tipko kliknite na orodno vrstico, izberite 'Prilagodi orodno vrstico' in povlecite AdBlockov gumb iz orodne vrstice. Znova ga omogočite tako, da ga povlečete nazaj v orodno vrstico." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Prišlo je do napake pri obdelavi vaše zahteve." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Skrit element" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Če želite skriti gumb, pojdite na opera://extensions in potrdite potrditveno polje pri možnosti \"Skrij z orodne vrstice\". Ponovno ga prikažete tako, da opustite izbor pri isti možnosti." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"stran" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Stran:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Končano! Osvežili smo stran z oglasom. Prosimo preverite, ali je oglas izginil. Potem se vrnite na to stran in odgovorite na spodnje vprašanje." + "buttonblockit":{ + "description":"Block button", + "message":"Blokiraj!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Ali vnesite URL:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Omogoči dodajanje nekaterih YouTube kanalov na seznam dovoljenih" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Uporabljate staro različico brskalnika Safari. V kolikor želite uporabljati AdBlockov gumb v opravilni vrstici, ga onemogočiti na nekaterih spletnih straneh ter prijavljati oglase, nadgradite zdaj." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Izberite Safari meni → Nastavitve → Razširitve." + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Trenutno ni možno blokirati oglasov znotraj Flasha in drugih vtičnikov. Čakamo na podporo brskalnika in WebKita." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Ustavi blokiranje oglasov:" + "filterhungarian":{ + "description":"language", + "message":"madžarščina" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokiraj!" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokiraj ta oglas" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Ali se oglas še vedno prikazuje?" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"bolgarščina" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Omogoči AdBlock na tej strani" }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Super! Zdaj pa preverimo katera razširitev povzroča težave. Pojdite skozi seznam razširitev in omogočite eno po eno. Razširitev, ki prinese oglas(e) nazaj je tista, ki jo morate odstraniti, da se znebite oglasov." + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Prikaži št. blokiranih oglasov na AdBlockovem gumbu" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Ni uspelo!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Ročno uredite vaše filtre:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Začasno ustavi AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"italijanščina" + "message":"angleščina" }, - "typepopup":{ - "description":"A resource type", - "message":"pojavno okno" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dodaj elemente na meni desnega miškinega klika" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Vrsta" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Prosimo, pojdite na našo spletno mesto za podporo." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Bodite previdni: v kolikor tu storite napako, večina filtrov, vključno z uradnimi, ne bo delovala!
Preberite si vodič po sintaksi filtrov in se naučite pravilno dodajati napredne možnosti." + "typemain_frame":{ + "description":"A resource type", + "message":"stran" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Naročite se na sezname filtrov" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Ali ste prepričani, da želite odstraniti naslednje število blokad, ki ste jih ustvarili na $host$? Št. blokad: $count$", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Ali se oglas prikaže tudi v tistem v brskalniku?" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legenda: " }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Ne izvajaj se na tej strani" + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "filtereasylist_plus_lithuania":{ + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Priložite posnetek zaslona:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"litovščina" + "message":"romunščina" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Sporočite nam na naši strani s podporo!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Uredi izklopljene filtre:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock je začasno ustavljen." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Podokvir" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Trenutno ni možno blokirati oglasov znotraj Flasha in drugih vtičnikov. Čakamo na podporo brskalnika in WebKita." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "buttonok":{ - "description":"OK button", - "message":"V redu!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Omogoči Safari Content Blocking" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Če ga nimate, namestite Firefox $chrome$.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Splošno" + "message":"Seznami filtrov" }, - "typeother":{ - "description":"A resource type", - "message":"drugo" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sem izkušen uporabnik; prikaži dodatne možnosti" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Filter ni določen!" + "filterchinese":{ + "description":"language", + "message":"kitajščina" }, - "typeunknown":{ - "description":"A resource type", - "message":"neznano" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filter ni veljaven: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Poteka naročanje na seznam filtrov..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Odprite stran z razširitvami in omogočite tiste, ki so bile prej onemogočene." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Izključi ta sporočila" + }, + "filterturkish":{ + "description":"A filter list", + "message":"turščina" + }, + "updatedhourago":{ + "description":"Label for subscription", + "message":"posodobljeno pred 1 uro" + }, + "typesubdocument":{ "description":"A resource type", - "message":"avdio/video" + "message":"okvir" }, - "filterjapanese":{ - "description":"language", - "message":"japonščina" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"indonezijščina" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Dovoli nekatere nevsiljive oglase" + "typeimage":{ + "description":"A resource type", + "message":"slika" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ skupno", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Prekliči" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Če želite spremeniti strani, na katerih se AdBlock ne bo izvajal, premaknite spodnji drsnik." + "savereminder":{ + "description":"Reminder to press save", + "message":"Ne pozabite shraniti!" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Zadnji korak: prijavite nam oglas" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Preverite v brskalniku Firefox $chrome$", + "typeselector":{ + "description":"A resource type", + "message":"selektor" + }, + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "filtericelandic":{ + "description":"language", + "message":"islandščina" + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Ali ste prepričani, da se želite naročiti na filter $title$?", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Za prijavo oglasa morate biti povezani na internet." - }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (priporočeno)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokiraj oglase samo na teh straneh:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Naloženo na strani z domeno:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Prijava oglasa" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Napaka pri shranjevanju priložene datoteke." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Seznami filtrov za blokiranje oglasov" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Kako?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Počisti ta seznam" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Omogoči dodajanje nekaterih YouTube kanalov na seznam dovoljenih" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Pomagajte nam širiti idejo!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Tretja oseba" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (s spleta odstrani nadloge)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - kliknite za podrobnosti" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock - možnosti" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Prišlo je do napake pri obdelavi vaše zahteve." + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Ne naročite se na več kot potrebujete -- vsak filter malce upočasni brskanje. Zasluge in drugi seznami se nahajajo tukaj." + }, + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Preverjanje posodobitev (moralo bi trajati le nekaj sekund)..." + }, + "updatedrightnow":{ "description":"Label for subscription", - "message":"posodobljeno pred naslednjim številom ur: $hours$", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"ravnokar posodobljeno" + }, + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Če želite blokirati oglas, kliknite nanj z desno miškino tipko -- isto pa tudi lahko ročno storite tukaj." + }, + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Preverjanje za zlonamerno programsko opremo, ki lahko vsiljuje oglase:" + }, + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock podpora" + }, + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Vrsta" + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Premikajte drsnik dokler oglas ni pravilno blokiran in blokirani elementi izgledajo uporabno." + }, + "updatedminuteago":{ + "description":"Label for subscription", + "message":"posodobljeno pred 1 minuto" + }, + "typesub_frame":{ + "description":"A resource type", + "message":"okvir" + }, + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Blokiran vir" + }, + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Spodnje informacije bodo vključene v poročilo:" + }, + "filterdanish":{ + "description":"language", + "message":"danščina" + }, + "disableaa":{ + "description":"Section header on the ad report page", + "message":"Preverite filtre Sprejemljivih oglasov:" + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"pridobivam... prosimo počakajte." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Neveljaven seznam URL-jev. Izbrisan bo." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Splošne možnosti" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Odznačite potrditveno polje 'Omogočeno' pri vsaki razširitvi, razen AdBlocku. AdBlock pustite omogočen." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"V tistem brskalniku pojdite na stran z oglasom." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Prikaži oglase povsod, razen na teh domenah..." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"ruski in ukrajinski" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Kaj je novega v zadnji izdaji? Oglejte si dnevnik sprememb!" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Če želite skriti gumb, kliknite nanj z desno miškino tipko in izberite Skrij gumb. Ponovno ga lahko prikažete v razširitvahi: chrome://chrome/extensions." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Predhodno onemogočene razširitve so zdaj ponovno omogočene." + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filtereasylist_plus_greek":{ + "filterisraeli":{ "description":"language", - "message":"grščina" + "message":"hebrejščina" }, - "lang_slovak":{ - "description":"language", - "message":"slovaščina" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Ta funkcija AdBlocka tukaj ne deluje, ker stran uporablja zastarelo tehnologijo. Vire lahko ročno blokirate ali dovolite v zavihku Prilagodi na strani z nastavitvami." }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video posnetki in Flash" + "filterczech":{ + "description":"Language names for a filter list", + "message":"češki in slovaški" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Kaj menite, da bo veljalo za ta oglas pri vsakem obisku te spletne strani?" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Onemogočili smo vse druge razširitve. Zdaj bomo osvežili stran z oglasom. Sekundo, prosim." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Omogoči AdBlock na tej strani" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Drugi seznami filtrov" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Nazaj" + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Posodobitve se bodo izvajale samodejno; vseeno pa lahko posodobite zdaj" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Seznami filtrov blokirajo večino oglasov na spletu. Lahko pa tudi:" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Prikaži vse zahteve" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Tem več seznamov filtrov uporabljate, tem počasneje deluje AdBlock. Uporaba prevelike količine seznamov lahko celo privede do zrušitve vašega brskalnika. Izberite 'V redu', da se vseeno naročite na ta seznam." }, - "disableaa":{ - "description":"Section header on the ad report page", - "message":"Preverite filtre Sprejemljivih oglasov:" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Super! Vse je urejeno." }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Prikaži oglase na spletni strani ali domeni" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"To ustreza 1 elementu na tej strani." + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Posodobitve AdBlocka" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Skrij odsek spletne strani" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Izvedite več o Sprejemljivih oglasih." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Dovoli oglase na kanalu $name$", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Ali vas naj AdBlock obvesti, kadar zazna zlonamerno programsko opremo?" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Splošne možnosti" + "updateddayago":{ + "description":"Label for subscription", + "message":"posodobljeno pred 1 dnevom" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock ne bo deloval na straneh, ki ustrezajo:" + "frameurl":{ + "description":"Resource list page: full URL of the frame", + "message":"URL okvirja: " }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Trenutno nimamo privzetega seznama filtrov za ta jezik.
Prosimo, poskusite najti seznam, ki podpira vaš jezik $link$, ali pa blokirajte ta oglas le zase s klikom na zavihek 'Prilagodi'.", + "filtereasylist_plus_german":{ + "description":"language", + "message":"nemščina" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Ime datoteke je predolgo. Prosimo, preimenujte datoteko." + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"posodobljeno pred naslednjim številom sekund: $seconds$", "placeholders":{ - "link":{ - "example":"here", - "content":"" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Naroči se" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Ne izvajaj se na tej strani" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sem izkušen uporabnik; prikaži dodatne možnosti" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Sporočite nam na naši strani s podporo!" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"španščina" + "filterrussian":{ + "description":"Language names for a filter list", + "message":"ruski in ukrajinski" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Naloženo na strani z domeno:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Kliknite to: Posodobi moje filtre!" + "buttonok":{ + "description":"OK button", + "message":"V redu!" }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Tem več seznamov filtrov uporabljate, tem počasneje deluje AdBlock. Uporaba prevelike količine seznamov lahko celo privede do zrušitve vašega brskalnika. Izberite 'V redu', da se vseeno naročite na ta seznam." + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Končano! Osvežili smo stran z oglasom. Prosimo preverite, ali je oglas izginil. Potem se vrnite na to stran in odgovorite na spodnje vprašanje." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Zadnji korak: kaj velja za ta oglas?" + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Vsi viri" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"To ustreza $matchcount$ elementom na tej strani.", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Dovoli oglase na kanalu $name$", "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Imamo tudi stran kjer lahko najdete ljudi, ki so naredili AdBlock!" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Vir" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"indonezijščina" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "filterturkish":{ - "description":"A filter list", - "message":"turščina" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Prikaži št. blokiranih oglasov v AdBlockovem meniju" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokiraj oglas" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Prijava oglasa" + }, + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Kako?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Ne izvajaj se na straneh na tej domeni" }, "customfilters":{ "description":"List for custom filters the user subscribed to", "message":"Seznami filtrov po meri" }, - "frameurl":{ - "description":"Resource list page: full URL of the frame", - "message":"URL okvirja: " - }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Namen tega vprašanja je ugotoviti kdo naj prejme vaše poročilo. V kolikor na to vprašanje odgovorite nepravilno, bo bilo poročilo poslano napačni skupini in zaradi tega ne bo obravnavano." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dodaj elemente na meni desnega miškinega klika" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokiraj več oglasov:" }, - "typeselector":{ - "description":"A resource type", - "message":"selektor" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokiraj ta oglas" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domena ali spletni naslov, kjer AdBlock naj ne blokira ničesar" }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Ali naša ekipa potrebuje nekaj informacij za odpravljanje napak? Kliknite sem za pridobitev le-teh." + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (s spleta odstrani nadloge)" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Ne izvajaj AdBlocka na..." + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock je blokiral prenos s strani, ki je znana po tem, da se na njej nahaja zlonamerna programska oprema." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Skrit element" + "savebutton":{ + "description":"Save button", + "message":"Shrani" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Ponovno naložite stran." + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Niste prepričani? preprosto izberite 'Blokiraj!' spodaj." }, - "typepage":{ - "description":"A resource type", - "message":"stran" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Zadnji korak: prijavite nam oglas" }, - "filterdutch":{ - "description":"language", - "message":"nizozemščina" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Ime datoteke je predolgo. Prosimo, preimenujte datoteko." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Namen tega vprašanja je ugotoviti kdo naj prejme vaše poročilo. V kolikor na to vprašanje odgovorite nepravilno, bo bilo poročilo poslano napačni skupini in zaradi tega ne bo obravnavano." }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Ne pozabite shraniti!" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Izgleda dobro" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Preverjanje posodobitev (moralo bi trajati le nekaj sekund)..." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, "datacollectionoption":{ "description":"Checkbox on the 'General' tab of the Options page", "message":"Dovoli AdBlocku, da zbira anonimne podatke o uporabi filtrov" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Ali vas naj AdBlock obvesti, kadar zazna zlonamerno programsko opremo?" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Za prijavo oglasa morate biti povezani na internet." }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Seznami filtrov za blokiranje oglasov" }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Prikaži št. blokiranih oglasov v AdBlockovem meniju" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"bolgarščina" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Domena:" + "typeobject":{ + "description":"A resource type", + "message":"Interaktivni objekt" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock filtri po meri (priporočeno)" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Kaj menite, da bo veljalo za ta oglas pri vsakem obisku te spletne strani?" }, - "filterlatvian":{ - "description":"A filter list", - "message":"latvijščina" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Blokirani oglasi:" }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Prepričajte se, da uporabljate pravilne jezikovne filtre:" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS, ki mu mora ustrezati" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"arabščina" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Če želite skriti gumb, pojdite na opera://extensions in potrdite potrditveno polje pri možnosti \"Skrij z orodne vrstice\". Ponovno ga prikažete tako, da opustite izbor pri isti možnosti." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Razveljavi moje blokade na tej domeni" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Niste prepričani? preprosto izberite 'Blokiraj!' spodaj." + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Ročno uredite vaše filtre:" }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Ujemajoči se filter" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"1. korak: Kaj želite blokirati?" }, - "fetchinglabel":{ - "description":"Status label", - "message":"pridobivam... prosimo počakajte." + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Prosimo, vnesite pravilen filter v spodnje polje in izberite 'V redu'" }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Vsi viri" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Prevod:" }, "latest_version":{ "description":"On the Options > Support page, shows when there are no updates available for AdBlock", "message":"AdBlock je posodobljen!" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Ne izvajaj se na straneh na tej domeni" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Na voljo le v angleščini" }, - "filterisraeli":{ - "description":"language", - "message":"hebrejščina" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ALI pa preprosto kliknite na ta gumb, da se vse zgoraj napisano stori samodejno: Onemogoči vse druge razširitve" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Premikajte drsnik dokler oglas ni pravilno blokiran in blokirani elementi izgledajo uporabno." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Kaj je novega v zadnji izdaji? Oglejte si dnevnik sprememb!" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokiraj URL naslove, ki vsebujejo to besedilo" + "filterantisocial":{ + "description":"A filter list", + "message":"Seznam antisocialnih filtrov (odstrani gumbe za deljenje vsebine preko socialnih omrežij)" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "filtermalware":{ + "description":"A filter list", + "message":"Zaščita pred zlonamerno programsko opremo" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Razveljavi moje blokade na tej domeni" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock ne bo deloval na straneh, ki ustrezajo:" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"posodobljeno pred 1 dnevom" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Presegli ste količino prostora, ki jo AdBlock lahko uporabi za shranjevanje. Prosimo, odjavite se od nekaterih seznamov filtriranja!" }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Sprejemljivi oglasi (priporočeno)" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "clickdisableaa":{ + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Kakšen je vaš e-poštni naslov?" + }, + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ali želite videti, kako deluje AdBlock?" + }, + "catblock_disableallextensions":{ "description":"Instruction on ad report page", - "message":"Kliknite to: Onemogoči Sprejemljive oglase" + "message":"Disable all extensions except for CatBlock." }, - "optionsversion":{ - "description":"Version number", - "message":"Različica $version$", + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Skrij odsek spletne strani" + }, + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Splošno" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ali AdBlock za Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video posnetki in Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Super! Zdaj pa preverimo katera razširitev povzroča težave. Pojdite skozi seznam razširitev in omogočite eno po eno. Razširitev, ki prinese oglas(e) nazaj je tista, ki jo morate odstraniti, da se znebite oglasov." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "here":{ + "content":"", + "example":"here" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Odstrani s seznama" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ali Chrome" }, - "typehiding":{ - "description":"A resource type", - "message":"skrivanje" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Oblika: ~stran1.com|~stran2.com|~novice.stran3.org" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Seznami filtrov" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Plačajte kolikor želite!" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domena okvirja: " + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"To je problem seznama filtrov. Tu lahko prijavite napako: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Zgornji okvir" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Opomba: poročilo lahko postane javno dostopno. To imejte v mislih, preden vključite karkoli zasebnega." }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Končano!" + "filteritalian":{ + "description":"language", + "message":"italijanščina" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Vir" + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"346406" + } + } + }, + "adstillappear":{ + "description":"Question on ad report page", + "message":"Ali se oglas še vedno prikazuje?" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokiraj oglas na tej strani" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Prepričajte se, da uporabljate pravilne jezikovne filtre:" }, "updateyourlists":{ "description":"Section header on the ad report page", "message":"Poskrbite, da bodo vaši seznami filtrov posodobljeni:" }, - "lang_english":{ - "description":"language", - "message":"angleščina" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Nekaj je šlo narobe pri preverjanju posodobitev." }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Odprite stran z razširitvami in omogočite tiste, ki so bile prej onemogočene." + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Izberite Safari meni → Nastavitve → Razširitve." }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domena strani na kateri želite to uveljaviti" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Pošlji" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Stran:" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Ste našli hrošča?" + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", + "placeholders":{ + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + } + } }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"arabščina" + "unsubscribedlabel":{ + "description":"Status label", + "message":"Odjavljeno." }, - "lang_czech":{ - "description":"language", - "message":"češčina" + "typemedia":{ + "description":"A resource type", + "message":"avdio/video" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Plačajte kolikor želite!" + "filterlatvian":{ + "description":"A filter list", + "message":"latvijščina" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Ali želite videti, kako deluje AdBlock?" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokiraj oglas na tej strani" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Ustavi blokiranje oglasov:" }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Neveljaven seznam URL-jev. Izbrisan bo." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Odstrani s seznama" }, - "typesub_frame":{ - "description":"A resource type", - "message":"okvir" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Filter ni bil uspešno pridobljen!" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Uredi" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Če želite spremeniti strani, na katerih se AdBlock ne bo izvajal, premaknite spodnji drsnik." }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Imate vprašanje ali novo idejo?" + "typehiding":{ + "description":"A resource type", + "message":"skrivanje" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ALI pa preprosto kliknite na ta gumb, da se vse zgoraj napisano stori samodejno: Onemogoči vse druge razširitve" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Ali se oglas pojavi v ali pred videoposnetkom oz. katerimkoli drugim vtičnikom, kot npr. Flash igri?" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Izvedite več o zlonamerni programski opremi" + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Nekaj je šlo narobe. Viri niso bili poslani. Ta stran se bo zdaj zaprla. Poskusite ponovno naložiti spletno stran." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Ponovno naložite stran z oglasom." + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"španščina" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Če ga nimate, namestite Firefox $chrome$.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Bodite previdni: filter blokira vse $elementtype$ elemente na strani!", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Omogoči združljivost s ClickToFlash" }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Posodobitve AdBlocka" + "no":{ + "description":"A negative response to a question", + "message":"Ne" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Drugi seznami filtrov" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filter, ki se ga lahko spremeni na strani 'Možnosti':" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"francoščina" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Skrij ta gumb" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokirani element:" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Predhodno onemogočene razširitve so zdaj ponovno omogočene." }, - "typeobject":{ - "description":"A resource type", - "message":"Interaktivni objekt" + "other":{ + "description":"Multiple choice option", + "message":"drugo" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"ravnokar posodobljeno" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"V redu, še vedno lahko ta oglas blokirate le zase na strani 'Možnosti'. Hvala!" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"posodobljeno pred naslednjim številom dni: $days$", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Onemogočite vse razširitve, razen AdBlocka:" }, - "typesubdocument":{ - "description":"A resource type", - "message":"okvir" + "lang_russian":{ + "description":"language", + "message":"ruščina" + }, + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Uporabljate staro različico brskalnika Safari. V kolikor želite uporabljati AdBlockov gumb v opravilni vrstici, ga onemogočiti na nekaterih spletnih straneh ter prijavljati oglase, nadgradite zdaj." }, "filtereasyprivacy":{ "description":"A filter list", "message":"EasyPrivacy (zaščita zasebnosti)" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Prijavi oglas na tej strani" - }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Počisti ta seznam" - }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"nemščina" - }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Bodite previdni: filter blokira vse $elementtype$ elemente na strani!", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ bo $value$", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"tukaj" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"V katerem jeziku je napisana stran?" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Ali vnesite URL:" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Ali ste prepričani, da želite odstraniti naslednje število blokad, ki ste jih ustvarili na $host$? Št. blokad: $count$", + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Filter:
$filter$
ima napako:
$message$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "message":{ + "content":"$2", + "example":"invalid filter" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typeimage":{ - "description":"A resource type", - "message":"slika" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Tip okvira: " + }, + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"NALAGANJE..." + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Ali naša ekipa potrebuje nekaj informacij za odpravljanje napak? Kliknite sem za pridobitev le-teh." + }, + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Prijavi oglas na tej strani" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Pokaži izjave za odpravljanje napak v dnevniku konzole (upočasni AdBlock)" + }, + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domena okvirja: " + }, + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Najbolj priljubljena razširitev za brskalnik Chrome z več kot 40 milijoni uporabnikov! Blokira oglase po vsem spletu." }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Če želite skriti gumb, kliknite nanj z desno miškino tipko in izberite Skrij gumb. Ponovno ga lahko prikažete v razširitvahi: chrome://chrome/extensions." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Ste našli hrošča?" }, - "filtereasylist_plus_romanian":{ + "lang_czech":{ "description":"language", - "message":"romunščina" + "message":"češčina" }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Nekaj je šlo narobe pri preverjanju posodobitev." + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Onemogočili smo vse druge razširitve. Zdaj bomo osvežili stran z oglasom. Sekundo, prosim." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Ponovno naložite stran z oglasom." }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Dovoljen vir" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Pokaži povezave do seznamov filtrov" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Dovoli nekatere nevsiljive oglase" + }, + "filterswedish":{ + "description":"A filter list", + "message":"švedščina" + }, + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"To ustreza $matchcount$ elementom na tej strani.", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"češki in slovaški" - }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Tip okvira: " + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, "selectlanguage":{ "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", "message":" -- Izberite jezik -- " }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Namestite Adblock Plus za Firefox $chrome$, v kolikor ga še nimate.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } - }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Blokiran vir" - }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Ali se oglas pojavi v ali pred videoposnetkom oz. katerimkoli drugim vtičnikom, kot npr. Flash igri?" - }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Izvor filtra:\n$list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } - }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filter, ki se ga lahko spremeni na strani 'Možnosti':" - }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Filter:
$filter$
ima napako:
$message$", - "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" - } - } + "filtereasylist_plus_french":{ + "description":"language", + "message":"francoščina" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Uredi" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Zapri" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Podpora" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokiraj oglase samo na teh straneh:" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokiraj oglas z URL naslovom" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Presegli ste količino prostora, ki jo AdBlock lahko uporabi za shranjevanje. Prosimo, odjavite se od nekaterih seznamov filtriranja!" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filter ni veljaven: $exception$", + "optionsversion":{ + "description":"Version number", + "message":"Različica $version$", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"V redu, še vedno lahko ta oglas blokirate le zase na strani 'Možnosti'. Hvala!" - }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." - }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Kje točno na strani se nahaja oglas? Kako izgleda?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Pošlji" + "yes":{ + "description":"A positive response to a question", + "message":"Da" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Izvorna koda je na voljo brezplačno!" }, - "filtereasylist_plus_finnish":{ + "filterdutch":{ "description":"language", - "message":"finščina" + "message":"nizozemščina" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Kontaktirali vas bomo le v primeru, v kolikor bomo potrebovali dodatne informacije." }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Spodnje informacije bodo vključene v poročilo:" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"To ustreza 1 elementu na tej strani." }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"To je problem seznama filtrov. Tu lahko prijavite napako: $link$", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"posodobljeno pred naslednjim številom ur: $hours$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Odznačite potrditveno polje 'Omogočeno' pri vsaki razširitvi, razen AdBlocku. AdBlock pustite omogočen." - }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Pokaži povezave do seznamov filtrov" + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Nazaj" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Na voljo le v angleščini" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Pomagajte nam širiti idejo!" + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Kliknite to: Onemogoči Sprejemljive oglase" }, - "malwarenotificationmessage":{ - "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock je blokiral prenos s strani, ki je znana po tem, da se na njej nahaja zlonamerna programska oprema." + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domena strani na kateri želite to uveljaviti" }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legenda: " + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Omogoči združljivost s ClickToFlash" + "updatedminutesago":{ + "description":"Label for subscription", + "message":"posodobljeno pred naslednjim številom minut $minutes$", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Podpora" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Izvedite več o zlonamerni programski opremi" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Prosimo, pojdite na našo spletno mesto za podporo." + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Sprejemljivi oglasi (priporočeno)" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - kliknite za podrobnosti" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Izgleda dobro" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Opozorilo: filter ni določen!" } } \ No newline at end of file diff --git a/_locales/sr/messages.json b/_locales/sr/messages.json index 1952158b..a48f3113 100644 --- a/_locales/sr/messages.json +++ b/_locales/sr/messages.json @@ -1,1426 +1,1466 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Prijavljivanje reklame" + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Nešto se pokvarilo. Resursi nisu poslati. Stranica će se sada zatvoriti. Pokušajte ponovno pokrenuti vebsajt." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Filter Liste za Blokiranje Reklama" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Imate pitanje ili novu ideju?" }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Kliknite ovo: Onemogući Prihvatljive reklame" + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Opcije" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Sajt:" + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Pazite: ovaj filter blokira sve $elementtype$ elemente na strani!", + "placeholders":{ + "elementtype":{ + "content":"$1", + "example":"DIV" + } + } }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Prilagodi" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ na ovoj stranici", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dopusti postavljanje specifičnih YouTube kanala na listu dopuštenih" + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Poljski" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Od treće strane" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS za traženje" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Nije pronađen nijedan poznati maliciozni softver." + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Isključi" }, - "checkinfirefox_3":{ + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Ne želim ovo da proverim" + }, + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Budite pažljivi: ukoliko napravite grešku ovde mnogo drugih filtera, uključujući i oficijalne filtere, mogu da prestanu da rade kako treba!
Pročitajte sintaksni vodič za filtere kako bi naučili da dodajete napredne filtere zabranjujućih i dopuštajućih lista." + }, + "checkinfirefox_5":{ "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"U tom pregledaču, pretplatite se na iste liste filtera koje imate na ovom." + "message":"Da li se reklama takođe pojavljuje u tom pretraživaču?" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - kliknite za detalje" + "savebutton":{ + "description":"Save button", + "message":"Zapamti" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "filtereasylist_plus_lithuania":{ + "description":"language", + "message":"Litvanski" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"U tom pretraživaču, učitajte stranu sa reklamom." + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Prijavite se na ovu listu filtera, onda pokušajte ponovo: $list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } }, - "filterswedish":{ - "description":"A filter list", - "message":"Švedski" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Šta je novo u poslednjem izdanju? Pogledajte spisak promena!" + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Vaš računar je možda zaražen sa malicioznim softverom. Kliknite ovde za više informacija." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blokiraj još reklama:" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Prikazuje reklame na veb strani ili domenu" }, - "lang_russian":{ + "lang_slovak":{ "description":"language", - "message":"Ruski" + "message":"Slovenski" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Dodaci koji su pre bili onemogućeni sada su omogućeni." + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Instalirajte Adblock Plus za Firefox/$chrome$ ukoliko ga nemate.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Prekini pratnju." + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Mi nemamo standardnu listu filtera za taj jezik.
Molimo pokušajte da pronađete odgovarajuću listu koja podržava ovaj jezik $link$ ili blokirajte ovu reklamu sami u 'Modifikuj' tab-u.", + "placeholders":{ + "link":{ + "content":"", + "example":"here" + } + } }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blokiraj reklamu preko njenog URL-a" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Pritisnite na reklamu, i ja ću vam objasniti kako da je blokirate." }, "topframe":{ "description":"Resource list page: frame type", "message":"Gornji okvir" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Grčki" + "typestylesheet":{ + "description":"A resource type", + "message":"definicija stila" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock prilagodljivi filteri (preporučeno)" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Sakrij odeljak veb strane" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Izvinite, AdBlock je onesposobljen na ovoj strani zbog jedne od vaših lista filtera." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Španski" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Takođe, imamo i stranicu o ljudima koji su napravili AdBlock!" + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Od treće strane" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blokirani element:" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Filter nije specifikovan!" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Šta mislite da će biti tačno što se tiče ove reklame svaki put kad posetite stranicu?" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grčki" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Omogući AdBlock na ovoj stranici" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Nazad" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Niste sigurni? samo kliknite 'Blokiraj!' ispod." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Zaobiđite videe sa Hulu.com koji ne rade (zahteva restartovanje pretraživača)" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Pokaži broj blokiranih reklama na AdBlock dugmetu" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Upozorenje: nijedan filter nije specifikovan!" }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Prilagodi" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Liste filtera blokiraju većinu reklama na internetu. Možete takođe:" + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Pronašli ste reklamu na web-stranici? Pomoći ćemo Vam da pronađete pravo mesto da je prijavite!" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Izvorni kod je otvoren i besplatan!" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Naučite više o programu Prihvatljivih reklama." + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Estonski" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "updateddaysago":{ + "description":"Label for subscription", + "message":"ažurirano pre $days$ dana", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Dopušteni resurs" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Prikazuje reklame na veb strani ili domenu" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"To odgovara jednoj stavci na ovoj strani." + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Ne pokreći AdBlock na..." }, - "typeimage":{ - "description":"A resource type", - "message":"slika" + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Blokiraj URL-ove koji sadže ovaj tekst" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Budite pažljivi: ukoliko napravite grešku ovde mnogo drugih filtera, uključujući i oficijalne filtere, mogu da prestanu da rade kako treba!
Pročitajte sintaksni vodič za filtere kako bi naučili da dodajete napredne filtere zabranjujućih i dopuštajućih lista." + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Zatvori" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Dopusti $name$ kanal", + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Proveri u Firefox-u $chrome$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Opšte opcije" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Vaš računar je možda zaražen sa malicioznim softverom. Kliknite ovde za više informacija." + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Poslednji korak: Sta čini ovo reklamom?" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock neće raditi na stranama:" + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Prilago AdBlock" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"ažurirano pre jedan dan" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Nije pronađen nijedan poznati maliciozni softver." }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Mi nemamo standardnu listu filtera za taj jezik.
Molimo pokušajte da pronađete odgovarajuću listu koja podržava ovaj jezik $link$ ili blokirajte ovu reklamu sami u 'Modifikuj' tab-u.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finski" }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Prijavi se" + "typescript":{ + "description":"A resource type", + "message":"skripta" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Ja sam napredni korisnik, pokaži mi dodatne opcije" + "lang_ukranian":{ + "description":"language", + "message":"Ukrajinski" }, - "lang_czech":{ + "filtereasylist_plun_korean":{ "description":"language", - "message":"Češki" + "message":"Korejski" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Sakrij ovo dugme" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Takođe, imamo i stranicu o ljudima koji su napravili AdBlock!" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Ažuriranja će se preuzimati automatski; takođe možete ažurirati sada" + "typepopup":{ + "description":"A resource type", + "message":"popap" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Pokrenuto na stranici s domenom:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Ako vidite reklamu, nemojte napraviti prijavu baga, napravite prijavu reklame!" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Ovo je problem liste filtera. Prijavi ga ovde: $link$", - "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" - } - } + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Ponovo učitajte stranicu." }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~sajt1.com|~sajt2.com|~novosti.sajt3.org" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Koristite staru verziju AdBlock-a. Molimo idite do strane za prijključke, uključite 'Režim razvojnika' i kliknite na 'Ažuriraj priključke sada'" }, - "filtereasylist_plus_estonian":{ - "description":"language", - "message":"Estonski" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock je pauziran." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Ima $matchcount$ takve stavke na ovoj strani.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (uklanja dosadne smetnje sa Weba)" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Ponovo aktivirati AdBlock" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonezijski" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Pronalaženje reklama...

Ovo će potrajati samo malo." }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Kucaj" + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock je onesposobljen na ovoj strani." + }, + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"U tom pregledaču, pretplatite se na iste liste filtera koje imate na ovom." + }, + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blokiraj reklamu" + }, + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Upozorenje: na svim ostalim sajtovima ćete videti reklame!
Ovo poništava sve ostale filtere za te sajtove." }, "update_available":{ "description":"On the Options > Support page, shows when there are updates available for AdBlock", "message":"Postoji nova verzija AdBlock-a! Idite $here$ kako biste je preuzeli.
Ako želite preuzimati ažuriranja automatski, samo kliknite u Safari > Postavke > Ekstenzije > Ažuriranja
i označite opciju 'Instaliraj ažuriranja automatski'.", "placeholders":{ "here":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "filterturkish":{ + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Filter:
$filter$
ima grešku:
$message$", + "placeholders":{ + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" + } + } + }, + "filteradblock_custom":{ "description":"A filter list", - "message":"Turski" + "message":"AdBlock prilagodljivi filteri (preporučeno)" + }, + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Kucaj" }, "whats_this":{ "description":"Text of a link pointing to the explanation of a new feature", "message":"Šta je ovo?" }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "filterjapanese":{ + "description":"language", + "message":"Japanski" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Prilagođene Filter Liste" + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Poreklo filtera:\n$list$", + "placeholders":{ + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" + } + } }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Nemojte se prijavljivati na više nego vam je potrebno -- svaki filter dodatno usporava AdBlock! Zasluge i druge liste možete pronaći ovde." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Prijavite se na liste filtera" }, - "typestylesheet":{ + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Zaslužan za prevodjenje:" + }, + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Dodaj filtere za drugi jezik: " + }, + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Odgovarajući filter" + }, + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Liste filtera blokiraju većinu reklama na internetu. Možete takođe:" + }, + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Da biste sklonili dugme, desnim klikom na alatnu traku Safari-ja odaberite Customize toolbar (Prilogođivanje alatne trake), a zatim povucite dugme AdBlock iz alatne trake. Možete ga ponovo prikazati vraćanjem ga nazad u alatnoj traku." + }, + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Premašili ste Dropbox ograničenje veličine. Molimo uklonite neke unose iz vaših prilagođenih ili onemogućenih filtera pa pokušajte ponovo." + }, + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Prijavi se" + }, + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blokirani element:" + }, + "typepage":{ "description":"A resource type", - "message":"definicija stila" + "message":"stranica" }, - "frameurl":{ - "description":"Resource list page: full URL of the frame", - "message":"URL okvira: " + "typeother":{ + "description":"A resource type", + "message":"ostalo" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Svrha ovog pitanja je da se odredi ko bi trebao da primi vaš izveštaj. Ukoliko odgovorite na ovo pitanje pogrešno, izveštaj će biti poslat pogrešnim ljudima, pa može biti ignorisan." + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Kliknite na ovo: Ažuriraj moje filtere!" }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Poljski" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dodaj stavke na meni desnog klika" + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Skriveni element" }, "flashads":{ "description":"Title of the final ad report question if the ad didn't appear in Firefox", "message":"Videi i Flash" }, - "typeselector":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"selektor" + "message":"objekat_podpotražnja" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blokiraj ovu reklamu" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Strana:" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"ažurirano pre $hours$ sati", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "buttonblockit":{ + "description":"Block button", + "message":"Blokiraj!" }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"ažurirano pre $seconds$ sekundi", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dopusti postavljanje specifičnih YouTube kanala na listu dopuštenih" }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Da li je naš tim zatražio dodatne informacije o bagu? Kliknite ovde za to!" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Na kom jeziku je stranica napisana?" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"objekat_podpotražnja" + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Nemojte se prijavljivati na više nego vam je potrebno -- svaki filter dodatno usporava AdBlock! Zasluge i druge liste možete pronaći ovde." + }, + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" + }, + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Ne možemo još da blokiramo reklame unutar Flash-a i ostalih priključaka. Čekamo podršku pretraživača i WebKit-a." }, "filterhungarian":{ "description":"language", "message":"Mađarski" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Prijavljivanje reklama je dobrovoljno. Pomaže drugima da takođe ne vide reklame tako što održavatelji lista filtera blokiraju reklamu za sve. Ako se ne osećate altruistički, to je isto u redu. Zatvorite ovu stranicu i blokirajte reklamu samo sebi." + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blokiraj ovu reklamu" }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Ne zaboravi: tvoj izveštaj može postati javno dostupan. Imaj to na umu pre uključivanja nečeg privatnog." + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Skriveni element" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Omogući AdBlock na ovoj stranici" }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Ponovo učitajte stranicu." + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Pokaži broj blokiranih reklama na AdBlock dugmetu" }, - "typepage":{ + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Nije uspelo!" + }, + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pauziraj AdBlock" + }, + "lang_english":{ + "description":"language", + "message":"Engleski" + }, + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dodaj stavke na meni desnog klika" + }, + "typemain_frame":{ "description":"A resource type", "message":"stranica" }, - "filterdutch":{ + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Jeste li sigurni da želite ukloniti $count$ blokiranja koje ste napravili na $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } + }, + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Legenda: " + }, + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Holandski" + "message":"Rumunski" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Ne zaboravite da zapamtite!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Uredi onemogućene filtere:" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ će biti $value$", + "subframe":{ + "description":"Resource list page: frame type", + "message":"Podokvir" + }, + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Instalirajte Firefox $chrome$ ukoliko ga nemate.", "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Zatvori" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Liste filtera" }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Odgovarajući filter" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Ja sam napredni korisnik, pokaži mi dodatne opcije" + }, + "filterchinese":{ + "description":"language", + "message":"Kineski" }, "blacklistereditinvalid1":{ "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", "message":"Ovaj filter je pogrešan: $exception$", "placeholders":{ "exception":{ - "example":"This filter is not supported", - "content":"$1" + "content":"$1", + "example":"This filter is not supported" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Upozorenje: nijedan filter nije specifikovan!" - }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Dopusti AdBlock-u anonimno prikupljanje podatka i korišćenja liste filtera" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Da li AdBlock treba da Vas obavesti kada pronađe maliciozni softver?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Prijavljivanje na listu filtera..." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Prikaži reklame svuda osim na ovim domenima..." + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Otvori stranicu dodataka kako bi omogućili dodatke koji su bili onemogućeni." }, - "show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", - "message":"Pokaži broj blokiranih reklama na AdBlock meniju" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Onemogući ova obaveštenja" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Opcije" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Prikaži sve zahteve" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Ne pokreći AdBlock na..." + "updatedhourago":{ + "description":"Label for subscription", + "message":"ažurirano pre jedan sat" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Ako ne želite videti reklame poput ove, možete isključiti filter listu Prihvatljivih reklama." + "typesubdocument":{ + "description":"A resource type", + "message":"okvir" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonezijski" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Blokirane reklame:" + "typeimage":{ + "description":"A resource type", + "message":"slika" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ ukupno", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." } } }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "buttoncancel":{ + "description":"Cancel button", + "message":"Poništi" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Dodaj filtere za drugi jezik: " + "savereminder":{ + "description":"Reminder to press save", + "message":"Ne zaboravite da zapamtite!" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letonski" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Proverite da li koristite ispravni filter za jezik:" + "typeselector":{ + "description":"A resource type", + "message":"selektor" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS za traženje" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Da sklonite dugme, idite na opera://extensions i obeležite opciju 'Ukloni sa alatne trake'. Možete ga vratiti kasnije tako što poništite tu opciju." + "filtericelandic":{ + "description":"language", + "message":"Islandski" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Filter Liste za Blokiranje Reklama" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Pritisnite na reklamu, i ja ću vam objasniti kako da je blokirate." + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blokiraj samo reklame na ovim sajtovima:" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock podrška" + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Pokrenuto na stranici s domenom:\n$domain$", + "placeholders":{ + "domain":{ + "content":"$1", + "example":"example.com" + } + } }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Prijavi reklamu na ovoj stranici" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Dodaci koji su pre bili onemogućeni sada su omogućeni." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Očistite spisak" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Super! Sve je namešteno." + "spread_the_word":{ + "description":"Text of a share link", + "message":"Pomozite da proširimo reč!" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ruski i ukrajinski" + "optionstitle":{ + "description":"Title for the options page", + "message":"Opcije AdBlock-a" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Pomerite klizač dok je reklama ispravno blokirana na stranici, i blokirani element izgleda korisno." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Svi resursi" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Sakrij ovo dugme" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Prilago AdBlock" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Proveravanje ažuriranja (trebalo bi trajati samo par sekundi)..." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock je ažuran!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"upravo ažurirano" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ ukupno", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" - } - } + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Kliknite desnim klikom na reklamu da je blokirate -- ili je blokirajte ovde ručno." }, - "filterisraeli":{ - "description":"language", - "message":"Hebrejski" + "filterswedish":{ + "description":"A filter list", + "message":"Švedski" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Izvinite, AdBlock je onesposobljen na ovoj strani zbog jedne od vaših lista filtera." + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Blokiraj URL-ove koji sadže ovaj tekst" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Kucaj" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "yes":{ + "description":"A positive response to a question", + "message":"Da" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Vrati moja blokiranja na ovom domenu" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"ažurirano pre jedan minut" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Molimo ukucajte pravilni filter ispod i pritisnite OK" + "typesub_frame":{ + "description":"A resource type", + "message":"okvir" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Korak 1: Odredite šta da blokirate" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Blokirani resurs" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "filterdanish":{ + "description":"language", + "message":"Danski" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ na ovoj stranici", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "disableaa":{ + "description":"Section header on the ad report page", + "message":"Proveri filtere Prihvatljivih reklama:" }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Podokvir" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Niste sigurni? samo kliknite 'Blokiraj!' ispod." + "fetchinglabel":{ + "description":"Status label", + "message":"Dobavljanje... molimo sačekajte." }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"ažurirano pre jedan sat" + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Nevažeći URL liste. Biće obrisan." }, - "optionsversion":{ - "description":"Version number", - "message":"Verzija $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "generaloptions":{ + "description":"Title of first tab page", + "message":"Opšte opcije" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "filterchinese":{ - "description":"language", - "message":"Kineski" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Isključite 'Omogućeno' polje za potvrdu pored svakog priključka osim AdBlock-a. Ostavite da AdBlock bude uključen." }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Ova AdBlock mogućnost ne radi na ovoj stranici jer koristi zastarelu tehnologiju. Možete staviti resorse na listu zabranjujućih i dopuštajućih filtera ručno u kartici 'Prilagodi' u podešavanjima." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"U tom pretraživaču, učitajte stranu sa reklamom." }, - "other":{ - "description":"Multiple choice option", - "message":"Ostalo" + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Prikaži reklame svuda osim na ovim domenima..." }, - "typehiding":{ - "description":"A resource type", - "message":"skriven" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Liste filtera" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." + }, + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Ako želite da sakrijte dugme, kliknite na njega desnim klikom i izaberite Sakrij Dugme. Možete ga prikazati opet pod chrome://chrome/extensions." + }, + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "filterisraeli":{ + "description":"language", + "message":"Hebrejski" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Ova AdBlock mogućnost ne radi na ovoj stranici jer koristi zastarelu tehnologiju. Možete staviti resorse na listu zabranjujućih i dopuštajućih filtera ručno u kartici 'Prilagodi' u podešavanjima." }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Domen okvira: " + "filterczech":{ + "description":"Language names for a filter list", + "message":"Češki i slovački" + }, + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Onemogućili smo sva proširenja. Sada ćemo ponovno pokrenuti stranicu sa reklamom. Sekundu, molim." }, "otherfilters":{ "description":"List for other filters the user subscribed to", "message":"Ostale Filter Liste" }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Isključite 'Omogućeno' polje za potvrdu pored svakog priključka osim AdBlock-a. Ostavite da AdBlock bude uključen." + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Ažuriranja će se preuzimati automatski; takođe možete ažurirati sada" }, - "buttonblockit":{ - "description":"Block button", - "message":"Blokiraj!" + "typeunknown":{ + "description":"A resource type", + "message":"nepoznato" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Gotovo!" + "filterturkish":{ + "description":"A filter list", + "message":"Turski" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Resurs" + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blokiraj reklamu na ovoj strani" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Što više filter lista koristite, to je AdBlock sporiji. Korišćenje previše lista mogu čak da blokiraju vaš pretraživač na nekim veb sajtovima. Kliknite OK da koristite ovu listu svejedno." }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Proverite da li su svi filteri ažurni:" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Prikaži sve zahteve" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Ne želim ovo da proverim" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock ažuriranja" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Naučite više o programu Prihvatljivih reklama." }, - "lang_english":{ - "description":"language", - "message":"Engleski" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Da li AdBlock treba da Vas obavesti kada pronađe maliciozni softver?" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Poslednji korak: Sta čini ovo reklamom?" + "updateddayago":{ + "description":"Label for subscription", + "message":"ažurirano pre jedan dan" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pauziraj AdBlock" + "frameurl":{ + "description":"Resource list page: full URL of the frame", + "message":"URL okvira: " }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Da li ste sigurni da se želite pretplatiti na spisak filtera $title$?", + "filtereasylist_plus_german":{ + "description":"language", + "message":"Nemački" + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"ažurirano pre $seconds$ sekundi", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "seconds":{ + "content":"$1", + "example":"15" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Otvori stranicu dodataka kako bi omogućili dodatke koji su bili onemogućeni." - }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domen strane na kojoj se primenjuje" - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Dopušteni resurs" - }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Strana:" - }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Našli ste bag?" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Nemoj pokretati na ovoj strani" }, "filtereasylist_plus_arabic":{ "description":"language", "message":"Arapski" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Plati koliko hoćeš!" + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"ili AdBlock za Chrome" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Gotovo! Ponovo smo pokrenuli stranicu sa reklamom. Molimo proverite da li je reklama nestala. Onda se vratite na ovu stranicu i odgovorite na pitanje ispod." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blokiraj reklamu" + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Svi resursi" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Dopusti $name$ kanal", + "placeholders":{ + "name":{ + "content":"$1", + "example":"Name of channel" + } + } }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Resurs" }, - "filterdanish":{ - "description":"language", - "message":"Danski" + "show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", + "message":"Pokaži broj blokiranih reklama na AdBlock meniju" }, - "typesub_frame":{ - "description":"A resource type", - "message":"okvir" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Prijavljivanje reklame" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Izmeni" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Nemoj pokretati na stranama ovog domena" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Pronalaženje reklama...

Ovo će potrajati samo malo." + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Prilagođene Filter Liste" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blokiraj još reklama:" + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, "excludedomainorurl":{ "description":"Message of the exclude area", "message":"Domen ili url gde AdBlock ne treba da blokira bilo sta" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Proveravanje ažuriranja (trebalo bi trajati samo par sekundi)..." - }, - "typescript":{ - "description":"A resource type", - "message":"skripta" - }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Naučite više o malicioznom softveru" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (uklanja dosadne smetnje sa Weba)" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Ponovo učitaj stranicu sa reklamom." + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock je blokirao preuzimanje sa web stranice koja je poznata da drži malver." }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Instalirajte Firefox $chrome$ ukoliko ga nemate.", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Ako ne želite videti reklame poput ove, možete isključiti filter listu Prihvatljivih reklama." }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock ažuriranja" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Korejski" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Izgleda dobro" }, - "no":{ - "description":"A negative response to a question", - "message":"Ne" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Nešto se pokvarilo. Resursi nisu poslati. Stranica će se sada zatvoriti. Pokušajte ponovno pokrenuti vebsajt." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Nazad" }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Što više filter lista koristite, to je AdBlock sporiji. Korišćenje previše lista mogu čak da blokiraju vaš pretraživač na nekim veb sajtovima. Kliknite OK da koristite ovu listu svejedno." + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Dopusti AdBlock-u anonimno prikupljanje podatka i korišćenja liste filtera" }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrajinski" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Da biste prijavili reklamu, morate biti povezani na internet." }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"ažurirano pre $minutes$ minuta", + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Da li ste sigurni da se želite pretplatiti na spisak filtera $title$?", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "filtereasylist_plus_french":{ + "filtereasylist_plus_bulgarian":{ "description":"language", - "message":"Francuski" - }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Ako vidite reklamu, nemojte napraviti prijavu baga, napravite prijavu reklame!" + "message":"Bugarski" }, "typeobject":{ "description":"A resource type", "message":"interaktivni objekat" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"upravo ažurirano" - }, - "savebutton":{ - "description":"Save button", - "message":"Zapamti" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Šta mislite da će biti tačno što se tiče ove reklame svaki put kad posetite stranicu?" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Upozorenje: na svim ostalim sajtovima ćete videti reklame!
Ovo poništava sve ostale filtere za te sajtove." + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Blokirane reklame:" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Onemogući ova obaveštenja" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Recite nam na našoj stranici podrške!" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Prijavljivanje na listu filtera..." + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Vrati moja blokiranja na ovom domenu" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"ažurirano pre $days$ dana", - "placeholders":{ - "days":{ - "example":"15", - "content":"$1" - } - } + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Ručno uredite vaše filtere:" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ILI, samo kliknite ovo dugme kako bi uradili sve ovo iznad: Onemogući sve druge dodatke" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Korak 1: Odredite šta da blokirate" }, - "typesubdocument":{ - "description":"A resource type", - "message":"okvir" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Molimo ukucajte pravilni filter ispod i pritisnite OK" }, - "filtereasyprivacy":{ - "description":"A filter list", - "message":"EasyPrivacy (zaštita privatnosti)" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Sajt:" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Češki i slovački" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock je ažuran!" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Koristite staru verziju AdBlock-a. Molimo idite do strane za prijključke, uključite 'Režim razvojnika' i kliknite na 'Ažuriraj priključke sada'" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Samo engleski" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Opcije AdBlock-a" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Gotovo!" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Proveri za malver koji možda ubacuje reklame:" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ILI, samo kliknite ovo dugme kako bi uradili sve ovo iznad: Onemogući sve druge dodatke" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Očistite spisak" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Šta je novo u poslednjem izdanju? Pogledajte spisak promena!" }, "filterantisocial":{ "description":"A filter list", "message":"Antisocijalna lista filtera (uklanja dugmad društevnih mreža)" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Prikaži izjave uklanjanja greške u zapisu konzole (usporava AdBlock)" - }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Premašili ste Dropbox ograničenje veličine. Molimo uklonite neke unose iz vaših prilagođenih ili onemogućenih filtera pa pokušajte ponovo." - }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Ponovo aktivirati AdBlock" - }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Gotovo! Ponovo smo pokrenuli stranicu sa reklamom. Molimo proverite da li je reklama nestala. Onda se vratite na ovu stranicu i odgovorite na pitanje ispod." + "filtermalware":{ + "description":"A filter list", + "message":"Zaštita od malicioznog softvera" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Nemački" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock neće raditi na stranama:" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Pazite: ovaj filter blokira sve $elementtype$ elemente na strani!", - "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" - } - } + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Prekoračili ste nivo skladištenja kori AdBlock može da koristi. Molimo obustavite praćenje nekih lista filtera!" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Izaberite jezik " + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Želite da vidite kako radi AdBlock?" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Da li se ova reklama vidi u filmu ili ispred filma ili nekog drugog priključka poput igre u Flash-u?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Super! Sve je namešteno." }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Zaobiđite videe sa Hulu.com koji ne rade (zahteva restartovanje pretraživača)" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Isključi" + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Sakrij odeljak veb strane" }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Onemogućite sva proširenja osim AdBlock-a:" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Opšte" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Na kom jeziku je stranica napisana?" + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"ili AdBlock za Chrome" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Da sklonite dugme, idite na opera://extensions i obeležite opciju 'Ukloni sa alatne trake'. Možete ga vratiti kasnije tako što poništite tu opciju." }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Jeste li sigurni da želite ukloniti $count$ blokiranja koje ste napravili na $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Odlično! Pronađimo sada koje proširenje je uzrok. Prođite kroz listu i omogućite svako proširenje posebno. Proširenje koje ubacuje reklame je ono koje bi trebali ukloniti da bi se rešili reklama." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Proveri u Firefox-u $chrome$", + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "here":{ + "content":"", + "example":"here" } } }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Zaslužan za prevodjenje:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"UČITAVANJE..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Kliknite desnim klikom na reklamu da je blokirate -- ili je blokirajte ovde ručno." - }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Ako želite da sakrijte dugme, kliknite na njega desnim klikom i izaberite Sakrij Dugme. Možete ga prikazati opet pod chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumunski" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Uredi onemogućene filtere:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Prihvatljive reklame (preporučeno)" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Desila se nekakva greška kod provere ažuriranja." - }, - "disableaa":{ - "description":"Section header on the ad report page", - "message":"Proveri filtere Prihvatljivih reklama:" - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Da biste sklonili dugme, desnim klikom na alatnu traku Safari-ja odaberite Customize toolbar (Prilogođivanje alatne trake), a zatim povucite dugme AdBlock iz alatne trake. Možete ga ponovo prikazati vraćanjem ga nazad u alatnoj traku." + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ili Chrome" }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Onemogućili smo sva proširenja. Sada ćemo ponovno pokrenuti stranicu sa reklamom. Sekundu, molim." + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~sajt1.com|~sajt2.com|~novosti.sajt3.org" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"ažurirano pre jedan minut" + "pwyw":{ + "description":"Text of a payment request link", + "message":"Plati koliko hoćeš!" }, - "typemain_frame":{ - "description":"A resource type", - "message":"stranica" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Ovo je problem liste filtera. Prijavi ga ovde: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Omogući režim kompatibilnosti ClickToFlash" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Ne zaboravi: tvoj izveštaj može postati javno dostupan. Imaj to na umu pre uključivanja nečeg privatnog." }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "filteritalian":{ + "description":"language", + "message":"Italijanski" }, - "catblock_example_flickr_url":{ + "catblock_example_flickr_id":{ "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "content":"346406" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." - }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ili Chrome" - }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Ili unesite URL:" - }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Ukloni sa liste" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Da li je reklama i dalje vidljiva?" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Koristite staru verziju Safarija. Nabavite najnoviju verziju da bi koristili dugme AdBlock-a na panelu sa alatkama da bi pauzirali AdBlock, omogućili prikaz reklama na određenim veb sajtovima, i kako bi prijavili reklame." + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Proverite da li koristite ispravni filter za jezik:" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Vrsta okvira: " + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Proverite da li su svi filteri ažurni:" }, - "fetchinglabel":{ - "description":"Status label", - "message":"Dobavljanje... molimo sačekajte." + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Desila se nekakva greška kod provere ažuriranja." }, "disableforsafaristepone":{ "description":"Step 1 for disabling Safari extensions", "message":"Kliknite na Safari meni → Podešavanja → Extenzije." }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Instalirajte Adblock Plus za Firefox/$chrome$ ukoliko ga nemate.", + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Pošalji" + }, + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, + "unsubscribedlabel":{ + "description":"Status label", + "message":"Prekini pratnju." + }, + "typemedia":{ + "description":"A resource type", + "message":"audio/video" + }, + "filterlatvian":{ + "description":"A filter list", + "message":"Letonski" + }, + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blokiraj reklamu na ovoj strani" + }, "stop_blocking_ads":{ "description":"Section header on the 'Customize' tab", "message":"Obustavi blokiranje reklama:" }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Najpopularniji dodatak za Chrome, sa preko 40 miliona korisnika! Blokira reklame na celom internetu." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Ukloni sa liste" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Blokirani resurs" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Nije uspelo dobavljanje ovog filtera!" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Da li je reklama i dalje vidljiva?" + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Možete da pomerite klizač ispod kako biste odredili tačno na kojim stranicama AdBlock neće raditi." }, - "filtermalware":{ - "description":"A filter list", - "message":"Zaštita od malicioznog softvera" + "typehiding":{ + "description":"A resource type", + "message":"skriven" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Podrška" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Da li se ova reklama vidi u filmu ili ispred filma ili nekog drugog priključka poput igre u Flash-u?" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bugarski" + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ruski i ukrajinski" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Želite da vidite kako radi AdBlock?" + "filtereasylist_plus_spanish":{ + "description":"language", + "message":"Španski" }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Odlično! Pronađimo sada koje proširenje je uzrok. Prođite kroz listu i omogućite svako proširenje posebno. Proširenje koje ubacuje reklame je ono koje bi trebali ukloniti da bi se rešili reklama." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (preporučeno)" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Poreklo filtera:\n$list$", - "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" - } - } + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Omogući režim kompatibilnosti ClickToFlash" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Nije uspelo!" + "no":{ + "description":"A negative response to a question", + "message":"Ne" }, "blacklisterthefilter":{ "description":"Blacklister attribute choosing page message", "message":"Filter, koji se može promeni na strani sa podešavanjima:" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Ručno uredite vaše filtere:" - }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Filter:
$filter$
ima grešku:
$message$", - "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" - } - } - }, - "typepopup":{ - "description":"A resource type", - "message":"popap" - }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." - }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Kucaj" - }, - "lang_slovak":{ - "description":"language", - "message":"Slovenski" - }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Prijavite se na liste filtera" + "other":{ + "description":"Multiple choice option", + "message":"Ostalo" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Da li se reklama takođe pojavljuje u tom pretraživaču?" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, i dalje možete da blokirate ovu reklamu za sebe na strani sa podešavanjima. Hvala!" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Nemoj pokretati na ovoj strani" + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Onemogućite sva proširenja osim AdBlock-a:" }, - "filtereasylist_plus_lithuania":{ + "lang_russian":{ "description":"language", - "message":"Litvanski" - }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blokiraj samo reklame na ovim sajtovima:" + "message":"Ruski" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Recite nam na našoj stranici podrške!" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Koristite staru verziju Safarija. Nabavite najnoviju verziju da bi koristili dugme AdBlock-a na panelu sa alatkama da bi pauzirali AdBlock, omogućili prikaz reklama na određenim veb sajtovima, i kako bi prijavili reklame." }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock je pauziran." + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (zaštita privatnosti)" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Prekoračili ste nivo skladištenja kori AdBlock može da koristi. Molimo obustavite praćenje nekih lista filtera!" + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ će biti $value$", + "placeholders":{ + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" + } + } }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Ne možemo još da blokiramo reklame unutar Flash-a i ostalih priključaka. Čekamo podršku pretraživača i WebKit-a." + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Ili unesite URL:" }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Pronašli ste reklamu na web-stranici? Pomoći ćemo Vam da pronađete pravo mesto da je prijavite!" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Vrsta okvira: " }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, i dalje možete da blokirate ovu reklamu za sebe na strani sa podešavanjima. Hvala!" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"UČITAVANJE..." }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"Opšte" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Da li je naš tim zatražio dodatne informacije o bagu? Kliknite ovde za to!" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Prijavi reklamu na ovoj stranici" }, - "typeother":{ - "description":"A resource type", - "message":"ostalo" + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Prikaži izjave uklanjanja greške u zapisu konzole (usporava AdBlock)" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Pošalji" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Domen okvira: " }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Filter nije specifikovan!" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Pomerite klizač dok je reklama ispravno blokirana na stranici, i blokirani element izgleda korisno." }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Najpopularniji dodatak za Chrome, sa preko 40 miliona korisnika! Blokira reklame na celom internetu." }, - "typeunknown":{ - "description":"A resource type", - "message":"nepoznato" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Našli ste bag?" }, - "filtereasylist_plus_finnish":{ + "lang_czech":{ "description":"language", - "message":"Finski" + "message":"Češki" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock je onesposobljen na ovoj strani." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Ponovo učitaj stranicu sa reklamom." }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "filterjapanese":{ - "description":"language", - "message":"Japanski" + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Prikaži linkove na liste filtera" }, "acceptableadsoption":{ "description":"option on the 'General' tab", "message":"Dozvoli neke nenametljive reklame" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Kliknite na ovo: Ažuriraj moje filtere!" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Ima $matchcount$ takve stavke na ovoj strani.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Nemoj pokretati na stranama ovog domena" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock podrška" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Nije uspelo dobavljanje ovog filtera!" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Izaberite jezik " }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Prikaži linkove na liste filtera" + "filtereasylist_plus_french":{ + "description":"language", + "message":"Francuski" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Samo engleski" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Izmeni" }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Poništi" + "tabsupport":{ + "description":"A tab on the options page", + "message":"Podrška" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Pomozite da proširimo reč!" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blokiraj reklamu preko njenog URL-a" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Možete da pomerite klizač ispod kako biste odredili tačno na kojim stranicama AdBlock neće raditi." + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "malwarenotificationmessage":{ - "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock je blokirao preuzimanje sa web stranice koja je poznata da drži malver." + "optionsversion":{ + "description":"Version number", + "message":"Verzija $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Legenda: " + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Svrha ovog pitanja je da se odredi ko bi trebao da primi vaš izveštaj. Ukoliko odgovorite na ovo pitanje pogrešno, izveštaj će biti poslat pogrešnim ljudima, pa može biti ignorisan." }, - "filtericelandic":{ + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Prijavljivanje reklama je dobrovoljno. Pomaže drugima da takođe ne vide reklame tako što održavatelji lista filtera blokiraju reklamu za sve. Ako se ne osećate altruistički, to je isto u redu. Zatvorite ovu stranicu i blokirajte reklamu samo sebi." + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Izvorni kod je otvoren i besplatan!" + }, + "filterdutch":{ "description":"language", - "message":"Islandski" + "message":"Holandski" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Prijavite se na ovu listu filtera, onda pokušajte ponovo: $list_title$", + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"To odgovara jednoj stavci na ovoj strani." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"ažurirano pre $hours$ sati", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Da biste prijavili reklamu, morate biti povezani na internet." + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Proveri za malver koji možda ubacuje reklame:" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (preporučeno)" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Nevažeći URL liste. Biće obrisan." + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Kliknite ovo: Onemogući Prihvatljive reklame" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domen strane na kojoj se primenjuje" }, - "yes":{ - "description":"A positive response to a question", - "message":"Da" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "filteritalian":{ - "description":"language", - "message":"Italijanski" + "updatedminutesago":{ + "description":"Label for subscription", + "message":"ažurirano pre $minutes$ minuta", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"ovde" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Naučite više o malicioznom softveru" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Izgleda dobro" + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Prihvatljive reklame (preporučeno)" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Imate pitanje ili novu ideju?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - kliknite za detalje" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"ovde" } } \ No newline at end of file diff --git a/_locales/sv/messages.json b/_locales/sv/messages.json index fbc82e28..9c3b77fb 100644 --- a/_locales/sv/messages.json +++ b/_locales/sv/messages.json @@ -1,966 +1,925 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Rapportera ett reklamtillägg" + "filterdanish":{ + "description":"language", + "message":"Danska" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Reklamblockerande filterlistor" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Hjälp till att sprida budskapet!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Domän:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Har du en fråga eller någon ny idé?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Tillåt vitlistning av specifika YouTube-kanaler" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Hämtar... vänta!" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Ingen känd, skadlig kod hittades." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Allmänt" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"I den webbläsaren prenumererar du på samma filterlistor som du har här." + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (tar bort störande innehåll från webben)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - Klicka för meny" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ på den här sidan", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Ogiltig listadress. Den kommer att tas bort." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Surfa till sidan med reklamtillägget, i den webbläsaren." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Polska" }, - "filterswedish":{ - "description":"A filter list", - "message":"Svenska" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Allmäna alternativ" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Nyheter i den senaste versionen? Läs i ändringsloggen!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Blockera fler reklamtillägg:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS att matcha" }, - "lang_russian":{ - "description":"language", - "message":"Ryska" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Stäng" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Betala vad du vill!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Jag vill inte leka testpilot just nu" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Prenumeration avslutad." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Visa reklamtillägg överallt utom på dessa domäner..." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Blockera ett reklamtillägg via URL" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Varning! Ett misstag här, kan resultera i att andra filter, inklusive dom officiella, kan förstöras!
Läs 'syntax-guiden' för att lära hur man skapar avancerade svart- och vitlistor." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Grekiska" + "message":"Slovakiska" }, - "filterchinese":{ - "description":"language", - "message":"Kinesiska" + "yes":{ + "description":"A positive response to a question", + "message":"Ja" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video och Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Skydd mot skadlig kod" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Finns reklamtillägget i den webbläsaren också?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Vad tror du kommer att vara sant om det här reklamtillägget varje gång du besöker sidan?" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Sista steget: Vad gör det här till ett reklamtillägg?" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Aktivera AdBlock på denna sida" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Undanta denna sida" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Tillbaka" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Rumänska" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Visa antal blockerade reklamtillägg, på AdBlock-ikonen" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Du kan dölja knappen genom att högerklicka på den och välja 'Dölj knapp'. Visa den igen under chrome://chrome/extensions." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterlatvian":{ - "description":"A filter list", - "message":"Lettiska" + "filterisraeli":{ + "description":"language", + "message":"Hebreiska" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Filterlistorna blockerar de flesta reklamtillägg på webben. Du kan också:" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Den här AdBlock-funktionen fungerar inte på denna sida eftersom den använder utdaterad teknologi. Du kan svart-/vitlista resurser manuellt, under fliken \"Anpassa\" i inställningarna." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Källkoden är fritt tillgänglig!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tjeckiska och Slovakiska" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Andra filterlistor" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Alternativ" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Din dator kan vara infekterad av skadlig kod. Klicka här för mer information." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Uppdateringar hämtas automatiskt. Du kan också uppdatera nu" + }, + "typeunknown":{ + "description":"A resource type", + "message":"okänd" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Tillåt reklam på en webbsida eller domän" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Det matchar 1 objekt på den här sidan." + "filterturkish":{ + "description":"A filter list", + "message":"Turkiska" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Dölj delar av en webbsida" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Vitlista $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Ju fler filterlistor du använder, dessto långsammare arbetar AdBlock. För många listor kan även få din webbläsare att krascha på vissa sidor. Tryck 'OK' för att prenumerera i alla fall." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Prenumerera på denna filterlista, och försök igen: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Allmäna alternativ" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Din dator kan vara infekterad av skadlig kod. Klicka här för mer information." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock avaktiveras på alla sidor som matchar:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Vi har ingen filterlista för det språket.
Försök hitta en passande lista som stöder språket $link$ eller blockera reklamen själv under fliken 'Anpassa'.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Prenumerera" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Jag är avancerad användare, visa avancerade alternativ" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Dölj knapp" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Uppdateringar hämtas automatiskt. Du kan också uppdatera nu" - }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Klick här: Uppdatera mina filter!" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Format: ~sida1.com|~sida2.se|~nyheter.sida3.org" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock är pausad." - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Det matchar $matchcount$ objekt på den här sidan.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Vi har också en sida som presenterar människorna bakom AdBlock!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Indonesiska" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Typ" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Klicka på objektet, så hjälper jag dig igenom blockeringen." }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Det finns en uppdatering för AdBlock! Gå till $here$ för att uppdatera.
Obs: om du vill få uppdateringar automatiskt, klicka bara på Safari > inställningar > Extensions > uppdateringar
och markera alternativet \"Installera uppdateringar automatiskt\".", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } + "typestylesheet":{ + "description":"A resource type", + "message":"stil-definition" }, - "filterturkish":{ - "description":"A filter list", - "message":"Turkiska" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock-uppdateringar" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Vad är detta?" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Högerklicka ett reklamtillägg på en sida för att blockera det -- eller blockera det manuellt här." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Ledsen, men AdBlock är inaktiverat på den här sidan av en av dina filterlistor." }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Anpassade filterlistor" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Vill du att AdBlock skall meddela dig när den upptäcker skadlig kod?" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Prenumerera inte på mer än du behöver -- Varje lista gör webbläsaren en liten aning långsammare! Listornas ursprung, och fler listor hittas här." + "updateddayago":{ + "description":"Label for subscription", + "message":"Uppdaterades för 1 dag sedan" }, - "typestylesheet":{ - "description":"A resource type", - "message":"stil-definition" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Den här AdBlock-funktionen fungerar inte på denna sida eftersom den använder utdaterad teknologi. Du kan svart-/vitlista resurser manuellt, under fliken \"Anpassa\" i inställningarna." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Syftet med denna fråga, är att avgöra vem som skall ta emot din rapport. Besvarar du denna fråga felaktigt, kommer rapporten att skickas till fel personer och riskerar därmed att ignoreras." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Inget filter specificerat!" }, - "filtereasylist_plus_polish":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Polska" + "message":"Tyska" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Lägg till AdBlock i högerklickmenyn" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Prenumerera på filterlistor" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Blockera det här reklamtillägget" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Grekiska" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"Uppdaterades för $hours$ timmar sedan", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, "updatedsecondsago":{ "description":"Label for subscription", "message":"Uppdaterades för $seconds$ sekunder sedan", "placeholders":{ "seconds":{ - "example":"15", - "content":"$1" + "content":"$1", + "example":"15" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Har vårt team begärt någon felinformation? Klicka här för det!" - }, - "typeobject":{ - "description":"A resource type", - "message":"interaktivt objekt" - }, - "filterhungarian":{ - "description":"language", - "message":"Ungerska" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Ogiltig listadress. Den kommer att tas bort." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"OBS! Din rapport kan komma att bli pulicerad offentligt. Håll det i minnet om du inkluderar något av privat natur." + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Osäker? Tryck bara 'Blockera'." }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Uppdatera sidan." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Surfa till sidan med reklamtillägget, i den webbläsaren." }, - "typepage":{ - "description":"A resource type", - "message":"sida" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Låt oss veta, på vår support-sida!" }, - "filterdutch":{ - "description":"language", - "message":"Nederländska" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Blockera reklamtillägg, endast på dessa sidor:" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Glöm inte att spara!" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ är $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Anpassa" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Stäng" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"För att rapportera ett reklamtillägg, måste du vara ansluten till internet." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Blockerade element:" + "buttonok":{ + "description":"OK button", + "message":"OK" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filtret är ogiltigt: $exception$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Vitlista $name$", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"OBS! Inget filter specificerat!" - }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Tillåta AdBlock att samla in anonym filteranvändning och data" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Vill du att AdBlock skall meddela dig när den upptäcker skadlig kod?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Dölj delar av en webbsida" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Visa reklamtillägg överallt utom på dessa domäner..." + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Visa antal blockerade reklamtillägg, på AdBlock-menyn" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Alternativ" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Rapportera ett reklamtillägg" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Avaktivera AdBlock på..." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgariska" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Undanta denna domän" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Anpassade filterlistor" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Blockerade tillägg:" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Blockera fler reklamtillägg:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock-anpassat filter (Rekommenderas)" + "lang_ukranian":{ + "description":"language", + "message":"Ukrainska" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Lägg till filter för andra språk: " + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Typ" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (tar bort störande innehåll från webben)" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Tilläggen som tidigare inaktiverades, har nu återaktiverats." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Domän eller url där AdBlock inte skall blockera något" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Avaktivera AdBlock på..." }, "blockurlwithtext":{ "description":"Message of the url-blocking area", "message":"Blockera URL:er innehållande den här texten" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS att matcha" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Undanta" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Om du vill dölja knappen, gå till 'opera://extensions' och markera alternativet \"Dölj verktygsfältet\". Du kan visa den igen genom att avmarkera alternativet." + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Kontrollera i Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Klicka på objektet, så hjälper jag dig igenom blockeringen." + "savebutton":{ + "description":"Save button", + "message":"Spara" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Rapportera ett tillägg på den här sidan" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Ser bra ut" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Anpassa AdBlock" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Ryska och Ukrainska" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Ingen känd, skadlig kod hittades." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Hämtar... vänta!" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Tillåta AdBlock att samla in anonym filteranvändning och data" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Varning! Ett misstag här, kan resultera i att andra filter, inklusive dom officiella, kan förstöras!
Läs 'syntax-guiden' för att lära hur man skapar avancerade svart- och vitlistor." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Fixa felet som gör att video inte spelas upp på Hulu.com (kräver omstart av webbläsaren)." }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock Support" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Finska" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Anpassa AdBlock" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Dölj knapp" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock är uppdaterad!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Reklamblockerande filterlistor" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ totalt", + "updateddaysago":{ + "description":"Label for subscription", + "message":"Uppdaterades för $days$ dagar sedan", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "days":{ + "content":"$1", + "example":"15" } } }, - "filterisraeli":{ - "description":"language", - "message":"Hebreiska" + "typeobject":{ + "description":"A resource type", + "message":"interaktivt objekt" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Ledsen, men AdBlock är inaktiverat på den här sidan av en av dina filterlistor." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Vad tror du kommer att vara sant om det här reklamtillägget varje gång du besöker sidan?" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Blockerade tillägg:" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "typemain_frame":{ + "description":"A resource type", + "message":"sida" + }, + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Koreanska" }, "undo_last_block":{ "description":"Menu entry to let the user cancel the result of running the blacklist wizard", "message":"Ångra mina blockeringar på denna domän" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Redigera filter här under, och tryck 'OK'" - }, - "updateddayago":{ - "description":"Label for subscription", - "message":"Uppdaterades för 1 dag sedan" - }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Redigera dina filter manuellt:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ på den här sidan", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Visa länk till filterlistorna" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Osäker? Tryck bara 'Blockera'." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (Rekommenderas)" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"Uppdaterades för 1 timma sedan" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Steg 1: Ta reda på vad som skall blockeras" }, - "optionsversion":{ - "description":"Version number", - "message":"Version $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Vi har också en sida som presenterar människorna bakom AdBlock!" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Ta bort från listan" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Domän:" }, - "other":{ - "description":"Multiple choice option", - "message":"Annat" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"Här" }, - "typehiding":{ + "typepopup":{ "description":"A resource type", - "message":"dold" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filterlistor" + "message":"popup" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Framträder reklamen i eller före en film eller något annat tillägg, som ett Flash-spel?" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Om du ser en annons, skicka inte en felrapport. Rapportera ett reklamtillägg!" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Andra filterlistor" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock är uppdaterad!" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"eller krom" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Uppdatera sidan." }, - "buttonblockit":{ - "description":"Block button", - "message":"Blockera" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Endast på engelska" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Slutförd!" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Du använder en gammal version av AdBlock. Gå till the extensions page, bocka i 'Programerarläge' och klicka på 'Uppdatera tillägg nu'" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Blockera ett objekt på denna sida" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock är pausad." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Jag vill inte leka testpilot just nu" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ELLERklicka bara på denna knapp, så sköter vi allt ovanstående: Inaktivera alla andra tillägg" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Nyheter i den senaste versionen? Läs i ändringsloggen!" }, - "lang_english":{ - "description":"language", - "message":"Engelska" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial filterlista (tar bort knappar för sociala medier)" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Anpassa" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Söker reklamtillägg...

Det tar bara ett ögonblick!" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Pausa AdBlock" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Jag är avancerad användare, visa avancerade alternativ" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Vill du verkligen prenumerera på filterlistan $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"I den webbläsaren prenumererar du på samma filterlistor som du har här." }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Öppna tilläggssidan för att aktivera de tillägg som tidigare inaktiverats." + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Blockera ett objekt" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Domän som skall filtreras" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Koreanska" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Varning: Du kommer att se tillägg på alla andra sidor!
Det här åsidosätter också alla andra filter för dessa sidor ." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Sida:" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Tilläggen som tidigare inaktiverades, har nu återaktiverats." }, - "foundbug":{ + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"Hittat ett fel?" + "message":"Vill se vad som får AdBlock att fungera?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Steg 1: Ta reda på vad som skall blockeras" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock-anpassat filter (Rekommenderas)" }, - "lang_czech":{ - "description":"language", - "message":"Tjeckiska" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Ju fler filterlistor du använder, dessto långsammare arbetar AdBlock. För många listor kan även få din webbläsare att krascha på vissa sidor. Tryck 'OK' för att prenumerera i alla fall." + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Vad är detta?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"eller AdBlock för Chrome" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Blockera ett objekt" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Översättning till Svenska:" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Format: ~sida1.com|~sida2.se|~nyheter.sida3.org" }, - "filterdanish":{ - "description":"language", - "message":"Danska" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video och Flash" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Redigera" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Filterlistorna blockerar de flesta reklamtillägg på webben. Du kan också:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Söker reklamtillägg...

Det tar bara ett ögonblick!" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Om du vill dölja knappen, högerklicka på Safaris verktygsfält och välj \"Anpassa verktygsfältet\". Dra sedan AdBlock-knappen bort från verktygsfältet. Du kan visa den igen genom att dra den tillbaka in i verktygsfältet." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Domän eller url där AdBlock inte skall blockera något" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Du har uppnått storleksgränsen för Dropbox. Ta bort några poster från dina anpassade eller inaktiverade filter och försök igen." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Sök efter uppdateringar (tar bara några sekunder)..." + "filterhungarian":{ + "description":"language", + "message":"Ungerska" }, - "typescript":{ - "description":"A resource type", - "message":"script" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"eller krom" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Undanta denna domän" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Prenumerera" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Uppdatera sidan med reklamen." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Betala vad du vill!" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Installera Firefox $chrome$ om du inte redan har gjort det.", + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Redigera inaktiverade filter:" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Detta är ett filterlistproblem. Rapportera det här: $link$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock-uppdateringar" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Blockerade element:" }, - "no":{ - "description":"A negative response to a question", - "message":"Nej" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"OBS! Din rapport kan komma att bli pulicerad offentligt. Håll det i minnet om du inkluderar något av privat natur." }, - "lang_ukranian":{ - "description":"language", - "message":"Ukrainska" + "typepage":{ + "description":"A resource type", + "message":"sida" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"Uppdaterades för $minutes$ minuter sedan", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ + "adstillappear":{ + "description":"Question on ad report page", + "message":"Är reklamtillägget fortfarande kvar?" + }, + "typeother":{ + "description":"A resource type", + "message":"annat" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Klick här: Uppdatera mina filter!" + }, + "filteritalian":{ "description":"language", - "message":"Franska" + "message":"Italienska" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ELLERklicka bara på denna knapp, så sköter vi allt ovanstående: Inaktivera alla andra tillägg" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Om du vill dölja knappen, gå till 'opera://extensions' och markera alternativet \"Dölj verktygsfältet\". Du kan visa den igen genom att avmarkera alternativet." + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Något gick fel vid uppdateringskontrollen." + }, + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Klicka på Safari-menyn → Alternativ → Tillägg." }, "typeobject_subrequest":{ "description":"A resource type", "message":"object_subrequest" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"Uppdaterades just nu" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Skicka" }, - "savebutton":{ - "description":"Save button", - "message":"Spara" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Sida:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Varning: Du kommer att se tillägg på alla andra sidor!
Det här åsidosätter också alla andra filter för dessa sidor ." + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Inaktivera dessa meddelanden" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Uppdatera sidan med reklamen." }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Prenumerera på filterlista..." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Prenumeration avslutad." }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"Uppdaterades för $days$ dagar sedan", + "typemedia":{ + "description":"A resource type", + "message":"audio/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"frame" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (Integritetsskydd)" + "message":"Lettiska" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Läs mer om skadlig kod" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Blockera ett objekt på denna sida" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tjeckiska och Slovakiska" + "buttonblockit":{ + "description":"Block button", + "message":"Blockera" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Du använder en gammal version av AdBlock. Gå till the extensions page, bocka i 'Programerarläge' och klicka på 'Uppdatera tillägg nu'" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Sluta blockera reklamtillägg:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock-alternativ" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Tillåt vitlistning av specifika YouTube-kanaler" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Rensa denna lista" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"På vilket språk är sidan skriven?" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial filterlista (tar bort knappar för sociala medier)" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Avaktivera alla tillägg utom AdBlock. Lämna AdBlock aktiverat." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Visa felsökningsinformation i loggen (vilket gör AdBlock långsammare)" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Du har uppnått storleksgränsen för Dropbox. Ta bort några poster från dina anpassade eller inaktiverade filter och försök igen." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Ta bort från listan" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Återaktivera AdBlock" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Vi kan inte blockera reklam i Flash och andra tillägg än. Vi väntar på stöd från webbläsaren och WebKit." }, - "filtereasylist_plus_german":{ + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" + }, + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Du kan dra i skjutreglaget för att ändra mer exakt, på vilka sidor AdBlock skall avaktiveras." + }, + "typehiding":{ + "description":"A resource type", + "message":"dold" + }, + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock är inaktiverad på denna sida." + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Framträder reklamen i eller före en film eller något annat tillägg, som ett Flash-spel?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Ryska och Ukrainska" + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Tyska" + "message":"Spanska" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Blockera det här reklamtillägget" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Varning! Detta filter blockerar alla $elementtype$-element på sidan!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"Här" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Aktivera ClickToFlash kompatibilitetsläge" }, - "yes":{ - "description":"A positive response to a question", - "message":"Ja" + "no":{ + "description":"A negative response to a question", + "message":"Nej" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Fixa felet som gör att video inte spelas upp på Hulu.com (kräver omstart av webbläsaren)." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Aktivera AdBlock på denna sida" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Undanta" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Filtret, som kan ändras på Alternativ-sidan:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"På vilket språk är sidan skriven?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Visa antal blockerade reklamtillägg, på AdBlock-ikonen" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Misslyckades!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Vill du verkligen ta bort $count$ blockering(ar) som du har skapat för $host$?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Pausa AdBlock" + }, + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Följande filter:
$filter$
har ett fel:
$message$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "message":{ + "content":"$2", + "example":"invalid filter" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typeimage":{ - "description":"A resource type", - "message":"bild" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Översättning till Svenska:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"LÄSER IN..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Högerklicka ett reklamtillägg på en sida för att blockera det -- eller blockera det manuellt här." - }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Du kan dölja knappen genom att högerklicka på den och välja 'Dölj knapp'. Visa den igen under chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumänska" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Redigera inaktiverade filter:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Något gick fel vid uppdateringskontrollen." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Om du vill dölja knappen, högerklicka på Safaris verktygsfält och välj \"Anpassa verktygsfältet\". Dra sedan AdBlock-knappen bort från verktygsfältet. Du kan visa den igen genom att dra den tillbaka in i verktygsfältet." + "lang_english":{ + "description":"language", + "message":"Engelska" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"Uppdaterades för 1 minut sedan" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Lägg till AdBlock i högerklickmenyn" }, - "typemain_frame":{ - "description":"A resource type", - "message":"sida" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"OK, du kan fortfarande blockera reklamen själv på 'Alternativ-sidan'. Tack!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "lang_russian":{ + "description":"language", + "message":"Ryska" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Vill du verkligen ta bort $count$ blockering(ar) som du har skapat för $host$?", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Du använder en gammal version av Safari. Uppgradera till senaste version för att kunna använda AdBlocks verktygsikon till att pausa AdBlock, vitlista webbsidor och rapportera reklamtillägg. Uppgradera nu." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (Integritetsskydd)" + }, + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ är $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -968,285 +927,366 @@ "description":"Link for custom subscription", "message":"Eller ange en URL:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Du använder en gammal version av Safari. Uppgradera till senaste version för att kunna använda AdBlocks verktygsikon till att pausa AdBlock, vitlista webbsidor och rapportera reklamtillägg. Uppgradera nu." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Slutförd!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Välj språk --" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Återaktivera AdBlock" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Lägg till filter för andra språk: " }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Klicka på Safari-menyn → Alternativ → Tillägg." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"LÄSER IN..." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Sluta blockera reklamtillägg:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Har vårt team begärt någon felinformation? Klicka här för det!" + }, + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Skydd mot skadlig kod" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Rapportera ett tillägg på den här sidan" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Visa felsökningsinformation i loggen (vilket gör AdBlock långsammare)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Installera Firefox $chrome$ om du inte redan har gjort det.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Dra i skjutreglaget tills reklamen är korrekt blockerad, och sidan förövrigt ser använbar ut." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Du har överskridit den maximala mängden lagringsutrymme som AdBlock kan använda. Avsluta prenumerationen på en eller flera filterlistor!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"Det mest populära Chrome-tillägget, med över 40 miljoner användare! Blockerar reklamtillägg över hela webben." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Är reklamtillägget fortfarande kvar?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Hittat ett fel?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Support" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Läs mer om skadlig kod" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgariska" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Vill se vad som får AdBlock att fungera?" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Misslyckades!" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Filtret, som kan ändras på Alternativ-sidan:" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Filterlistor" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Redigera dina filter manuellt:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock avaktiveras på alla sidor som matchar:" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Följande filter:
$filter$
har ett fel:
$message$", + "filterchinese":{ + "description":"language", + "message":"Kinesiska" + }, + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filtret är ogiltigt: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"popup" - }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Dra i skjutreglaget tills reklamen är korrekt blockerad, och sidan förövrigt ser använbar ut." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Prenumerera på filterlista..." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Typ" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Öppna tilläggssidan för att aktivera de tillägg som tidigare inaktiverats." }, - "lang_slovak":{ - "description":"language", - "message":"Slovakiska" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Inaktivera dessa meddelanden" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Prenumerera på filterlistor" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Det matchar $matchcount$ objekt på den här sidan.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Finns reklamtillägget i den webbläsaren också?" + "updatedhourago":{ + "description":"Label for subscription", + "message":"Uppdaterades för 1 timma sedan" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Undanta denna sida" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Blockera reklamtillägg, endast på dessa sidor:" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Välj språk --" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Låt oss veta, på vår support-sida!" + "filtereasylist_plus_french":{ + "description":"language", + "message":"Franska" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Sista steget: Vad gör det här till ett reklamtillägg?" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Indonesiska" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Du har överskridit den maximala mängden lagringsutrymme som AdBlock kan använda. Avsluta prenumerationen på en eller flera filterlistor!" + "typeimage":{ + "description":"A resource type", + "message":"bild" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Vi kan inte blockera reklam i Flash och andra tillägg än. Vi väntar på stöd från webbläsaren och WebKit." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Redigera" }, - "buttonok":{ - "description":"OK button", - "message":"OK" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Kunde inte hämta detta filter!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"OK, du kan fortfarande blockera reklamen själv på 'Alternativ-sidan'. Tack!" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ totalt", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "tabgeneral":{ + "tabsupport":{ "description":"A tab on the options page", - "message":"Allmänt" + "message":"Support" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Blockera ett reklamtillägg via URL" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "buttoncancel":{ + "description":"Cancel button", + "message":"Avbryt" }, - "typeother":{ - "description":"A resource type", - "message":"annat" + "savereminder":{ + "description":"Reminder to press save", + "message":"Glöm inte att spara!" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Skicka" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Inget filter specificerat!" + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "optionsversion":{ + "description":"Version number", + "message":"Version $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"okänd" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "filtereasylist_plus_finnish":{ + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Syftet med denna fråga, är att avgöra vem som skall ta emot din rapport. Besvarar du denna fråga felaktigt, kommer rapporten att skickas till fel personer och riskerar därmed att ignoreras." + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Vill du verkligen prenumerera på filterlistan $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Källkoden är fritt tillgänglig!" + }, + "filterdutch":{ "description":"language", - "message":"Finska" + "message":"Nederländska" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Redigera filter här under, och tryck 'OK'" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock är inaktiverad på denna sida." + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Det finns en uppdatering för AdBlock! Gå till $here$ för att uppdatera.
Obs: om du vill få uppdateringar automatiskt, klicka bara på Safari > inställningar > Extensions > uppdateringar
och markera alternativet \"Installera uppdateringar automatiskt\".", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"audio/video" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Det matchar 1 objekt på den här sidan." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japanska" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Detta är ett filterlistproblem. Rapportera det här: $link$", + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Rensa denna lista" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"Uppdaterades för $hours$ timmar sedan", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Avaktivera alla tillägg utom AdBlock. Lämna AdBlock aktiverat." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Tillbaka" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Visa länk till filterlistorna" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Endast på engelska" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"Avbryt" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock-alternativ" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Hjälp till att sprida budskapet!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Du kan dra i skjutreglaget för att ändra mer exakt, på vilka sidor AdBlock skall avaktiveras." + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock har blockerat en nedladdning från en plats, känd för skadlig kod." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Kontrollera i Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Prenumerera inte på mer än du behöver -- Varje lista gör webbläsaren en liten aning långsammare! Listornas ursprung, och fler listor hittas här." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Aktivera ClickToFlash kompatibilitetsläge" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Sök efter uppdateringar (tar bara några sekunder)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Prenumerera på denna filterlista, och försök igen: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Annat" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Domän som skall filtreras" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"Uppdaterades just nu" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"Uppdaterades för $minutes$ minuter sedan", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"För att rapportera ett reklamtillägg, måste du vara ansluten till internet." + "lang_czech":{ + "description":"language", + "message":"Tjeckiska" }, - "filtereasylist":{ + "filterswedish":{ "description":"A filter list", - "message":"EasyList (Rekommenderas)" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "message":"Svenska" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Kunde inte hämta detta filter!" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock Support" }, - "filteritalian":{ - "description":"language", - "message":"Italienska" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Typ" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Spanska" + "typesubdocument":{ + "description":"A resource type", + "message":"frame" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Ser bra ut" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"Uppdaterades för 1 minut sedan" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Om du ser en annons, skicka inte en felrapport. Rapportera ett reklamtillägg!" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Har du en fråga eller någon ny idé?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - Klicka för meny" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"OBS! Inget filter specificerat!" } } \ No newline at end of file diff --git a/_locales/tr/messages.json b/_locales/tr/messages.json index e2014e0a..d023906c 100644 --- a/_locales/tr/messages.json +++ b/_locales/tr/messages.json @@ -1,966 +1,925 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Reklam bildirme" + "filterdanish":{ + "description":"language", + "message":"Danimarkaca" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Reklam Engelleme Filtre Listeleri" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Lütfen AdBlock'u daha fazla kişiye ulaştırmama yardım edin!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Site:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"Yeni bir fikriniz ya da bir sorunuz mu var?" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Belirli Youtube kanallarını beyaz listeye eklemeye izin ver" + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "fetchinglabel":{ + "description":"Status label", + "message":"Yükleniyor... lütfen bekleyin." }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Bilinen bir zararlı yazılım bulunamadı." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Genel" }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Bu tarayıcıda, burada sahip olduğunuz aynı filtrelere abone olun." + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (web'deki can sıkıcı şeyleri kaldırır)" }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - ayrıntılar için tıklayın" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"Bu sayfada: $count$", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Geçersiz filtre listesi linki. Bu link silinecek." }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Yüklediğiniz tarayıcıda, reklam olan bir sayfayı açın." + "filtereasylist_plus_polish":{ + "description":"language", + "message":"Lehçe" }, - "filterswedish":{ - "description":"A filter list", - "message":"İsveççe" + "generaloptions":{ + "description":"Title of first tab page", + "message":"Genel Ayarlar" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"En son sürümde ne yenilikler var? Sürüm Notları'nı inceleyin!" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Daha fazla reklam engelle:" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"Eşleşen CSS öğeleri" }, - "lang_russian":{ - "description":"language", - "message":"Rusça" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Kapat" }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"İstediğiniz kadar ödeyin!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Bunu kontrol etmek istemiyorum" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Abonelik kaldırıldı." + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Şu alan adlarındakiler hariç her yerdeki reklamları göster" }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Reklamı URL'sine göre engelle" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Dikkat: eğer burada bir hata yaparsanız, abone olduğunuz filtreler de dahil, çoğu liste tamamen bozulabilir!
Gelişmiş \"izin verilenler\" ve \"engellenenler\" listesi oluşturmak için lütfen filtre sözdizimi kuralları bölümünü okuyun." }, - "filtereasylist_plus_greek":{ + "lang_slovak":{ "description":"language", - "message":"Yunanca" + "message":"Slovakça" }, - "filterchinese":{ - "description":"language", - "message":"Çince" + "yes":{ + "description":"A positive response to a question", + "message":"Evet" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video ve Flash" + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "filtermalware":{ - "description":"A filter list", - "message":"Zararlı yazılımlara karşı koruma" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Reklam o tarayıcıda da görünüyor mu?" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Bu sayfayı her ziyaret ettiğinizde hangisinin geçerli olacağını düşünüyorsunuz?" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Son adım: Bu öğeyi reklam yapan nedir?" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Bu sayfada AdBlock'u etkinleştir" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Bu sayfada AdBlock'u durdur" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Geri" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filtereasylist_plus_romanian":{ + "description":"language", + "message":"Rumence" }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"AdBlock düğmesi üzerinde kaç tane reklamın engellendiğini göster" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Düğmeyi gizlemek için, sağ tıklayıp 'Düğmeyi gizle'yi seçin. Tekrar görünmesi için adres çubuğundan; chrome://chrome/extensions." }, - "catblock_whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "filterlatvian":{ - "description":"A filter list", - "message":"Letonca" + "filterisraeli":{ + "description":"language", + "message":"İbranice" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Filtre listeleri web sitelerindeki çoğu reklamı engeller. Ayrıca şunları da yapabilirsiniz:" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"AdBlock'un bu özelliği buradaki sitede çalışmıyor çünkü bu site eskimiş bir teknoloji kullanıyor. Seçenekler sayfasındaki 'Özelleştir' seçeneğini kullanarak kaynakları izin verilenlere veya engellenenlere kendiniz ekleyebilirsiniz." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Kaynak kodu serbestçe kullanılabilir!" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Çekçe ve Slovakça" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Diğer Filtre Listeleri" + }, + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Seçenekler" + }, + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Bilgisayarınıza kötü amaçlı yazılımlar bulaşmış olabilir. Daha çok bilgi için buraya tıklayın." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Güncellemeler otomatik olarak yüklenecek; siz de şimdi güncelle butonunu kullanarak güncelleyebilirsiniz" + }, + "typeunknown":{ + "description":"A resource type", + "message":"bilinmeyen" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"Bir web sayfasındaki ya da alan adındaki reklamları göster" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Bu sayfada 1 benzer öğe bulundu." + "filterturkish":{ + "description":"A filter list", + "message":"Türkçe" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Web sayfasının bir bölümünü sakla" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Bu kanala izin verin : $name$", + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"Ne kadar çok filtre listesi kullanırsanız, AdBlock o kadar yavaşlar. Çok fazla liste kullanmak bazı sitelerde tarayıcınızın çökmesine bile sebep olabilir. Bu listeyi yine de eklemek istiyorsanız Tamam'a basın." + }, + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Bu filtreye abone olup, tekrar deneyin: $list_title$", "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Genel Ayarlar" - }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Bilgisayarınıza kötü amaçlı yazılımlar bulaşmış olabilir. Daha çok bilgi için buraya tıklayın." - }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock şu durumlarla eşleşen sayfalarda çalışmayacak:" - }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"Bu dil için varsayılan bir filtre listemiz yok.
Lütfen bu dili destekleyen uygun bir liste bulmaya çalışın ya da $link$ \"Özelleştir\" seçeneğini kullanarak bu reklamı kendiniz için engelleyin.", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Abone ol" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Tecrübeli bir kullanıcıyım, bana gelişmiş seçenekleri göster" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Bu düğmeyi gizle" - }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Güncellemeler otomatik olarak yüklenecek; siz de şimdi güncelle butonunu kullanarak güncelleyebilirsiniz" - }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Buraya tıklayın: Filtrelerimi güncelleştir!" - }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Biçim: ~site1.com|~site2.com|~haberler.site3.org" - }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock duraklatıldı." - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Bu sayfada $matchcount$ benzer öğe bulundu.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"AdBlock'un arkasında kimlerin olduğunu öğrenmeniz için bir sayfamız da var!" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Endonezce" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Tip" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Reklamı tıklatın, ve engelleme seçeneklerini görün." }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock için bir güncelleme var! $here$ güncelleyebilirsiniz.
Not: Eğer güncellemeleri otomatik olarak almak isterseniz, Safari > Preferences > Extensions > Updates
yolunu takip ederek 'install updates automatically' seçeneğini işaretleyin.", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } + "typestylesheet":{ + "description":"A resource type", + "message":"stil tanımı" }, - "filterturkish":{ - "description":"A filter list", - "message":"Türkçe" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock güncellemeleri" }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Bu nedir?" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Reklamı engellemek için sağ tıklayın -- ya da buradan manuel olarak engelleyin." }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Üzgünüm, Filtre listelerinizden biri AdBlock'u bu sayfada kapatmak için ayarlanmış." }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Özelleştirilmiş Filtre Listeleri" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"AdBlock kötü amaçlı yazılım algıladığında size bildirsin mi?" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"İhtiyacınız olmayan filtrelere abone olmayın -- her biri AdBlock'u biraz daha yavaşlatır. \"Emeği geçenler\" listeleri ve daha fazlası buradan görülebilir." + "updateddayago":{ + "description":"Label for subscription", + "message":"1 gün önce güncelleştirildi" }, - "typestylesheet":{ - "description":"A resource type", - "message":"stil tanımı" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"AdBlock'un bu özelliği buradaki sitede çalışmıyor çünkü bu site eskimiş bir teknoloji kullanıyor. Seçenekler sayfasındaki 'Özelleştir' seçeneğini kullanarak kaynakları izin verilenlere veya engellenenlere kendiniz ekleyebilirsiniz." + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Bu sorunun amacı bildiriminizi kimin alacağını belirlemek içindir. Eğer bu soruyu yanlış yanıtlarsanız, bildiriminiz yanlış insanlara ulaşıp, dikkate alınmayabilir." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Filtre tanımlanmamış." }, - "filtereasylist_plus_polish":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"Lehçe" + "message":"Almanca" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Sağ tıklama menüsüne AdBlock seçeneklerini ekle" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Filtrelere abone olun" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Bu reklamı engelle" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Yunanca" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"$hours$ saat önce güncelleştirildi.", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, "updatedsecondsago":{ "description":"Label for subscription", "message":"$seconds$ saniye önce güncelleştirildi", "placeholders":{ "seconds":{ - "example":"15", - "content":"$1" + "content":"$1", + "example":"15" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Ekibimiz sizden hata ayıklama bilgileri mi istedi? Onun için buraya tıklayın!" - }, - "typeobject":{ - "description":"A resource type", - "message":"etkileşimli öğe" - }, - "filterhungarian":{ - "description":"language", - "message":"Macarca" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Geçersiz filtre listesi linki. Bu link silinecek." - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Not: Bildiriminiz halka açık bir şekilde görünebilir. Gizlilik içerebilecek bir bilgi dahil etmeden önce bunu göz önünde bulundurun." + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"Emin değil misiniz? Sadece \"Engelle!\" tuşuna basın." }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Sayfayı yeniden yükle." + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Yüklediğiniz tarayıcıda, reklam olan bir sayfayı açın." }, - "typepage":{ - "description":"A resource type", - "message":"sayfa" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Destek sitemize bildirin!" }, - "filterdutch":{ - "description":"language", - "message":"Flemenkçe" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Sadece bu sitelerdeki reklamları engelle:" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Kaydetmeyi unutmayın!" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ olacak $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Özelleştir" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Kapat" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Bir reklam bildirmek için internete bağlı olmanız gerekir." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Engellenen öğe:" + "buttonok":{ + "description":"OK button", + "message":"Tamam!" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Filtre geçersiz: $exception$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Bu kanala izin verin : $name$", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Dikkat: hiç filtre tanımlanmamış!" - }, - "datacollectionoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"AdBlock'un anonim olarak filtre listesi kullanımı ve verilerini toplamasına izin ver" - }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"AdBlock kötü amaçlı yazılım algıladığında size bildirsin mi?" - }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Web sayfasının bir bölümünü sakla" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Şu alan adlarındakiler hariç her yerdeki reklamları göster" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"AdBlock menüsünde kaç tane reklamın engellendiğini göster" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Seçenekler" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Reklam bildirme" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"AdBlock'u şu sitelerde kullanma..." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Bulgarca" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Bu alan adındaki sayfalarda çalışma" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Özelleştirilmiş Filtre Listeleri" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Engellenmiş Reklamlar:" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Daha fazla reklam engelle:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock özel filtreleri (tavsiye edilir)" + "lang_ukranian":{ + "description":"language", + "message":"Ukraynaca" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Başka diller için filtre ekle: " + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Tip" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (web'deki can sıkıcı şeyleri kaldırır)" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Daha önce devre dışı bıraktığınız uzantılar tekrar etkinleştirildi." + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"AdBlock'un çalışmasını istemediğiniz sayfa ve alan adları" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"AdBlock'u şu sitelerde kullanma..." }, "blockurlwithtext":{ "description":"Message of the url-blocking area", "message":"Şu metni içeren URL'leri engelle" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"Eşleşen CSS öğeleri" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"İstisna" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Düğmeyi gizlemek için, opera://eklentiler'e gidip 'Araç çubuğundan kaldır' seçeneğini işaretleyin. Yine bu seçeneğin işaretini kaldırarak görünmesini sağlayabilirsiniz." + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Firefox $chrome$ için reklamın görünüp görünmediğini kontrol edin.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Reklamı tıklatın, ve engelleme seçeneklerini görün." + "savebutton":{ + "description":"Save button", + "message":"Kaydet" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Bu sayfada bir reklam bildir" + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"İyi görünüyor" }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"AdBlock'u özelleştir" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Rusça ve Ukraynaca" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Bilinen bir zararlı yazılım bulunamadı." }, - "fetchinglabel":{ - "description":"Status label", - "message":"Yükleniyor... lütfen bekleyin." + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"AdBlock'un anonim olarak filtre listesi kullanımı ve verilerini toplamasına izin ver" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Dikkat: eğer burada bir hata yaparsanız, abone olduğunuz filtreler de dahil, çoğu liste tamamen bozulabilir!
Gelişmiş \"izin verilenler\" ve \"engellenenler\" listesi oluşturmak için lütfen filtre sözdizimi kuralları bölümünü okuyun." + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Hulu.com videolarının oynatılmaması sorununu çöz (tarayıcınızı tekrar başlatmayı gerektirir)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock Destek" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Fince" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"AdBlock'u özelleştir" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Bu düğmeyi gizle" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock güncel!" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Reklam Engelleme Filtre Listeleri" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"Toplam: $count$", + "updateddaysago":{ + "description":"Label for subscription", + "message":"$days$ gün önce güncelleştirildi", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "days":{ + "content":"$1", + "example":"15" } } }, - "filterisraeli":{ - "description":"language", - "message":"İbranice" + "typeobject":{ + "description":"A resource type", + "message":"etkileşimli öğe" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Üzgünüm, Filtre listelerinizden biri AdBlock'u bu sayfada kapatmak için ayarlanmış." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Bu sayfayı her ziyaret ettiğinizde hangisinin geçerli olacağını düşünüyorsunuz?" }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Engellenmiş Reklamlar:" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "typemain_frame":{ + "description":"A resource type", + "message":"sayfa" + }, + "filtereasylist_plun_korean":{ + "description":"language", + "message":"Korece" }, "undo_last_block":{ "description":"Menu entry to let the user cancel the result of running the blacklist wizard", "message":"Bu alan adında yaptığım engellemeleri geri al" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Lütfen eklemek istediğiniz filtreyi yazın ve OK tuşuna basın." - }, - "updateddayago":{ - "description":"Label for subscription", - "message":"1 gün önce güncelleştirildi" - }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Filtrelerinizi elle düzenleyin:" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"Bu sayfada: $count$", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Filtre listeleri için linkleri göster" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"Emin değil misiniz? Sadece \"Engelle!\" tuşuna basın." + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (tavsiye edilir)" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1 saat önce güncelleştirildi" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"İlk Adım: Nelerin engelleneceğini belirle" }, - "optionsversion":{ - "description":"Version number", - "message":"Sürüm $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"AdBlock'un arkasında kimlerin olduğunu öğrenmeniz için bir sayfamız da var!" }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Listeden sil" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Site:" }, - "other":{ - "description":"Multiple choice option", - "message":"Diğer" + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"buradan" }, - "typehiding":{ + "typepopup":{ "description":"A resource type", - "message":"gizlenen" - }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Filtre listeleri" + "message":"açılan pencere" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Reklam bir video başlamadan önce, video oynatılırken ya da Flash oyunu gibi bir eklentide mi görünüyor?" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Bir reklam görüyorsanız, hata raporu göndermek yerine reklamı bildirin!" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Diğer Filtre Listeleri" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock güncel!" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"ya da Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Sayfayı yeniden yükle." }, - "buttonblockit":{ - "description":"Block button", - "message":"Engelle!" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Yalnızca İngilizce" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Tamamlandı!" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"AdBlock'un eski bir sürümünü kullanıyorsunuz. Lütfen uzantılar sayfası, 'Geliştirici modu' ve 'Uzantıları şimdi güncelle' seçeneklerini kullanarak güncelleme yapın." }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Bu sayfadaki bir reklamı engelleyin" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock duraklatıldı." }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Bunu kontrol etmek istemiyorum" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"VEYA bu tuşa tıklayarak hepsini sizin yerinize yapmamızı sağlayabilirsiniz: Tüm diğer eklentileri devre dışı bırak" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"En son sürümde ne yenilikler var? Sürüm Notları'nı inceleyin!" }, - "lang_english":{ - "description":"language", - "message":"İngilizce" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisosyal filtre listesi (sosyal medya düğmelerini kaldırır)" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Özelleştir" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"Reklamlar bulunuyor..

Bu sadece bir kaç saniye sürecek." }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"AdBlock'u duraklat" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Tecrübeli bir kullanıcıyım, bana gelişmiş seçenekleri göster" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"$title$ filtre listesine abone olmak istiyor musunuz?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Bu tarayıcıda, burada sahip olduğunuz aynı filtrelere abone olun." }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Devre dışı bıraktığınız uzantıları etkinleştirmek için uzantılar sayfasını açın." + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Bir reklam engelle" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Sayfanın bulunduğu alan adında uygulanacak" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"Korece" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Dikkat: bu sitelerin dışında tüm sitelerde reklamları görebileceksiniz!
Kullandığınız filtreler bu siteler dışında geçersiz olacak." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Sayfa:" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Daha önce devre dışı bıraktığınız uzantılar tekrar etkinleştirildi." }, - "foundbug":{ + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" + }, + "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", - "message":"Bir hata mı buldunuz?" + "message":"AdBlock'un çalışmasını sağlayan şeyleri görmek ister misiniz?" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"İlk Adım: Nelerin engelleneceğini belirle" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock özel filtreleri (tavsiye edilir)" }, - "lang_czech":{ - "description":"language", - "message":"Çekce" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"Ne kadar çok filtre listesi kullanırsanız, AdBlock o kadar yavaşlar. Çok fazla liste kullanmak bazı sitelerde tarayıcınızın çökmesine bile sebep olabilir. Bu listeyi yine de eklemek istiyorsanız Tamam'a basın." + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Bu nedir?" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"ya da Chrome için AdBlock" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Bir reklam engelle" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Çeviri:" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Biçim: ~site1.com|~site2.com|~haberler.site3.org" }, - "filterdanish":{ - "description":"language", - "message":"Danimarkaca" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typesub_frame":{ - "description":"A resource type", - "message":"çerçeve" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video ve Flash" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Düzenle" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Filtre listeleri web sitelerindeki çoğu reklamı engeller. Ayrıca şunları da yapabilirsiniz:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"Reklamlar bulunuyor..

Bu sadece bir kaç saniye sürecek." + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Bu düğmeyi gizlemek için, Safari araç çubuğuna sağ tıklayın ve Araç çubuğunu Özelleştir'i seçin. Daha sonra AdBlock düğmesini araç çubuğundan sürükleyerek çıkarın. Tekrar araç çubuğuna sürükleyerek görünmesini sağlayabilirsiniz." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"AdBlock'un çalışmasını istemediğiniz sayfa ve alan adları" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"Size sunulan Dropbox boyut sınırını aştınız. Lütfen özelleştirilmiş veya engelli filtre listelerindeki birkaç girdiyi silip tekrar deneyin." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Güncelleştirmeler denetleniyor(sadece birkaç saniye sürer)..." + "filterhungarian":{ + "description":"language", + "message":"Macarca" }, - "typescript":{ - "description":"A resource type", - "message":"komut" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"ya da Chrome" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Bu alan adındaki sayfalarda çalışma" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Abone ol" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Reklam içeren bir sayfayı yenileyin" + "pwyw":{ + "description":"Text of a payment request link", + "message":"İstediğiniz kadar ödeyin!" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Eğer zaten yüklü değilse, Firefox $chrome$ yükleyin.", + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Engelli filtreleri düzenleyin:" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Bu bir filtre listesi problemi. $link$ adresine bildirin", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock güncellemeleri" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Engellenen öğe:" }, - "no":{ - "description":"A negative response to a question", - "message":"Hayır" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Not: Bildiriminiz halka açık bir şekilde görünebilir. Gizlilik içerebilecek bir bilgi dahil etmeden önce bunu göz önünde bulundurun." }, - "lang_ukranian":{ - "description":"language", - "message":"Ukraynaca" + "typepage":{ + "description":"A resource type", + "message":"sayfa" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$ dakika önce güncelleştirildi", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "example":{ + "content":"346406" } } }, - "filtereasylist_plus_french":{ + "adstillappear":{ + "description":"Question on ad report page", + "message":"Reklam hala görünüyor mu?" + }, + "typeother":{ + "description":"A resource type", + "message":"diğer" + }, + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Buraya tıklayın: Filtrelerimi güncelleştir!" + }, + "filteritalian":{ "description":"language", - "message":"Fransızca" + "message":"İtalyanca" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"VEYA bu tuşa tıklayarak hepsini sizin yerinize yapmamızı sağlayabilirsiniz: Tüm diğer eklentileri devre dışı bırak" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Düğmeyi gizlemek için, opera://eklentiler'e gidip 'Araç çubuğundan kaldır' seçeneğini işaretleyin. Yine bu seçeneğin işaretini kaldırarak görünmesini sağlayabilirsiniz." + }, + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Güncelleştirmeleri denetlerken bir şeyler ters gitti." + }, + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Safari menüsünü kullanarak; Tercihler → Uzantılar'a gidin." }, "typeobject_subrequest":{ "description":"A resource type", "message":"öğe_altistemi" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"şimdi güncellendi" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Gönder" }, - "savebutton":{ - "description":"Save button", - "message":"Kaydet" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Sayfa:" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Dikkat: bu sitelerin dışında tüm sitelerde reklamları görebileceksiniz!
Kullandığınız filtreler bu siteler dışında geçersiz olacak." + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Bu bildirimleri devre dışı bırak" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Reklam içeren bir sayfayı yenileyin" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Filtre listelerine abone olunuyor..." + "unsubscribedlabel":{ + "description":"Status label", + "message":"Abonelik kaldırıldı." }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$ gün önce güncelleştirildi", + "typemedia":{ + "description":"A resource type", + "message":"ses/video" + }, + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"çerçeve" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (gizlilik koruması)" + "message":"Letonca" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Kötü amaçlı yazılım hakkında daha fazla bilgi edinin" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Bu sayfadaki bir reklamı engelleyin" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Çekçe ve Slovakça" + "buttonblockit":{ + "description":"Block button", + "message":"Engelle!" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"AdBlock'un eski bir sürümünü kullanıyorsunuz. Lütfen uzantılar sayfası, 'Geliştirici modu' ve 'Uzantıları şimdi güncelle' seçeneklerini kullanarak güncelleme yapın." + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Şu reklamları engellemeyi durdur:" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock Ayarları" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Belirli Youtube kanallarını beyaz listeye eklemeye izin ver" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Bu listeyi temizle" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Bu sayfa hangi dilde yazılmış?" }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisosyal filtre listesi (sosyal medya düğmelerini kaldırır)" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"AdBlock hariç, tüm eklentilerin yanında bulunan \"Etkinleştirildi\" işaretini kaldırın. AdBlock'u açık bırakın." }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Konsol Günlüğünde hata ayıklama bilgilerini göster (AdBlock'u yavaşlatır)" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"Size sunulan Dropbox boyut sınırını aştınız. Lütfen özelleştirilmiş veya engelli filtre listelerindeki birkaç girdiyi silip tekrar deneyin." + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Listeden sil" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Tekrar başlat" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Flash ve diğer eklentiler içinde bulunan reklamları henüz engelleyemiyoruz. Tarayıcı ve Webkit'in bu konuda desteğini bekliyoruz." }, - "filtereasylist_plus_german":{ + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" + }, + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Aşağı kaydırarak AdBlock'un tam olarak hangi sayfalarda çalışıp çalışmayacağını değiştirebilirsiniz" + }, + "typehiding":{ + "description":"A resource type", + "message":"gizlenen" + }, + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock bu sayfada kapatılmıştır." + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Reklam bir video başlamadan önce, video oynatılırken ya da Flash oyunu gibi bir eklentide mi görünüyor?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Rusça ve Ukraynaca" + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Almanca" + "message":"İspanyolca" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Bu reklamı engelle" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"Dikkat: bu filtre sayfadaki tüm $elementtype$ öğelerini engelleyecek!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"buradan" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"ClickToFlash uyumluluk modunu etkinleştir" }, - "yes":{ - "description":"A positive response to a question", - "message":"Evet" + "no":{ + "description":"A negative response to a question", + "message":"Hayır" }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Hulu.com videolarının oynatılmaması sorununu çöz (tarayıcınızı tekrar başlatmayı gerektirir)" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Bu sayfada AdBlock'u etkinleştir" }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"İstisna" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Ayarlar bölümünden değiştirilebilecek filtre:" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Bu sayfa hangi dilde yazılmış?" + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"AdBlock düğmesi üzerinde kaç tane reklamın engellendiğini göster" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"Başarısız!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"$host$ alan adında yaptığınız $count$ engellemeyi kaldırmak istediğinize emin misiniz?", + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"AdBlock'u duraklat" + }, + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"Bu filtre:
$filter$
bir hata ile karşılaştı:
$message$", "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" + "message":{ + "content":"$2", + "example":"invalid filter" }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "typeimage":{ - "description":"A resource type", - "message":"resim" - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Çeviri:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"YÜKLENİYOR..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Reklamı engellemek için sağ tıklayın -- ya da buradan manuel olarak engelleyin." - }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Düğmeyi gizlemek için, sağ tıklayıp 'Düğmeyi gizle'yi seçin. Tekrar görünmesi için adres çubuğundan; chrome://chrome/extensions." - }, - "filtereasylist_plus_romanian":{ - "description":"language", - "message":"Rumence" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Engelli filtreleri düzenleyin:" - }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Güncelleştirmeleri denetlerken bir şeyler ters gitti." - }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Bu düğmeyi gizlemek için, Safari araç çubuğuna sağ tıklayın ve Araç çubuğunu Özelleştir'i seçin. Daha sonra AdBlock düğmesini araç çubuğundan sürükleyerek çıkarın. Tekrar araç çubuğuna sürükleyerek görünmesini sağlayabilirsiniz." + "lang_english":{ + "description":"language", + "message":"İngilizce" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1 dakika önce güncelleştirildi" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Sağ tıklama menüsüne AdBlock seçeneklerini ekle" }, - "typemain_frame":{ - "description":"A resource type", - "message":"sayfa" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Tamam, bu reklamı yine de Ayarlar menüsünü kullanarak kendiniz için engelleyebilirsiniz. Teşekkürler!" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "lang_russian":{ + "description":"language", + "message":"Rusça" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"$host$ alan adında yaptığınız $count$ engellemeyi kaldırmak istediğinize emin misiniz?", "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" } } }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Safari'nin eski bir sürümünü kullanıyorsunuz. AdBlock araç çubuğu butonunu kullanabilmek, bir web sitesine izin verebilmek ya da reklam bildirebilmek istiyorsanız, son sürüme geçin." }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (gizlilik koruması)" + }, + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" + }, + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ olacak $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -968,285 +927,366 @@ "description":"Link for custom subscription", "message":"Ya da bir URL girin:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Safari'nin eski bir sürümünü kullanıyorsunuz. AdBlock araç çubuğu butonunu kullanabilmek, bir web sitesine izin verebilmek ya da reklam bildirebilmek istiyorsanız, son sürüme geçin." + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Tamamlandı!" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"-- Dilinizi Seçin --" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Tekrar başlat" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Başka diller için filtre ekle: " }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Safari menüsünü kullanarak; Tercihler → Uzantılar'a gidin." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"YÜKLENİYOR..." }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Şu reklamları engellemeyi durdur:" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Ekibimiz sizden hata ayıklama bilgileri mi istedi? Onun için buraya tıklayın!" + }, + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + }, + "filtermalware":{ + "description":"A filter list", + "message":"Zararlı yazılımlara karşı koruma" + }, + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Bu sayfada bir reklam bildir" + }, + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Konsol Günlüğünde hata ayıklama bilgilerini göster (AdBlock'u yavaşlatır)" + }, + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Eğer zaten yüklü değilse, Firefox $chrome$ yükleyin.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Reklam düzgün bir şekilde engelleninceye ve engellenen öğe sayfa yapısını bozmayacak şekilde görüntüleninceye kadar kaydırıcıyı ilerletin." + }, + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"AdBlock'un kullanabileceği depolama alanını aştınız. Lütfen bazı filtreleri listeden silin!" }, "description2":{ "description":"Extension description in manifest. Should not exceed 132 characters.", "message":"40 milyondan fazla kullanıcısıyla en popüler Chrome eklentisi! İnternetteki tüm reklamları engeller." }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Reklam hala görünüyor mu?" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Bir hata mı buldunuz?" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Destek" + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Kötü amaçlı yazılım hakkında daha fazla bilgi edinin" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Bulgarca" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock'un çalışmasını sağlayan şeyleri görmek ister misiniz?" + "typescript":{ + "description":"A resource type", + "message":"komut" }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"Başarısız!" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Ayarlar bölümünden değiştirilebilecek filtre:" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"Filtre listeleri" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Filtrelerinizi elle düzenleyin:" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock şu durumlarla eşleşen sayfalarda çalışmayacak:" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"Bu filtre:
$filter$
bir hata ile karşılaştı:
$message$", + "filterchinese":{ + "description":"language", + "message":"Çince" + }, + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Filtre geçersiz: $exception$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "exception":{ + "content":"$1", + "example":"This filter is not supported" } } }, - "typepopup":{ - "description":"A resource type", - "message":"açılan pencere" - }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Reklam düzgün bir şekilde engelleninceye ve engellenen öğe sayfa yapısını bozmayacak şekilde görüntüleninceye kadar kaydırıcıyı ilerletin." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Filtre listelerine abone olunuyor..." }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Tip" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Devre dışı bıraktığınız uzantıları etkinleştirmek için uzantılar sayfasını açın." }, - "lang_slovak":{ - "description":"language", - "message":"Slovakça" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Bu bildirimleri devre dışı bırak" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Filtrelere abone olun" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Bu sayfada $matchcount$ benzer öğe bulundu.", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Reklam o tarayıcıda da görünüyor mu?" + "updatedhourago":{ + "description":"Label for subscription", + "message":"1 saat önce güncelleştirildi" }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Bu sayfada AdBlock'u durdur" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Sadece bu sitelerdeki reklamları engelle:" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"-- Dilinizi Seçin --" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Destek sitemize bildirin!" + "filtereasylist_plus_french":{ + "description":"language", + "message":"Fransızca" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Son adım: Bu öğeyi reklam yapan nedir?" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Endonezce" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"AdBlock'un kullanabileceği depolama alanını aştınız. Lütfen bazı filtreleri listeden silin!" + "typeimage":{ + "description":"A resource type", + "message":"resim" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Flash ve diğer eklentiler içinde bulunan reklamları henüz engelleyemiyoruz. Tarayıcı ve Webkit'in bu konuda desteğini bekliyoruz." + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Düzenle" }, - "buttonok":{ - "description":"OK button", - "message":"Tamam!" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Bu filtre kaynaktan yüklenemedi!" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Tamam, bu reklamı yine de Ayarlar menüsünü kullanarak kendiniz için engelleyebilirsiniz. Teşekkürler!" + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"Toplam: $count$", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "tabgeneral":{ + "tabsupport":{ "description":"A tab on the options page", - "message":"Genel" + "message":"Destek" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Reklamı URL'sine göre engelle" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "buttoncancel":{ + "description":"Cancel button", + "message":"İptal" }, - "typeother":{ - "description":"A resource type", - "message":"diğer" + "savereminder":{ + "description":"Reminder to press save", + "message":"Kaydetmeyi unutmayın!" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Gönder" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Filtre tanımlanmamış." + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "optionsversion":{ + "description":"Version number", + "message":"Sürüm $version$", + "placeholders":{ + "version":{ + "content":"$1", + "example":"2.0.9" + } + } }, - "typeunknown":{ - "description":"A resource type", - "message":"bilinmeyen" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "filtereasylist_plus_finnish":{ + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Bu sorunun amacı bildiriminizi kimin alacağını belirlemek içindir. Eğer bu soruyu yanlış yanıtlarsanız, bildiriminiz yanlış insanlara ulaşıp, dikkate alınmayabilir." + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"$title$ filtre listesine abone olmak istiyor musunuz?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } + }, + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Kaynak kodu serbestçe kullanılabilir!" + }, + "filterdutch":{ "description":"language", - "message":"Fince" + "message":"Flemenkçe" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Lütfen eklemek istediğiniz filtreyi yazın ve OK tuşuna basın." }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock bu sayfada kapatılmıştır." + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock için bir güncelleme var! $here$ güncelleyebilirsiniz.
Not: Eğer güncellemeleri otomatik olarak almak isterseniz, Safari > Preferences > Extensions > Updates
yolunu takip ederek 'install updates automatically' seçeneğini işaretleyin.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "typemedia":{ - "description":"A resource type", - "message":"ses/video" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Bu sayfada 1 benzer öğe bulundu." + }, + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, "filterjapanese":{ "description":"language", "message":"Japonca" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Bu bir filtre listesi problemi. $link$ adresine bildirin", + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Bu listeyi temizle" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$ saat önce güncelleştirildi.", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "hours":{ + "content":"$1", + "example":"15" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"AdBlock hariç, tüm eklentilerin yanında bulunan \"Etkinleştirildi\" işaretini kaldırın. AdBlock'u açık bırakın." + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Geri" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Filtre listeleri için linkleri göster" + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Yalnızca İngilizce" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "buttoncancel":{ - "description":"Cancel button", - "message":"İptal" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock Ayarları" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Lütfen AdBlock'u daha fazla kişiye ulaştırmama yardım edin!" + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Aşağı kaydırarak AdBlock'un tam olarak hangi sayfalarda çalışıp çalışmayacağını değiştirebilirsiniz" + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" }, "malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", "message":"AdBlock kötü amaçlı yazılım barındırdığı bilinen bir siteden başlatılan indirmeyi engelledi." }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Firefox $chrome$ için reklamın görünüp görünmediğini kontrol edin.", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"İhtiyacınız olmayan filtrelere abone olmayın -- her biri AdBlock'u biraz daha yavaşlatır. \"Emeği geçenler\" listeleri ve daha fazlası buradan görülebilir." }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"ClickToFlash uyumluluk modunu etkinleştir" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Güncelleştirmeler denetleniyor(sadece birkaç saniye sürer)..." }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Bu filtreye abone olup, tekrar deneyin: $list_title$", + "other":{ + "description":"Multiple choice option", + "message":"Diğer" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Sayfanın bulunduğu alan adında uygulanacak" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"şimdi güncellendi" + }, + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$ dakika önce güncelleştirildi", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "minutes":{ + "content":"$1", + "example":"15" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Bir reklam bildirmek için internete bağlı olmanız gerekir." + "lang_czech":{ + "description":"language", + "message":"Çekce" }, - "filtereasylist":{ + "filterswedish":{ "description":"A filter list", - "message":"EasyList (tavsiye edilir)" - }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "message":"İsveççe" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Bu filtre kaynaktan yüklenemedi!" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock Destek" }, - "filteritalian":{ - "description":"language", - "message":"İtalyanca" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Tip" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"İspanyolca" + "typesubdocument":{ + "description":"A resource type", + "message":"çerçeve" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"İyi görünüyor" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1 dakika önce güncelleştirildi" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Bir reklam görüyorsanız, hata raporu göndermek yerine reklamı bildirin!" + "typesub_frame":{ + "description":"A resource type", + "message":"çerçeve" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Yeni bir fikriniz ya da bir sorunuz mu var?" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - ayrıntılar için tıklayın" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"346406" - } - } + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Dikkat: hiç filtre tanımlanmamış!" } } \ No newline at end of file diff --git a/_locales/uk/messages.json b/_locales/uk/messages.json index 0847880b..d8089380 100644 --- a/_locales/uk/messages.json +++ b/_locales/uk/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Прикріпити знімок:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Не знайдено жодної відомої шкідливої програми." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"У цьому браузері підпишіться на той же список фільтрів, як у вас тут." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Є питання чи нова ідея?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"У тому переглядачі відкрийте сторінку із рекламою." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Параметри" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Шведською" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Блокувати більше реклами:" - }, - "lang_russian":{ - "description":"language", - "message":"Російською" + "message":"EasyList (рекомендуємо)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Підписку скасовано." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ на цій сторінці", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Китайською" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Якщо ви створили робочий фільтр за допомогою майстра \"блокування реклами\", вставте його в поле нижче:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Антисоціальний список фільтрів (прибирає кнопки соціальних мереж)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Знайшли рекламу на сторінці? Ми допоможемо вам знайти правильне місце, щоб повідомити про це!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Показати кількість заблокованих оголошень на кнопці AdBlock" + "message":"Польською" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Вихідний код знаходиться у вільному доступі!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"захопити CSS" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"оновлено хвилину тому" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Виключити" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Помилка отримання фільтру!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Мені ліньки перевіряти" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Будь ласка, перезавантажте Safari, щоб закінчити вимкнення блокування вмісту." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Заблокувати рекламу за її URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Сховати цю кнопку" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Будьте обережні: якщо тут припуститися помилки, багато інших фільтрів, включаючи офіційні, можуть працювати некоректно!
Читайте порадник із синтаксису фільтрів (англ.), аби навчитися керувати чорними та білими списками фільтрів." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"Списки оновлюватимуться автоматично, але ви можете оновити їх просто зараз" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Чи з’являється реклама на нововідкритій сторінці?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Формат: ~site1.com|~site2.com|~novyny.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Якщо ви не бажаєте бачити рекламу на зразок цієї, вам необхідно залишити фільтр Прийнятних рекламних оголошень вимкнутим." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Естонською" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Тип" + "message":"Литовською" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"З’явилося оновлення AdBlock! Перейдіть $here$, щоб оновити його.
Зауважте: якщо ви хочете отримувати автоматичні оновлення, просто натисніть на «Safari» > «Налаштування» > «Розширення» > «Оновлення»
та відзначте прапорець «Встановлювати оновлення автоматично».", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Передплатіть список фільтрів «$list_title$» та спробуйте знов.", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Що це таке?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Не підписуйтесь на більше ніж потрібно — кожен з них трохи уповільнює роботу! Першоджерела та додаткові списки Ви можете знайти тут." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Ця функція AdBlock не працює на цьому сайті, тому що він використовує застарілі технології. Ви можете додати в чорний або білий список самостійно через вкладку 'Налаштування' на сторінці налаштувань." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Польською" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Дізнайтесь більше про програму Прийнятних рекламних оголошень." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"оновлено $seconds$ секунд(и) тому", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Ваш комп'ютер може бути заражений шкідливими програмами. Натисніть тут для отримання додаткової інформації." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Показувати рекламу на веб-сторінці або домені" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Угорською" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Зауважте: ваша скарга може стати публічно доступною. Пам’ятайте про це, залишаючи будь-яку особисту інформацію." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Будь ласка, вимкніть деякі списки фільтрів. Більше інформації дивіться в Параметрах AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Словацькою" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Походження фільтру: $list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Встановіть Adblock Plus для Firefox $chrome$, якщо ви досі не маєте його.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Перепрошуємо, AdBlock вимкнено на цій сторінці одним зі списків фільтрів." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Помилка введення фільтру: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"У нас немає стандартного списку фільтрів для цієї мови.
Будь ласка, спробуйте знайти гожий список з підтримкою цієї мови $link$ або заблокуйте цю рекламу самотужки на вкладці «Налаштування».", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Увага: фільтр не вказано!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock вимкнено на цій сторінці." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Натисніть на рекламі, і я допоможу вам її позбутися." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Показувати рекламу всюди, за винятком цих доменів..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Топ фрейм" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Параметри" + "typestylesheet":{ + "description":"A resource type", + "message":"визначення стилю" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"невідомо" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Перепрошуємо, AdBlock вимкнено на цій сторінці одним зі списків фільтрів." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Заблокована реклама:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Додати фільтри для сторінок іншою мовою: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Сторонні" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Натисніть на рекламі, і я допоможу вам її позбутися." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Фільтр не вказано!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Грецькою" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Якщо Ви бачите рекламу, не відправляйте звіт про помилки, відправте звіт про рекламу !" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Ви користуєтесь старою версією AdBlock. Будь ласка, перейдіть на сторінку розширень, увімкніть «Режим розробника» та натисніть «Оновити розширення зараз»." }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Чудово! Все налаштовано." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Як Вас звуть?" }, - "other":{ - "description":"Multiple choice option", - "message":"Іншою" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Полагодити відео з Hulu.com, що не хочуть відтворюватися (потребує перезапуску вашого переглядача)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Підтримка користувачів AdBlock" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Увага: фільтр не вказано!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Налаштувати" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Знайшли рекламу на сторінці? Ми допоможемо вам знайти правильне місце, щоб повідомити про це!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Естонською" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Налаштувати AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Обов'язкова інформація відсутня або неприпустима. Будь ласка, дайте відповідь на запитання в червоних рамках." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Болгарською" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Помилка під час збереження завантаженого файлу." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Дозволений ресурс" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Будь ласка, введіть вірний фільтр та натисніть «ОК»" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Перевищено обмеження правил Блокування Вмісту" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Крок 1: З’ясуймо, що слід заблокувати" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Датською" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Не застосовувати AdBlock до..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ на цій сторінці", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Блокувати URL’и, що містять такий текст" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Закрити" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Перевірте у Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Субфрейм" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Останній крок: що робить це рекламою?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"оновлено годину тому" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Якщо Ви бачите рекламу, не відправляйте звіт про помилки, відправте звіт про рекламу !" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Корейською" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"або Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Як Вас звуть?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Найпопулярніше розширення для Chrome, яким користуються понад 40 мільйонів людей! Заблокуйте рекламу по всьому інтернету." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Ви користуєтесь застарілою версією Safari. Встановіть найновішу версію, аби користуватися кнопкою на панелі інструментів для призупинки AdBlock, занесення сайтів у білий список, та подання скарг на рекламу. Оновити зараз." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Показати всі запити" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Фінською" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Мені ліньки перевіряти" + "typescript":{ + "description":"A resource type", + "message":"скрипт" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Українською" }, - "yes":{ - "description":"A positive response to a question", - "message":"Так" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Не знайдено жодної відомої шкідливої програми." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Скасувати обмеження, запроваджені мною на цьому домені" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Будь ласка, вимкніть деякі списки фільтрів. Більше інформації дивіться в Параметрах AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Налаштувати" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Ми відписали Вас від Прийнятної Реклами, тому що Ви вимкнули блокування вмісту в Safari. Ви можете одночасно обрати лише одне. (Чому?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Призупинити AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Ми маємо сторінку, яка допоможе вам дізнатись про людей, які створили AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Ви впевнені, що бажаєте підписатися на список фільтрів $title$?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"сюди" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Де саме на цій сторінці з'являється реклама? Як це виглядає?" + "typepopup":{ + "description":"A resource type", + "message":"зринаючий" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"або AdBlock для Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Перезавантажте сторінку." }, - "typestylesheet":{ - "description":"A resource type", - "message":"визначення стилю" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Якою мовою складено цю сторінку?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock призупинено." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Бета" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Перевищено обмеження правил Блокування Вмісту" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Запустити AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Пошук реклами...

Це триватиме недовго." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock вимкнено на цій сторінці." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Домен або URL, на якому AdBlock не працюватиме" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"У цьому браузері підпишіться на той же список фільтрів, як у вас тут." }, - "typescript":{ - "description":"A resource type", - "message":"скрипт" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Заблокувати рекламу" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ загалом", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Увага: на всіх інших сайтах ви бачитимете рекламу!
Ці правила важливіші за інші фільтри для вказаних сайтів." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"З’явилося оновлення AdBlock! Перейдіть $here$, щоб оновити його.
Зауважте: якщо ви хочете отримувати автоматичні оновлення, просто натисніть на «Safari» > «Налаштування» > «Розширення» > «Оновлення»
та відзначте прапорець «Встановлювати оновлення автоматично».", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Все готово! Ми скоро зв'яжемося з Вами, найімовірніше протягом одного-двох днів, якщо це не свята. Також, знайдіть в електронній пошті лист від AdBlock. Ви знайдете там посилання на Ваш запит на нашому сайті допомоги. Якщо Ви віддаєте перевагу стежити за результатами по електронній пошті, Ви можете робити це також!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Готово!" }, - "no":{ - "description":"A negative response to a question", - "message":"Ні" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Власні фільтри AdBlock (рекомендуємо)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Щось пішло не так. Не було відпревлено жодних ресурсів. Цю сторінку буде закрито. Спробуйте перезавантажити сайт." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Тип" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Що це таке?" + }, + "filterjapanese":{ "description":"language", - "message":"Українською" + "message":"Японською" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"оновлено $minutes$ хвилин(и) тому", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Походження фільтру: $list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Ми відписали Вас від Прийнятної Реклами, тому що Ви вимкнули блокування вмісту в Safari. Ви можете одночасно обрати лише одне. (Чому?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Ви більше не підписані на список фільтрів Прийнятної реклами." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Захист від шкідливих програм" - }, - "savebutton":{ - "description":"Save button", - "message":"Зберегти" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Увага: на всіх інших сайтах ви бачитимете рекламу!
Ці правила важливіші за інші фільтри для вказаних сайтів." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Відключити ці сповіщення" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Підписка на список фільтрів..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Підписатись на список фільтрів" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Ви користуєтесь старою версією AdBlock. Будь ласка, перейдіть на сторінку розширень, увімкніть «Режим розробника» та натисніть «Оновити розширення зараз»." + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Тип фрейму: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Налаштування AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Додати фільтри для сторінок іншою мовою: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Підпадає під фільтр" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Перевірка наявності шкідливих програм, які можуть додавати рекламу:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Списки фільтрів блокують майже всю рекламу в інтернеті. Проте ви можете:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Показувати інформацію для налагодження в Журналі Консолі (уповільнює роботу AdBlock)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Щоб приховати кнопку, клацніть правою кнопкою мишки по панелі інструментів Safari і виберіть Кастомізувати Тулбар, а потім перетягніть кнопку AdBlock з панелі інструментів. Ви можете відобразити її знову, перетягнувши назад на панель інструментів." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Перевищено ліміт безкоштовного простору Dropbox. Вилучіть деякі записи з налаштованих чи вимкнених фільтрів та спробуйте ще раз." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Запустити AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Полагодити відео з Hulu.com, що не хочуть відтворюватися (потребує перезапуску вашого переглядача)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Виключити" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Вимкніть усі розширення, окрім AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Переклад українською:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"ЗАВАНТАЖЕННЯ..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Натисніть правою кнопкою миші на рекламі, щоб заблокувати її, або зробіть це тут вручну." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Додати" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Примітка: Білий список (дозволяє рекламу) на сторінці чи сайті не підтримується, коли блокування вмісту Safari увімкнено." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Ми будемо використовувати його тільки для зв'язку з Вами, якщо нам потрібно буде більше інформації." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Відредагуйте вимкнені фільтри:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Заблокований елемент:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"сторінка" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Увімкнути блокування вмісту в Safari" + "typeother":{ + "description":"A resource type", + "message":"інший" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Адреса Вашої електронної пошти?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Натисніть: Оновити мої списки фільтрів!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Щоб приховати кнопку, клацніть правою кнопкою мишки по панелі інструментів Safari і виберіть Кастомізувати Тулбар, а потім перетягніть кнопку AdBlock з панелі інструментів. Ви можете відобразити її знову, перетягнувши назад на панель інструментів." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"При обробці Вашого запиту сталася помилка." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Прихований елемент" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Щоб приховати цю кнопку, перейдіть на сторінку opera://extensions і позначте «Приховати з панелі інструментів». Кнопку можна буде повернути, знявши позначку." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"сторінка" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Сторінка:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Готово! Ми перезавантажили сторінку з рекламою. Будь ласка, перевірте чи зникла реклама на тій сторінці. Потім поверніться на цю сторінку та дайте відповіді на наступні запитання." + "buttonblockit":{ + "description":"Block button", + "message":"Заблокувати!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Введіть URL додаткового списку:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Дозволити рекламу на вподобаних вами каналах YouTube" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Ви користуєтесь застарілою версією Safari. Встановіть найновішу версію, аби користуватися кнопкою на панелі інструментів для призупинки AdBlock, занесення сайтів у білий список, та подання скарг на рекламу. Оновити зараз." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Клацніть на меню «Safari» → «Налаштування» → «Розширення»." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Припинити блокувати рекламу:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Поки що ми не маємо змоги блокувати рекламу всередині Flash або інших плаґінів. Ми очікуємо на пітримку таких технологій від веб-переглядача та рушія виведення веб-сторінок WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Заблокувати!" + "filterhungarian":{ + "description":"language", + "message":"Угорською" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Ви все ще її бачите?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Заблокувати цю рекламу" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Болгарською" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Чудово! Тепер давайте визначимо яке з розширень є причиною. Перевірте це вмикаючи розширення одне за одним. Розширення, яке поверне рекламні оголошення необхідно видалити, щоб позбавитися від реклами." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Увімкнути AdBlock на цій сторінці" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Показати кількість заблокованих оголошень на кнопці AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Невдало!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Налаштувати фільтри вручну:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Призупинити AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Італійською" - }, - "typepopup":{ - "description":"A resource type", - "message":"зринаючий" + "message":"Англійською" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Тип" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Керувати AdBlock за допомогою контекстного меню" }, - "lang_slovak":{ - "description":"language", - "message":"Словацькою" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Будь ласка, перейдіть на наш сайт підтримки." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Підписатись на список фільтрів" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Список Попереджень про видалення AdBlock (видаляє попередження про використання блокувальника реклами)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Ви можете знову увімкнути це і підтримати улюблені веб-сайти, просто оберіть \"Дозволити деяку ненав’язливу рекламу\" нижче." + "typemain_frame":{ + "description":"A resource type", + "message":"сторінка" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Чи з’являється реклама на нововідкритій сторінці?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Ви впевнені, що хочете видалити блокування, створені на $host$? Кількість створених блокувань: $count$", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Не запускати на цій сторінці" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Умовні позначення: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"оновлено $minutes$ хвилин(и) тому", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Прикріпити знімок:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Литовською" + "message":"Румунською" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Дайте нам знати на нашому сайті підтримки!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Відредагуйте вимкнені фільтри:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock призупинено." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Субфрейм" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Поки що ми не маємо змоги блокувати рекламу всередині Flash або інших плаґінів. Ми очікуємо на пітримку таких технологій від веб-переглядача та рушія виведення веб-сторінок WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Оновіть сторінку з рекламою." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Увімкнути блокування вмісту в Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Встановіть Firefox$chrome$, якщо", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Основні" + "message":"Список фільтрів" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Якщо ви не бажаєте бачити рекламу на зразок цієї, вам необхідно залишити фільтр Прийнятних рекламних оголошень вимкнутим." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Якщо ви створили робочий фільтр за допомогою майстра \"блокування реклами\", вставте його в поле нижче:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Ваш комп'ютер може бути заражений шкідливими програмами. Натисніть тут для отримання додаткової інформації." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Цей файл завеликий. Переконайтесь, що ваш файл менш ніж 10 МБ." }, - "typeother":{ - "description":"A resource type", - "message":"інший" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock не працюватиме на сторінках, що містять:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Фільтр не вказано!" + "filterchinese":{ + "description":"language", + "message":"Китайською" }, - "typeunknown":{ - "description":"A resource type", - "message":"невідомо" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Помилка введення фільтру: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Підписка на список фільтрів..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Відкрийте сторінку розширень, щоб увімкнути розширення, які раніше були відключені." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Відключити ці сповіщення" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Турецькою" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Не підписуйтесь на більше ніж потрібно — кожен з них трохи уповільнює роботу! Першоджерела та додаткові списки Ви можете знайти тут." + }, + "typesubdocument":{ "description":"A resource type", - "message":"аудіо/відео" + "message":"фрейм" }, - "filterjapanese":{ - "description":"language", - "message":"Японською" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Індонезійською" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Дозволити деяку ненав’язливу рекламу" + "typeimage":{ + "description":"A resource type", + "message":"зображення" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ загалом", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Скасувати" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Перетягніть, щоб визначити, чого саме не чіпатиме AdBlock." + "savereminder":{ + "description":"Reminder to press save", + "message":"Не забудьте зберегти!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"селектор" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Ми вимкнули блокування вмісту Safari, тому що Ви дозволити показ ненав'язливої реклами. Ви можете обрати одночасно лише одне. (Чому?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Останній крок: повідомте нам про проблему." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Перевірте у Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Ісландською" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Щоб надіслати скаргу на рекламу, потрібне підключення до інтернету." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Списки фільтрів реклами" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (рекомендуємо)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Блокувати рекламу лише на цих сайтах:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Завантажено на сторінці із доменом:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock — скарга на рекламу" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Розширення, які були раніше вимкнуті були повторно увімкнено." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Списки фільтрів реклами" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Як?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Очистити цей список" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Дозволити рекламу на вподобаних вами каналах YouTube" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Допоможіть розказати всім!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Сторонні" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (видаляє дратуючий вміст)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock — натисніть щоб побачити деталі" + "optionstitle":{ + "description":"Title for the options page", + "message":"Налаштування AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"При обробці Вашого запиту сталася помилка." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"оновлено $hours$ годин(и) тому", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"оновлено годину тому" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Українською та російською" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Перевіряю оновлення (має зайняти лиш декілька секунд)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Що нового в останній версії? Дивіться список змін!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"щойно оновлено" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Розширення, які були раніше вимкнуті були повторно увімкнено." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Натисніть правою кнопкою миші на рекламі, щоб заблокувати її, або зробіть це тут вручну." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Грецькою" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Перевірка наявності шкідливих програм, які можуть додавати рекламу:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Приховати частину веб-сторінки" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Підтримка користувачів AdBlock" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Відео та Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Тип" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Які ознаки на вашу думку найкраще характеризуватимуть цю рекламу?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Перетягуйте повзунок доти, доки реклама не зникне, проте не переборщіть." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Увімкнути AdBlock на цій сторінці" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"оновлено хвилину тому" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Назад" + "typesub_frame":{ + "description":"A resource type", + "message":"фрейм" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Списки фільтрів блокують майже всю рекламу в інтернеті. Проте ви можете:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Заблокований ресурс" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Наступні відомості будуть також включені у звіт про рекламу." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Датською" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Перевіряємо фільтр Прийнятних рекламних оголошень:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Показувати рекламу на веб-сторінці або домені" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Ви можете знову увімкнути це і підтримати улюблені веб-сайти, просто оберіть \"Дозволити деяку ненав’язливу рекламу\" нижче." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Забираємо... будь ласка, чекайте." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Неприпустимий список URL. Його буде видалено." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Основні настройки" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Зніміть позначку «Увімкнено» навпроти кожного розширення за виключенням AdBlock. Залиште AdBlock увімкненим." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"У тому переглядачі відкрийте сторінку із рекламою." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Показувати рекламу всюди, за винятком цих доменів..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Ви забули прикріпити знімок екрану! Ми не зможемо допомогти Вам не побачивши рекламу, про яку ви повідомляєте." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Під фільтр потрапляє 1 елемент на поточній сторінці." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"І вручну створити картку, а також копіювати та вставити інформацію нижче в розділ «Fill in any details you think will help us understand your issue»." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Будьте обережні: якщо тут припуститися помилки, багато інших фільтрів, включаючи офіційні, можуть працювати некоректно!
Читайте порадник із синтаксису фільтрів (англ.), аби навчитися керувати чорними та білими списками фільтрів." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Додати $name$ в білий список", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Щоб приховати цю кнопку, натисніть на неї правою кнопкою миші та оберіть «Приховати кнопку». Її можна буде повернути на сторінці chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Основні настройки" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock не працюватиме на сторінках, що містять:" + "filterisraeli":{ + "description":"language", + "message":"Івритом" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"У нас немає стандартного списку фільтрів для цієї мови.
Будь ласка, спробуйте знайти гожий список з підтримкою цієї мови $link$ або заблокуйте цю рекламу самотужки на вкладці «Налаштування».", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Ця функція AdBlock не працює на цьому сайті, тому що він використовує застарілі технології. Ви можете додати в чорний або білий список самостійно через вкладку 'Налаштування' на сторінці налаштувань." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Додати" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Чеською та словацькою" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Я досвідчений користувач, покажіть мені просунуті налаштування" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Ми вимкнули усі інші розширення. Зараз ми перезавантажимо сторінку з рекламою. Зачекайте секунду, будь ласка." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Іспанською" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Інші списки фільтрів" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Завантажено на сторінці із доменом:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"Списки оновлюватимуться автоматично, але ви можете оновити їх просто зараз" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Натисніть: Оновити мої списки фільтрів!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Показати всі запити" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Що більше списків фільтрів ви використовуєте, то повільніше працює AdBlock. На деяких сайтах надмірне використання списків може навіть призвести до аварійного завершення роботи браузера. Натисніть OK, щоб все одно підписатись на цей список." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Останній крок: що робить це рекламою?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Чудово! Все налаштовано." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Елементів під фільтром на поточній сторінці: $matchcount$.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Бета" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Ми маємо сторінку, яка допоможе вам дізнатись про людей, які створили AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Відкрити сторінку розширень." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Індонезійською" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Все готово! Ми скоро зв'яжемося з Вами, найімовірніше протягом одного-двох днів, якщо це не свята. Також, знайдіть в електронній пошті лист від AdBlock. Ви знайдете там посилання на Ваш запит на нашому сайті допомоги. Якщо Ви віддаєте перевагу стежити за результатами по електронній пошті, Ви можете робити це також!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Турецькою" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Дізнайтесь більше про програму Прийнятних рекламних оголошень." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Заблокувати рекламу" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Чи показувати сповіщення AdBlock при виявленні шкідливих програм?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Додатковий список фільтрів" + "updateddayago":{ + "description":"Label for subscription", + "message":"оновлено день тому" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL фрейму: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Мета цього питання визначити, хто має отримати вашу скаргу. Якщо ви дасте хибну відповідь, скарга потрапить не у ті руки і, у такому випадку, може бути проігнорована." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Керувати AdBlock за допомогою контекстного меню" - }, - "typeselector":{ - "description":"A resource type", - "message":"селектор" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Заблокувати цю рекламу" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Наша команда запросила деяку налагоджувальну інформацію? Натисніть тут!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Німецькою" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Не застосовувати AdBlock до..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Повідомлення про наявність реклами є добровільним. Це допоможе іншим людям, додавання до списку фільтрів заблокує рекламу кожному користувачу. Якщо ви не відчуваєте себе альтруїстом прямо зараз - це нормально. Закрийте цю сторінку та заблокуйте рекламу тільки для себе." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Це ім'я файлу занадто довге. Будь ласка, дайте Вашому файлу більш коротке ім'я." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Прихований елемент" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"оновлено $seconds$ секунд(и) тому", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Перезавантажте сторінку." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Не запускати на цій сторінці" }, - "typepage":{ - "description":"A resource type", - "message":"сторінка" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Дайте нам знати на нашому сайті підтримки!" }, - "filterdutch":{ - "description":"language", - "message":"Голландською" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Це ім'я файлу занадто довге. Будь ласка, дайте Вашому файлу більш коротке ім'я." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Не забудьте зберегти!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Готово! Ми перезавантажили сторінку з рекламою. Будь ласка, перевірте чи зникла реклама на тій сторінці. Потім поверніться на цю сторінку та дайте відповіді на наступні запитання." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Перевіряю оновлення (має зайняти лиш декілька секунд)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Всі ресурси" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Передплатіть список фільтрів «$list_title$» та спробуйте знов.", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Додати $name$ в білий список", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Чи показувати сповіщення AdBlock при виявленні шкідливих програм?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Ресурс" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Показати кількість заблокованих оголошень в меню AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Сайт:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock — скарга на рекламу" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Власні фільтри AdBlock (рекомендуємо)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Як?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Не виконувати на сторінках цього домена" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Додатковий список фільтрів" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Блокувати більше реклами:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Обов'язкова інформація відсутня або неприпустима. Будь ласка, дайте відповідь на запитання в червоних рамках." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Домен або URL, на якому AdBlock не працюватиме" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Латиською" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Ви більше не підписані на список фільтрів Прийнятної реклами." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Переконайтеся, що ви використовуєте правильний мовний фільтр(и):" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (видаляє дратуючий вміст)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"захопити CSS" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock заблокував завантаження з сайту, який містить шкідливі програми." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Щоб приховати цю кнопку, перейдіть на сторінку opera://extensions і позначте «Приховати з панелі інструментів». Кнопку можна буде повернути, знявши позначку." + "savebutton":{ + "description":"Save button", + "message":"Зберегти" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Не певні? просто натисніть «Заблокувати!» нижче." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Підпадає під фільтр" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Забираємо... будь ласка, чекайте." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Всі ресурси" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Останній крок: повідомте нам про проблему." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock оновлено до найсвіжішої версії!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Не виконувати на сторінках цього домена" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Де саме на цій сторінці з'являється реклама? Як це виглядає?" }, - "filterisraeli":{ - "description":"language", - "message":"Івритом" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Так краще" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Перетягуйте повзунок доти, доки реклама не зникне, проте не переборщіть." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Блокувати URL’и, що містять такий текст" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Дозволити AdBlock збирати інформацію про використання списку анонімного фільтра та дані" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Щоб надіслати скаргу на рекламу, потрібне підключення до інтернету." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Кількість правил списку фільтрів перевищує обмеження в 50 000 і автоматично зменшена. Будь ласка, відпишіться від деяких списків фільтрів або вимкніть блокування вмісту Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Ви впевнені, що бажаєте підписатися на список фільтрів $title$?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"оновлено день тому" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Прийнятні рекламні оголошення (рекомендуємо)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Натисніть сюди: Вимкнути Прийнятні рекламні оголошення" - }, - "optionsversion":{ - "description":"Version number", - "message":"Версія $version$", + "message":"оновлено $days$ дні(в) тому", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Видалити зі списку" + "typeobject":{ + "description":"A resource type", + "message":"інтерактивний об’єкт" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Цей файл не є зображенням. Будь ласка, завантажте файл .png, .gif, або .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Які ознаки на вашу думку найкраще характеризуватимуть цю рекламу?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Чому б Вам не відправити нам повідомлення про помилку?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Заблокована реклама:" }, - "typehiding":{ - "description":"A resource type", - "message":"приховане" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Список фільтрів" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Арабською" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Домен фрейму: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Скасувати обмеження, запроваджені мною на цьому домені" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Топ фрейм" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Налаштувати фільтри вручну:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Готово!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Крок 1: З’ясуймо, що слід заблокувати" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Ресурс" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Будь ласка, введіть вірний фільтр та натисніть «ОК»" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Заблокувати рекламу на цій сторінці" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Переклад українською:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Переконайтесь, що списки фільтрів свіжі:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock оновлено до найсвіжішої версії!" }, - "lang_english":{ - "description":"language", - "message":"Англійською" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Лише англійською мовою" }, - "filtericelandic":{ - "description":"language", - "message":"Ісландською" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"ЧИ, просто натисніть цю кнопку щоб ми зробили все що вище: Вимкнути всі інші розширення" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Відкрийте сторінку розширень, щоб увімкнути розширення, які раніше були відключені." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Що нового в останній версії? Дивіться список змін!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Домен чи сторінка для обробки" + "filterantisocial":{ + "description":"A filter list", + "message":"Антисоціальний список фільтрів (прибирає кнопки соціальних мереж)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Сторінка:" + "filtermalware":{ + "description":"A filter list", + "message":"Захист від шкідливих програм" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Знайшли помилку?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Я досвідчений користувач, покажіть мені просунуті налаштування" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Арабською" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Перевищено ліміт місця, яке для AdBlock виділяється веб-переглядачем. Будь ласка, скасуйте передплату кількох списків фільтрів!" }, - "lang_czech":{ - "description":"language", - "message":"Чеською" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Заплатіть стільки, скільки готові!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Адреса Вашої електронної пошти?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Хочете побачити, хто робить AdBlock живим?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Неприпустимий список URL. Його буде видалено." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Приховати частину веб-сторінки" }, - "typesub_frame":{ - "description":"A resource type", - "message":"фрейм" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Основні" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"або AdBlock для Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Відео та Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Чудово! Тепер давайте визначимо яке з розширень є причиною. Перевірте це вмикаючи розширення одне за одним. Розширення, яке поверне рекламні оголошення необхідно видалити, щоб позбавитися від реклами." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Змінити" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"або Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Є питання чи нова ідея?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Формат: ~site1.com|~site2.com|~novyny.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Ви забули прикріпити знімок екрану! Ми не зможемо допомогти Вам не побачивши рекламу, про яку ви повідомляєте." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Заплатіть стільки, скільки готові!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"ЧИ, просто натисніть цю кнопку щоб ми зробили все що вище: Вимкнути всі інші розширення" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Проблема у списку фільтрів. Поскаржіться тут: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Дізнатися більше про шкідливі програми" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Зауважте: ваша скарга може стати публічно доступною. Пам’ятайте про це, залишаючи будь-яку особисту інформацію." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Оновіть сторінку з рекламою." + "filteritalian":{ + "description":"language", + "message":"Італійською" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Встановіть Firefox$chrome$, якщо", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Оновлення AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Ви все ще її бачите?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Список Попереджень про видалення AdBlock (видаляє попередження про використання блокувальника реклами)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Переконайтеся, що ви використовуєте правильний мовний фільтр(и):" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Інші списки фільтрів" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Переконайтесь, що списки фільтрів свіжі:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Французькою" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Під час перевірки оновлень щось пішло не так." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Заблокований елемент:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Клацніть на меню «Safari» → «Налаштування» → «Розширення»." }, - "typeobject":{ - "description":"A resource type", - "message":"інтерактивний об’єкт" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Надіслати" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"щойно оновлено" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"оновлено $days$ дні(в) тому", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Підписку скасовано." + }, + "typemedia":{ "description":"A resource type", - "message":"фрейм" + "message":"аудіо/відео" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (для захисту приватності)" + "message":"Латиською" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Поскаржитись на рекламу на цій сторінці" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Заблокувати рекламу на цій сторінці" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Очистити цей список" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Припинити блокувати рекламу:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Німецькою" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Помилка під час збереження завантаженого файлу." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Будьте обережні: цей фільтр заблокує усі елементи $elementtype$ на цій сторінці!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Елементів під фільтром на поточній сторінці: $matchcount$.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"сюди" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Якою мовою складено цю сторінку?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Помилка отримання фільтру!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Ви впевнені, що хочете видалити блокування, створені на $host$? Кількість створених блокувань: $count$", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Перетягніть, щоб визначити, чого саме не чіпатиме AdBlock." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"зображення" + "message":"приховане" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"І вручну створити картку, а також копіювати та вставити інформацію нижче в розділ «Fill in any details you think will help us understand your issue»." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Чи з’являється ця реклама усередині чи перед початком відео, або ж у рамках якихось інших плаґінів на кшталт ігр на Flash?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Щоб приховати цю кнопку, натисніть на неї правою кнопкою миші та оберіть «Приховати кнопку». Її можна буде повернути на сторінці chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Українською та російською" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Румунською" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Під час перевірки оновлень щось пішло не так." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Ми вимкнули усі інші розширення. Зараз ми перезавантажимо сторінку з рекламою. Зачекайте секунду, будь ласка." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Дозволений ресурс" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Іспанською" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Будьте обережні: цей фільтр заблокує усі елементи $elementtype$ на цій сторінці!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Чеською та словацькою" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Увімкнути режим сумісності ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Тип фрейму: " + "no":{ + "description":"A negative response to a question", + "message":"Ні" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Оберіть якою -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Фільтр, який можна змінити на сторінці «Налаштувати»:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Встановіть Adblock Plus для Firefox $chrome$, якщо ви досі не маєте його.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Сховати цю кнопку" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Заблокований ресурс" + "other":{ + "description":"Multiple choice option", + "message":"Іншою" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Гаразд, ви все ще можете заблокувати цю рекламу лише для себе на сторінці настройок. Дякуємо!" + }, + "lang_russian":{ + "description":"language", + "message":"Російською" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Чи з’являється ця реклама усередині чи перед початком відео, або ж у рамках якихось інших плаґінів на кшталт ігр на Flash?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Чому б Вам не відправити нам повідомлення про помилку?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (для захисту приватності)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ відповідатиме $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Фільтр, який можна змінити на сторінці «Налаштувати»:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Введіть URL додаткового списку:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Наступний фільтр:
$filter$
містить помилку:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"ЗАВАНТАЖЕННЯ..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Закрити" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Наша команда запросила деяку налагоджувальну інформацію? Натисніть тут!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Блокувати рекламу лише на цих сайтах:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Перевищено ліміт місця, яке для AdBlock виділяється веб-переглядачем. Будь ласка, скасуйте передплату кількох списків фільтрів!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Кількість правил списку фільтрів перевищує обмеження в 50 000 і автоматично зменшена. Будь ласка, відпишіться від деяких списків фільтрів або вимкніть блокування вмісту Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Поскаржитись на рекламу на цій сторінці" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Дозволити AdBlock збирати інформацію про використання списку анонімного фільтра та дані" + "message":"Показувати інформацію для налагодження в Журналі Консолі (уповільнює роботу AdBlock)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Гаразд, ви все ще можете заблокувати цю рекламу лише для себе на сторінці настройок. Дякуємо!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Домен фрейму: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Найпопулярніше розширення для Chrome, яким користуються понад 40 мільйонів людей! Заблокуйте рекламу по всьому інтернету." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Знайшли помилку?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Надіслати" + "lang_czech":{ + "description":"language", + "message":"Чеською" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Цей файл не є зображенням. Будь ласка, завантажте файл .png, .gif, або .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Показати посилання на списки фільтрів" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Дозволити деяку ненав’язливу рекламу" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Шведською" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Видалити зі списку" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Оберіть якою -- " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Фінською" + "message":"Французькою" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Змінити" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Цей файл завеликий. Переконайтесь, що ваш файл менш ніж 10 МБ." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Підтримка" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Наступні відомості будуть також включені у звіт про рекламу." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Заблокувати рекламу за її URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Проблема у списку фільтрів. Поскаржіться тут: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Версія $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Зніміть позначку «Увімкнено» навпроти кожного розширення за виключенням AdBlock. Залиште AdBlock увімкненим." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Мета цього питання визначити, хто має отримати вашу скаргу. Якщо ви дасте хибну відповідь, скарга потрапить не у ті руки і, у такому випадку, може бути проігнорована." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Показати посилання на списки фільтрів" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Повідомлення про наявність реклами є добровільним. Це допоможе іншим людям, додавання до списку фільтрів заблокує рекламу кожному користувачу. Якщо ви не відчуваєте себе альтруїстом прямо зараз - це нормально. Закрийте цю сторінку та заблокуйте рекламу тільки для себе." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Лише англійською мовою" + "yes":{ + "description":"A positive response to a question", + "message":"Так" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Допоможіть розказати всім!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Вихідний код знаходиться у вільному доступі!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Голландською" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Ми будемо використовувати його тільки для зв'язку з Вами, якщо нам потрібно буде більше інформації." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Під фільтр потрапляє 1 елемент на поточній сторінці." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"оновлено $hours$ годин(и) тому", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Назад" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock заблокував завантаження з сайту, який містить шкідливі програми." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Умовні позначення: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Натисніть сюди: Вимкнути Прийнятні рекламні оголошення" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Увімкнути режим сумісності ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Домен чи сторінка для обробки" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Підтримка" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Оновлення AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Будь ласка, перейдіть на наш сайт підтримки." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Щоб призупинити AdBlock з увімкненим Блокуванням Вмісту, будь ласка, оберіть Safari (в меню) > Вподобання > Розширення > AdBlock та зніміть прапорець 'Увімкнути AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Щось пішло не так. Не було відпревлено жодних ресурсів. Цю сторінку буде закрито. Спробуйте перезавантажити сайт." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Дізнатися більше про шкідливі програми" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Сайт:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Прийнятні рекламні оголошення (рекомендуємо)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Так краще" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Щоб призупинити AdBlock з увімкненим Блокуванням Вмісту, будь ласка, оберіть Safari (в меню) > Вподобання > Розширення > AdBlock та зніміть прапорець 'Увімкнути AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Відкрити сторінку розширень." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock — натисніть щоб побачити деталі" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Вимкніть усі розширення, окрім AdBlock:" } } \ No newline at end of file diff --git a/_locales/vi/messages.json b/_locales/vi/messages.json index 229a90af..8eac2b2d 100644 --- a/_locales/vi/messages.json +++ b/_locales/vi/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"Đính kèm một ảnh chụp màn hình:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"Không tim thấy mã độc đã được nhận dạng nào." - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Trong trình duyệt khác, đăng ký danh sách bộ lọc giống như ở đây." - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"Bạn có câu hỏi hoặc một ý tưởng mới?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Trong trình duyệt đó, tải lại trang cùng với quảng cáo." + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"Tùy chọn" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"Tiếng Thụy Điển" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"Chặn thêm quảng cáo:" - }, - "lang_russian":{ - "description":"language", - "message":"Tiếng Nga" + "message":"EasyList (khuyến khích)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"Đã hủy đăng ký." + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ trên trang này", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"Tiếng Trung" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"Nếu bạn đã tạo một bộ lọc sử dụng thuật sĩ \"chặn một quảng cáo\", dán nó vào hộp dưới đây:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Danh sách bộ lọc chặn mạng xã hội (loại bỏ các nút bấm liên quan đến mạng xã hội)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"Bạn tìm thấy quảng cáo trên một trang web? Chúng tôi sẽ giúp bạn tìm thấy đúng nơi để báo cáo nó!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Hiển thị số quảng cáo bị chặn trên nút AdBlock" + "message":"Tiếng Ba Lan" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"Mã nguồn của AdBlock là hoàn toàn miễn phí!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"CSS phù hợp với" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"đã được cập nhật 1 phút trước" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"Loại trừ" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"Không thể lấy được dữ liệu của bộ lọc này!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"Tôi không muốn kiểm tra cái này" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"Vui lòng khởi động lại Safari để hoàn tất việc tắt Chặn Nội Dung." }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"Chặn quảng cáo bằng URL" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"Ẩn nút này" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"Hãy cẩn thận: Nếu bạn chỉnh sửa không chính xác, rất nhiều bộ lọc khác bao gồm cả bộ lọc chính thức cũng có thể bị lỗi!
Bạn có thể đọc thêm về cú pháp bộ lọc để biết cách chỉnh sửa bộ lọc." }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"AdBlock sẽ cập nhật bộ lọc một cách tự động; bạn cũng có thể cập nhật ngay" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Quảng cáo có xuất hiện ở trình duyệt đó không?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"Cấu trúc: ~site1.com|~site2.com|~news.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"Nếu bạn không muốn nhìn thấy những quảng cáo như này, có thể bạn sẽ muốn tắt bộ lọc Quảng Cáo Chấp Nhận Được." }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"Tiếng Estonia" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"Loại" + "message":"Tiếng Lít-va" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"Đã có bản cập nhật mới cho AdBlock! Đi đến $here$ để cập nhật.
Lưu ý: Nếu bạn muốn nhận cập nhật một cách tự động, chỉ cần nhấp chuột trên Safari > Preferences > Extensions > Updates
và tích ô tùy chọn 'Install updates automatically'.", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"Đăng ký bộ lọc này, sau đó thử lại: $list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"Đây là gì?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"Bạn chỉ nên đăng ký những bộ lọc cần thiết -- sử dụng nhiều bộ lọc sẽ làm chậm trình duyệt của bạn! Danh sách bộ lọc bạn có thể tìm thấy ở đây." - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"Tính năng này của AdBlock không hoạt động trên trang này bởi vì nó sử dụng công nghệ đã lỗi thời. Bạn có thể dùng danh sách đen hoặc danh sách trắng để chặn bằng tay trong thẻ 'Tùy Chỉnh' trên trang tùy chọn." - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"Tiếng Ba Lan" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"Tìm hiểu thêm về chương trình Quảng Cáo Chấp Nhận Được." + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"đã được cập nhật $seconds$ giây trước", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"Máy tính của bạn có thể đã bị nhiễm mã độc. Bấm vào đây để biết thêm chi tiết." }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"Hiển thị quảng cáo trên trang web hoặc tên miền này" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"Tiếng Hungari" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"Lưu ý: báo cáo của bạn có thể được công bố công khai. Hãy lưu ý điều đó trước khi bạn báo cáo điều gì đó riêng tư." - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Vui lòng tắt một vài bộ lọc. Thông tin thêm có trong tùy chọn của AdBlock." - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"Tiếng Slovakia" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"Bộ lọc gốc:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"Cài đặt Adblock Plus cho Firefox $chrome$ nếu bạn chưa có.", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Xin lỗi, AdBlock đã bị tắt trên trang này bởi một trong số các bộ lọc của bạn." - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"Bộ lọc không hợp lệ: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"Chúng tôi không có bộ lọc mặc định cho ngôn ngữ này.
Bạn vui lòng tìm kiếm bộ lọc khác có hỗ trợ ngôn ngữ này $link$ hoặc bạn có thể chặn quảng cáo này bằng tay ở thẻ 'Tùy chỉnh'.", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"Cảnh báo: Không có bộ lọc nào được chỉ định!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock đã bị tắt trên trang này." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"Nhấp vào phần quảng cáo, và tôi sẽ hướng dẫn bạn cách chặn nó." }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"Hiển thị quảng cáo ở tất cả mọi nơi trừ những tên miền này..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"Frame trên cùng" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"Tùy chọn" + "typestylesheet":{ + "description":"A resource type", + "message":"style definition" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"không rõ" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"Xin lỗi, AdBlock đã bị tắt trên trang này bởi một trong số các bộ lọc của bạn." }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"Số quảng cáo đã bị chặn:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"Thêm bộ lọc cho ngôn ngữ khác: " + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"Bên thứ ba" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"Nhấp vào phần quảng cáo, và tôi sẽ hướng dẫn bạn cách chặn nó." + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"Không có bộ lọc nào được chỉ định!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"Tiếng Hy Lạp" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"Nếu bạn thấy có quảng cáo, bạn không nên dùng báo cáo lỗi, mà hãy dùng báo cáo quảng cáo!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"Bạn đang sử dụng phiên bản cũ của AdBlock. Vui lòng đi đến tiện ích mở rộng, bật 'Chế độ dành cho nhà phát triển' và nhấp 'Cập nhật'" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"Tuyệt vời! Vậy là đã xong." + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"Bạn tên gì?" }, - "other":{ - "description":"Multiple choice option", - "message":"Khác" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"Không chạy trên Hulu nếu video không phát (yêu cầu khởi động lại trình duyệt)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"Trung tâm hỗ trợ" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"Cảnh báo: Không có bộ lọc nào được chỉ định!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"Tùy chỉnh" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"Bạn tìm thấy quảng cáo trên một trang web? Chúng tôi sẽ giúp bạn tìm thấy đúng nơi để báo cáo nó!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"Tiếng Estonia" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"Tùy chỉnh AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"Thông tin được yêu cầu còn thiếu hoặc không hợp lệ. Hãy điền vào những câu hỏi có khung màu đỏ." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"Tiếng Bulgaria" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"Lỗi lưu tập tin đã tải lên." + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"Nguồn được cho phép" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"Vui lòng nhập đúng bộ lọc dưới đây và bấm OK" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Đã vượt quá giới hạn quy tắc của Chặn Nội Dung" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"Bước 1: Chọn phần tử để chặn" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"Tiếng Đan Mạch" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Không chạy AdBlock trên..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ trên trang này", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"Chặn các URL trong văn bản này" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"Đóng" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"Kiểm tra trên Firefox $chrome$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"Frame phụ" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"Bước cuối cùng: Điều gì khiến cái này trở thành quảng cáo?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"đã được cập nhật 1 giờ trước" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"Nếu bạn thấy có quảng cáo, bạn không nên dùng báo cáo lỗi, mà hãy dùng báo cáo quảng cáo!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"Tiếng Hàn" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"hoặc Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"Bạn tên gì?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"Tiện ích phổ biến nhất trên Chrome, với trên 40 triệu người dùng! AdBlock sẽ giúp bạn chặn tất cả quảng cáo trên internet." + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"Bạn đang sử dụng phiên bản cũ của Safari. Hãy cài đặt phiên bản mới nhất để sử dụng nút AdBlock trên thanh công cụ để tạm dừng AdBlock, tạo danh sách trắng, và báo cáo quảng cáo. Nâng cấp ngay." }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"Hiển thị tất cả yêu cầu" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"Tiếng Phần Lan" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"Tôi không muốn kiểm tra cái này" + "typescript":{ + "description":"A resource type", + "message":"mã" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"Tiếng Ukraina" }, - "yes":{ - "description":"A positive response to a question", - "message":"Có" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"Không tim thấy mã độc đã được nhận dạng nào." }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"Hủy bỏ lệnh chặn của tôi trên tên miền này" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Vui lòng tắt một vài bộ lọc. Thông tin thêm có trong tùy chọn của AdBlock." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"Tùy chỉnh" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"Chúng tôi đã bỏ đăng ký bạn khỏi Quảng Cáo Chấp Nhận Được bởi vì bạn đã bật Chặn Nội Dung Safari. Bạn chỉ có thể chọn một trong hai cùng một lúc. (Tại sao?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"Tạm dừng AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"Chúng tôi cũng đã có một trang để giúp bạn tìm hiểu về những người đứng sau AdBlock!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"Bạn có chắc bạn muốn đăng ký bộ lọc $title$ không?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"đây" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"Chính xác thì quảng cáo ở đâu trên trang? Nó trông như thế nào?" + "typepopup":{ + "description":"A resource type", + "message":"popup" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"hoặc AdBlock cho Chrome" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"Tải lại trang." }, - "typestylesheet":{ - "description":"A resource type", - "message":"style definition" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"Trang đó đươc viết bằng ngôn ngữ nào?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock đã bị tạm dừng." }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"Đã vượt quá giới hạn quy tắc của Chặn Nội Dung" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"Hủy tạm dừng AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"Đang tìm quảng cáo...

Chỉ mất chút thời gian thôi." }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock đã bị tắt trên trang này." }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"Tên miền hoặc url mà AdBlock không chặn bất cứ thứ gì" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Trong trình duyệt khác, đăng ký danh sách bộ lọc giống như ở đây." }, - "typescript":{ - "description":"A resource type", - "message":"mã" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"Chặn quảng cáo" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ trong tổng số", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"Cảnh báo: trên tất cả những trang web khác bạn sẽ thấy có quảng cáo!
Điều này sẽ ghi đè tất cả các bộ lọc khác được áp dụng cho những trang này." + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"Đã có bản cập nhật mới cho AdBlock! Đi đến $here$ để cập nhật.
Lưu ý: Nếu bạn muốn nhận cập nhật một cách tự động, chỉ cần nhấp chuột trên Safari > Preferences > Extensions > Updates
và tích ô tùy chọn 'Install updates automatically'.", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"Đã xong! Chúng tôi sẽ sớm liên hệ với bạn, rất có thể là ngay trong ngày, hoặc hai ngày nếu là ngày lễ. Trong khi chờ đợi, bạn hãy tìm một email từ AdBlock. Bạn sẽ thấy một liên kết đến thẻ của bạn trên trang giúp đỡ của chúng tôi tại đó. Bạn cũng có thể theo dõi qua email nếu muốn!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"Hoàn thành!" }, - "no":{ - "description":"A negative response to a question", - "message":"Không" + "filteradblock_custom":{ + "description":"A filter list", + "message":"Bộ lọc tùy chỉnh AdBlock (khuyến khích)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"Đã xảy ra chuyện gì đó. Không có nguồn nào được gửi đi. Trang này sẽ bị đóng lại. Hãy thử tải lại trang web này." + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"Loại" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"Đây là gì?" + }, + "filterjapanese":{ "description":"language", - "message":"Tiếng Ukraina" + "message":"Tiếng Nhật" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"đã được cập nhật $minutes$ phút trước", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"Bộ lọc gốc:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"Chúng tôi đã bỏ đăng ký bạn khỏi Quảng Cáo Chấp Nhận Được bởi vì bạn đã bật Chặn Nội Dung Safari. Bạn chỉ có thể chọn một trong hai cùng một lúc. (Tại sao?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Bạn đã không còn đăng ký bộ lọc Quảng Cáo Chấp Nhận Được." - }, - "filtermalware":{ - "description":"A filter list", - "message":"Chống phần mềm độc hại" - }, - "savebutton":{ - "description":"Save button", - "message":"Lưu" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"Cảnh báo: trên tất cả những trang web khác bạn sẽ thấy có quảng cáo!
Điều này sẽ ghi đè tất cả các bộ lọc khác được áp dụng cho những trang này." - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"Vô hiệu hóa những thông báo này" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"Đang đăng ký bộ lọc..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"Đăng ký bộ lọc" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"Bạn đang sử dụng phiên bản cũ của AdBlock. Vui lòng đi đến tiện ích mở rộng, bật 'Chế độ dành cho nhà phát triển' và nhấp 'Cập nhật'" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"Kiểu frame: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"Tùy chọn AdBlock" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"Thêm bộ lọc cho ngôn ngữ khác: " }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"Khớp với bộ lọc" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"Kiểm tra phần mềm độc hại có thể chèn quảng cáo:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"Danh sách các bộ lọc đã chặn hầu hết các quảng cáo. Bạn cũng có thể:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Hiển thị báo cáo gỡ lỗi trong Console Log (sẽ làm AdBlock chậm đi)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"Để ẩn nút này, nhấp chuột phải vào thanh công cụ và chọn Customize Toolbar, sau đó kéo nút AdBlock ra khỏi thanh công cụ. Bạn có thể hiển thị nó trở lại bằng cách kéo trở lại thanh công cụ." }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"Bạn đã vượt quá giới hạn dung lượng của Dropbox. Hãy xóa một số mục khỏi bộ lọc tùy chỉnh hoặc tắt một số bộ lọc, sau đó thử lại." }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"Hủy tạm dừng AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"Không chạy trên Hulu nếu video không phát (yêu cầu khởi động lại trình duyệt)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"Loại trừ" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Vô hiệu hóa tất cả các tiện ích khác ngoại trừ AdBlock:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"Việt hóa bởi:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"ĐANG TẢI..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"Nhấp chuột phải vào quảng cáo để chặn -- hoặc chặn bằng tay ở đây." + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"Đăng ký" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"Lưu ý: Danh sách trắng (cho phép hiển thị quảng cáo) một trang hoặc địa chỉ chưa được hỗ trợ với Chặn Nội Dung Safari được bật." }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"Chúng tôi sẽ chỉ sử dụng địa chỉ này để liên hệ với bạn nếu cần thêm thông tin." - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Chỉnh sửa bộ lọc bị vô hiệu hóa:" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"Phần tử bị chặn:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"trang" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"Bật Chặn Nội Dung Safari" + "typeother":{ + "description":"A resource type", + "message":"khác" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"Địa chỉ email của bạn là gì?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"Nhấp vào đây: Cập nhật bộ lọc của tôi!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"Để ẩn nút này, nhấp chuột phải vào thanh công cụ và chọn Customize Toolbar, sau đó kéo nút AdBlock ra khỏi thanh công cụ. Bạn có thể hiển thị nó trở lại bằng cách kéo trở lại thanh công cụ." + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"Đã có lỗi khi xử lý yêu cầu của bạn." + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"Phần tử bị ẩn" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"Để ẩn nút này, đi đến opera://extensions và chọn 'Ẩn khỏi thanh cộng cụ'. Để hiển thị trở lại bạn chỉ cần bỏ chọn tùy chọn đó." }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"trang" + "message":"object_subrequest" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"Trang:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Đã xong! Chúng tôi đã tải lại trang cùng với quảng cáo. Vui lòng kiểm tra lại trang xem quảng cáo đã mất hay chưa. Sau đó quay lại trang này và trả lời những câu hỏi dưới đây." + "buttonblockit":{ + "description":"Block button", + "message":"Chặn!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"Hoặc nhập một địa chỉ:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Cho phép một số kênh YouTube trong danh sách trắng" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"Bạn đang sử dụng phiên bản cũ của Safari. Hãy cài đặt phiên bản mới nhất để sử dụng nút AdBlock trên thanh công cụ để tạm dừng AdBlock, tạo danh sách trắng, và báo cáo quảng cáo. Nâng cấp ngay." + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"Nhấp vào menu Safari chọn → Preferences → Extensions." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"Dừng chặn quảng cáo:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"Chúng tôi tạm thời không thể chặn quảng cáo bên trong Flash và các trình cắm khác. Chúng tôi đang chờ sự hỗ tợ từ các trình duyệt và WebKit." }, - "buttonblockit":{ - "description":"Block button", - "message":"Chặn!" + "filterhungarian":{ + "description":"language", + "message":"Tiếng Hungari" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"Quảng cáo vẫn còn xuất hiện phải không?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"Chặn quảng cáo này" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"Tiếng Bulgaria" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"Tuyệt vời! Bây giờ hãy tìm hiểu xem tiện ích nào là nguyên nhân gây ra quảng cáo. Bật lần lượt từng tiện ích một, tiện ích nào khi bật gây ra quảng cáo chính là tiện ích bạn cần gỡ bỏ để loại bỏ quảng cáo." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"Bật AdBlock trên trang này" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Hiển thị số quảng cáo bị chặn trên nút AdBlock" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"Thất bại!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"Chỉnh sửa bộ lọc bằng tay:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"Tạm dừng AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"Tiếng Ý" - }, - "typepopup":{ - "description":"A resource type", - "message":"popup" + "message":"Tiếng Anh" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"Loại" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Thêm AdBlock vào menu chuột phải" }, - "lang_slovak":{ - "description":"language", - "message":"Tiếng Slovakia" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Hãy vào trang web hỗ trợ của chúng tôi." }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"Đăng ký bộ lọc" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Danh sách loại bỏ cảnh báo Adblock (loại bỏ các cảnh báo về việc sử dụng trình chặn quảng cáo)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"Bạn có thể bật lại và hỗ trợ trang web bạn yêu thích bằng cách chọn \"Cho phép những quảng cáo không gây khó chịu\" dưới đây." + "typemain_frame":{ + "description":"A resource type", + "message":"trang" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"Quảng cáo có xuất hiện ở trình duyệt đó không?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"Bạn có chắc chắn muốn gõ bỏ $count$ khối quảng cáo mà bạn đã chặn trên $host$?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"Không chạy trên trang này" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"Chú thích: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"đã được cập nhật $minutes$ phút trước", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"Đính kèm một ảnh chụp màn hình:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"Tiếng Lít-va" + "message":"Tiếng Rumani" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"Hãy cho chúng tôi biết trên trang hỗ trợ của chúng tôi!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Chỉnh sửa bộ lọc bị vô hiệu hóa:" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock đã bị tạm dừng." + "subframe":{ + "description":"Resource list page: frame type", + "message":"Frame phụ" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"Chúng tôi tạm thời không thể chặn quảng cáo bên trong Flash và các trình cắm khác. Chúng tôi đang chờ sự hỗ tợ từ các trình duyệt và WebKit." + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"Tải lại trang cùng với quảng cáo." }, - "buttonok":{ - "description":"OK button", - "message":"OK!" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"Bật Chặn Nội Dung Safari" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"Cài đặt Firefox $chrome$ nếu bạn chưa cài đặt 2 trình duyệt này.", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"Tổng quan" + "message":"Danh sách bộ lọc" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"Nếu bạn không muốn nhìn thấy những quảng cáo như này, có thể bạn sẽ muốn tắt bộ lọc Quảng Cáo Chấp Nhận Được." + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"Nếu bạn đã tạo một bộ lọc sử dụng thuật sĩ \"chặn một quảng cáo\", dán nó vào hộp dưới đây:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"Máy tính của bạn có thể đã bị nhiễm mã độc. Bấm vào đây để biết thêm chi tiết." + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"Tập tin quá lớn. Hãy đảm bảo rằng tập tin của bạn nhỏ hơn 10 MB." }, - "typeother":{ - "description":"A resource type", - "message":"khác" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock sẽ không chạy trên những trang có đường dẫn này:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"Không có bộ lọc nào được chỉ định!" + "filterchinese":{ + "description":"language", + "message":"Tiếng Trung" }, - "typeunknown":{ - "description":"A resource type", - "message":"không rõ" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"Bộ lọc không hợp lệ: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"Đang đăng ký bộ lọc..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"Mở trang tiện ích mở rộng để kích hoạt lại các tiện ích mở rộng đã bị vô hiệu hóa trước đây." + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"Vô hiệu hóa những thông báo này" + }, + "filterturkish":{ + "description":"A filter list", + "message":"Tiếng Thổ Nhĩ Kỳ" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"Bạn chỉ nên đăng ký những bộ lọc cần thiết -- sử dụng nhiều bộ lọc sẽ làm chậm trình duyệt của bạn! Danh sách bộ lọc bạn có thể tìm thấy ở đây." + }, + "typesubdocument":{ "description":"A resource type", - "message":"audio/video" + "message":"frame" }, - "filterjapanese":{ - "description":"language", - "message":"Tiếng Nhật" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"Tiếng Indonesia" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"Cho phép những quảng cáo không gây khó chịu" + "typeimage":{ + "description":"A resource type", + "message":"ảnh" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ trong tổng số", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"Hủy bỏ" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"Bạn có thể di chuyển thanh trượt dưới đây để chọn chính xác những trang nào mà AdBlock sẽ không chạy." + "savereminder":{ + "description":"Reminder to press save", + "message":"Đừng quên lưu lại bộ lọc!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"chọn" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"Chúng tôi đã tắt Chặn Nội Dung Safari bởi vì bạn đã chọn cho phép những quảng cáo không gây khó chịu. Bạn chỉ có thể chọn một trong hai cùng một lúc. (Tại sao?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"Bước cuối cùng: báo cáo vấn đề cho chúng tôi." - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"Kiểm tra trên Firefox $chrome$", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"Tiếng Icecland" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"Để báo cáo một quảng cáo, bạn phải có kết nối đến internet." + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"Danh sách các bộ lọc chặn quảng cáo" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (khuyến khích)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"Chỉ chặn quảng cáo trên những trang web này:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"Tải trên trang với tên miền:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - Báo cáo một quảng cáo" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"Những tiện ích mở rộng bị vô hiệu hóa trước đây đã được kích hoạt lại." }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"Danh sách các bộ lọc chặn quảng cáo" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"Cách dùng?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"Dọn dẹp danh sách này" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Cho phép một số kênh YouTube trong danh sách trắng" + "spread_the_word":{ + "description":"Text of a share link", + "message":"Chia sẻ!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"Bên thứ ba" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances (loại bỏ những sự khó chịu trên Web)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - bấm để biết thêm chi tiết" + "optionstitle":{ + "description":"Title for the options page", + "message":"Tùy chọn AdBlock" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"Đã có lỗi khi xử lý yêu cầu của bạn." + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"đã được cập nhật $hours$ giờ trước", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"đã được cập nhật 1 giờ trước" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"Tiếng Nga và Ukraina" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"Đang kiểm tra cập nhật (chỉ mất vài giây thôi)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"Có gì mới trong phiên bản mới nhất? Xem các thay đổi!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"vừa được cập nhật" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"Những tiện ích mở rộng bị vô hiệu hóa trước đây đã được kích hoạt lại." + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"Nhấp chuột phải vào quảng cáo để chặn -- hoặc chặn bằng tay ở đây." }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"Tiếng Hy Lạp" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"Kiểm tra phần mềm độc hại có thể chèn quảng cáo:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"Ẩn một phần của trang web" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"Trung tâm hỗ trợ" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"Video và Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"Loại" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"Bạn nghĩ điều gì sẽ đúng về quảng cáo này mỗi khi bạn truy cập trang này?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"Trượt thanh trượt cho đến khi chọn đúng quảng cáo cần chặn, và các phần tử bị chặn sẽ trở nên hữu ích." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"Bật AdBlock trên trang này" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"đã được cập nhật 1 phút trước" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"Trở lại" + "typesub_frame":{ + "description":"A resource type", + "message":"frame" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"Danh sách các bộ lọc đã chặn hầu hết các quảng cáo. Bạn cũng có thể:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"Nguồn bị chặn" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"Thông tin sau sẽ được kèm theo trong báo cáo quảng cáo." }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"Tiếng Đan Mạch" }, "disableaa":{ "description":"Section header on the ad report page", "message":"Kiểm tra những bộ lọc Quảng Cáo Chấp Nhận Được:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"Hiển thị quảng cáo trên trang web hoặc tên miền này" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Bạn có thể bật lại và hỗ trợ trang web bạn yêu thích bằng cách chọn \"Cho phép những quảng cáo không gây khó chịu\" dưới đây." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"Đang lấy dữ liệu... vui lòng chờ trong giây lát." + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"Địa chỉ bộ lọc không hợp lệ. Bộ lọc sẽ bị xóa." + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"Cài đặt chung" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Bỏ chọn ô 'Đã bật' bên cạnh tất cả các tiện ích khác ngoại trừ AdBlock. Giữ AdBlock luôn bật." + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"Trong trình duyệt đó, tải lại trang cùng với quảng cáo." + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"Hiển thị quảng cáo ở tất cả mọi nơi trừ những tên miền này..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"Bạn quên đính kèm ảnh chụp màn hình rồi! Chúng tôi không thể giúp bạn nếu không thấy (những) quảng cáo mà bạn đang báo cáo." + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"Khớp 1 mục trên trang này." + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"Và tự tạo một thẻ, sau đó chép và dán thông tin dưới đây vào phần \"Điền mọi thông tin chi tiết bạn nghĩ sẽ giúp chúng tôi hiểu được vấn đề của bạn\"." }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"Hãy cẩn thận: Nếu bạn chỉnh sửa không chính xác, rất nhiều bộ lọc khác bao gồm cả bộ lọc chính thức cũng có thể bị lỗi!
Bạn có thể đọc thêm về cú pháp bộ lọc để biết cách chỉnh sửa bộ lọc." + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"Đưa kênh $name$ vào danh sách trắng", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"Để ẩn nút này, nhấp chuột phải và chọn 'Nút ẩn'. Để hiển thị trở lại bạn bấm vào 'Nút hiển thị' ở đây chrome://chrome/extensions." }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"Cài đặt chung" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock sẽ không chạy trên những trang có đường dẫn này:" + "filterisraeli":{ + "description":"language", + "message":"Tiếng Do Thái" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"Chúng tôi không có bộ lọc mặc định cho ngôn ngữ này.
Bạn vui lòng tìm kiếm bộ lọc khác có hỗ trợ ngôn ngữ này $link$ hoặc bạn có thể chặn quảng cáo này bằng tay ở thẻ 'Tùy chỉnh'.", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"Tính năng này của AdBlock không hoạt động trên trang này bởi vì nó sử dụng công nghệ đã lỗi thời. Bạn có thể dùng danh sách đen hoặc danh sách trắng để chặn bằng tay trong thẻ 'Tùy Chỉnh' trên trang tùy chọn." }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"Đăng ký" + "filterczech":{ + "description":"Language names for a filter list", + "message":"Tiếng Séc và Slovakia" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Hiển thị các tùy chọn nâng cao" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Chúng tôi đã vô hiệu hoá tất cả các tiện ích khác. Bây giờ chúng tôi sẽ tải lại trang cùng với quảng cáo. Chỉ vài giây nữa thôi." }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"Tiếng Tây Ban Nha" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"Các bộ lọc khác" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"Tải trên trang với tên miền:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"AdBlock sẽ cập nhật bộ lọc một cách tự động; bạn cũng có thể cập nhật ngay" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"Nhấp vào đây: Cập nhật bộ lọc của tôi!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"Hiển thị tất cả yêu cầu" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Bạn sử dụng càng nhiều bộ lọc thì AdBlock chạy càng chậm. Thậm chí một số website còn bị treo nếu bạn sử dụng quá nhiều bộ lọc. Nếu bạn vẫn muốn đăng ký bộ lọc này, nhấp OK." }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"Bước cuối cùng: Điều gì khiến cái này trở thành quảng cáo?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"Tuyệt vời! Vậy là đã xong." }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"Khớp $matchcount$ mục trên trang này.", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"Chúng tôi cũng đã có một trang để giúp bạn tìm hiểu về những người đứng sau AdBlock!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"Mở trang tiện ích." }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"Tiếng Indonesia" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"Đã xong! Chúng tôi sẽ sớm liên hệ với bạn, rất có thể là ngay trong ngày, hoặc hai ngày nếu là ngày lễ. Trong khi chờ đợi, bạn hãy tìm một email từ AdBlock. Bạn sẽ thấy một liên kết đến thẻ của bạn trên trang giúp đỡ của chúng tôi tại đó. Bạn cũng có thể theo dõi qua email nếu muốn!" }, - "filterturkish":{ - "description":"A filter list", - "message":"Tiếng Thổ Nhĩ Kỳ" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"Tìm hiểu thêm về chương trình Quảng Cáo Chấp Nhận Được." }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"Chặn quảng cáo" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Bạn có muốn AdBlock thông báo cho bạn khi phát hiện ra malware không?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"Danh sách bộ lọc tùy chỉnh" + "updateddayago":{ + "description":"Label for subscription", + "message":"đã được cập nhật 1 ngày trước" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"URL frame: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"Mục đích của câu hỏi này là để xác định ai sẽ nhận được báo cáo của bạn. Nếu bạn trả lời câu hỏi này không chính xác, báo cáo sẽ được gửi đến nhầm người. do đó nó có thể bị bỏ qua." - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Thêm AdBlock vào menu chuột phải" - }, - "typeselector":{ - "description":"A resource type", - "message":"chọn" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"Chặn quảng cáo này" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"Nhóm của chúng tôi đã yêu cầu một số thông tin để gỡ lỗi chưa? Bấm vào đây để làm điều đó!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"Tiếng Đức" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Không chạy AdBlock trên..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"Báo cáo quảng cáo là tự nguyện. Nó giúp những người khác bằng cách giúp chỉnh sửa bộ lọc quảng cáo để có thể chặn quảng cáo cho tất cả mọi người. Nếu bạn không muốn báo cáo, không sao cả. Bạn hãy đóng trang này lại và chặn quảnq cáo chỉ cho mình bạn thôi." + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"Tên tập tin quá dài. Hãy đặt tên tập tin ngắn hơn." }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"Phần tử bị ẩn" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"đã được cập nhật $seconds$ giây trước", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"Tải lại trang." + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"Không chạy trên trang này" }, - "typepage":{ - "description":"A resource type", - "message":"trang" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"Hãy cho chúng tôi biết trên trang hỗ trợ của chúng tôi!" }, - "filterdutch":{ - "description":"language", - "message":"Tiếng Hà Lan" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"Tên tập tin quá dài. Hãy đặt tên tập tin ngắn hơn." + "buttonok":{ + "description":"OK button", + "message":"OK!" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"Đừng quên lưu lại bộ lọc!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"Đã xong! Chúng tôi đã tải lại trang cùng với quảng cáo. Vui lòng kiểm tra lại trang xem quảng cáo đã mất hay chưa. Sau đó quay lại trang này và trả lời những câu hỏi dưới đây." }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"Đang kiểm tra cập nhật (chỉ mất vài giây thôi)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"Tất cả nguồn" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"Đăng ký bộ lọc này, sau đó thử lại: $list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"Đưa kênh $name$ vào danh sách trắng", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Bạn có muốn AdBlock thông báo cho bạn khi phát hiện ra malware không?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"Nguồn cấp" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"Hiển thị số quảng cáo bị chặn trên menu AdBlock" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"Trang web:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - Báo cáo một quảng cáo" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"Bộ lọc tùy chỉnh AdBlock (khuyến khích)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"Cách dùng?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"Không chạy trên trang của những tên miền này" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"Danh sách bộ lọc tùy chỉnh" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"Chặn thêm quảng cáo:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"Thông tin được yêu cầu còn thiếu hoặc không hợp lệ. Hãy điền vào những câu hỏi có khung màu đỏ." + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"Tên miền hoặc url mà AdBlock không chặn bất cứ thứ gì" }, - "filterlatvian":{ - "description":"A filter list", - "message":"Tiếng Latvia" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"Bạn đã không còn đăng ký bộ lọc Quảng Cáo Chấp Nhận Được." }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"Hãy chắn chắn bạn dùng đúng ngôn ngữ bộ lọc:" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances (loại bỏ những sự khó chịu trên Web)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"CSS phù hợp với" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock đã chặn tải xuống từ một trang được biết có chứa mã độc." }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"Để ẩn nút này, đi đến opera://extensions và chọn 'Ẩn khỏi thanh cộng cụ'. Để hiển thị trở lại bạn chỉ cần bỏ chọn tùy chọn đó." + "savebutton":{ + "description":"Save button", + "message":"Lưu" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"Không chắc chắn? bạn chi cần bấm nút 'Chặn' dưới đây." }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"Khớp với bộ lọc" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"Đang lấy dữ liệu... vui lòng chờ trong giây lát." - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"Tất cả nguồn" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"Bước cuối cùng: báo cáo vấn đề cho chúng tôi." }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock đã được cập nhật!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"Không chạy trên trang của những tên miền này" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"Chính xác thì quảng cáo ở đâu trên trang? Nó trông như thế nào?" }, - "filterisraeli":{ - "description":"language", - "message":"Tiếng Do Thái" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"Đẹp rồi" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"Trượt thanh trượt cho đến khi chọn đúng quảng cáo cần chặn, và các phần tử bị chặn sẽ trở nên hữu ích." + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"Chặn các URL trong văn bản này" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Cho phép AdBlock thu thập dữ liệu và cách sử dụng danh sách bộ lọc ẩn danh" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"Để báo cáo một quảng cáo, bạn phải có kết nối đến internet." }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"Số lượng quy tắc trong danh sách bộ lọc đã vượt quá giới hạn 50,000 và đã được tự động giảm xuống. Vui lòng bỏ đăng ký một vài bộ lọc hoặc tắt Chặn Nội Dung Safari!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"Bạn có chắc bạn muốn đăng ký bộ lọc $title$ không?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"đã được cập nhật 1 ngày trước" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"Quảng Cáo Chấp Nhận Được (được khuyến khích)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"Bấm vào đây: Vô hiệu hóa Quảng Cáo Chấp Nhận Được:" - }, - "optionsversion":{ - "description":"Version number", - "message":"Phiên bản $version$", + "message":"đã được cập nhật $days$ ngày trước", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"Xóa khỏi danh sách" + "typeobject":{ + "description":"A resource type", + "message":"interactive object" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"Đó không phải tập tin ảnh. Hãy tải lên tập tin .png, .gif, hoặc .jpg." + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"Bạn nghĩ điều gì sẽ đúng về quảng cáo này mỗi khi bạn truy cập trang này?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"Sao bạn không gửi một báo cáo lỗi cho chúng tôi?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"Số quảng cáo đã bị chặn:" }, - "typehiding":{ - "description":"A resource type", - "message":"ẩn" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"Danh sách bộ lọc" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"Tiếng Ả-Rập" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"Tên miền frame: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"Hủy bỏ lệnh chặn của tôi trên tên miền này" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"Frame trên cùng" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"Chỉnh sửa bộ lọc bằng tay:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"Hoàn thành!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"Bước 1: Chọn phần tử để chặn" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"Nguồn cấp" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"Vui lòng nhập đúng bộ lọc dưới đây và bấm OK" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"Chặn quảng cáo trên trang này" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"Việt hóa bởi:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"Hãy chắc chắn rằng danh sách bộ lọc của bạn luôn được cập nhật:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock đã được cập nhật!" }, - "lang_english":{ - "description":"language", - "message":"Tiếng Anh" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"Chỉ có sẵn bằng Tiếng Anh" }, - "filtericelandic":{ - "description":"language", - "message":"Tiếng Icecland" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"HOẶC, chỉ cần kích vào nút này để chúng tôi làm tất cả những việc trên:Vô hiệu hóa tất cả các tiện ích mở rộng" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"Mở trang tiện ích mở rộng để kích hoạt lại các tiện ích mở rộng đã bị vô hiệu hóa trước đây." + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"Có gì mới trong phiên bản mới nhất? Xem các thay đổi!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"Tên miền của trang web để áp dụng" + "filterantisocial":{ + "description":"A filter list", + "message":"Danh sách bộ lọc chặn mạng xã hội (loại bỏ các nút bấm liên quan đến mạng xã hội)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"Trang:" + "filtermalware":{ + "description":"A filter list", + "message":"Chống phần mềm độc hại" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"Bạn tìm thấy lỗi?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Hiển thị các tùy chọn nâng cao" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"Tiếng Ả-Rập" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"Bạn đã vượt quá dung lượng lưu trữ mà AdBlock có thể sử dụng. Vui lòng bỏ đăng ký một số bộ lọc của bạn!" }, - "lang_czech":{ - "description":"language", - "message":"Tiếng Séc" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"Trả bất cứ thứ gì bạn muốn!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"Địa chỉ email của bạn là gì?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Bạn muốn tìm hiểu cách AdBlock hoạt động?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"Địa chỉ bộ lọc không hợp lệ. Bộ lọc sẽ bị xóa." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"Ẩn một phần của trang web" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"Tổng quan" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"hoặc AdBlock cho Chrome" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"Video và Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"Tuyệt vời! Bây giờ hãy tìm hiểu xem tiện ích nào là nguyên nhân gây ra quảng cáo. Bật lần lượt từng tiện ích một, tiện ích nào khi bật gây ra quảng cáo chính là tiện ích bạn cần gỡ bỏ để loại bỏ quảng cáo." + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"Chỉnh sửa" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"hoặc Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"Bạn có câu hỏi hoặc một ý tưởng mới?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"Cấu trúc: ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"Bạn quên đính kèm ảnh chụp màn hình rồi! Chúng tôi không thể giúp bạn nếu không thấy (những) quảng cáo mà bạn đang báo cáo." + "pwyw":{ + "description":"Text of a payment request link", + "message":"Trả bất cứ thứ gì bạn muốn!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"HOẶC, chỉ cần kích vào nút này để chúng tôi làm tất cả những việc trên:Vô hiệu hóa tất cả các tiện ích mở rộng" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"Đây là lỗi của bộ lọc. Bạn có thể báo cáo nó ở đây: $link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"Tìm hiểu thêm về malware" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"Lưu ý: báo cáo của bạn có thể được công bố công khai. Hãy lưu ý điều đó trước khi bạn báo cáo điều gì đó riêng tư." }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"Tải lại trang cùng với quảng cáo." + "filteritalian":{ + "description":"language", + "message":"Tiếng Ý" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"Cài đặt Firefox $chrome$ nếu bạn chưa cài đặt 2 trình duyệt này.", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"Cập nhật AdBlock" + "adstillappear":{ + "description":"Question on ad report page", + "message":"Quảng cáo vẫn còn xuất hiện phải không?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Danh sách loại bỏ cảnh báo Adblock (loại bỏ các cảnh báo về việc sử dụng trình chặn quảng cáo)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"Hãy chắn chắn bạn dùng đúng ngôn ngữ bộ lọc:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"Các bộ lọc khác" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"Hãy chắc chắn rằng danh sách bộ lọc của bạn luôn được cập nhật:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"Tiếng Pháp" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"Đã xảy ra lỗi trong khi kiểm tra cập nhật." }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"Phần tử bị chặn:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"Nhấp vào menu Safari chọn → Preferences → Extensions." }, - "typeobject":{ - "description":"A resource type", - "message":"interactive object" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"Gửi" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"vừa được cập nhật" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"đã được cập nhật $days$ ngày trước", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"Đã hủy đăng ký." + }, + "typemedia":{ "description":"A resource type", - "message":"frame" + "message":"audio/video" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (bảo vệ sự riêng tư)" + "message":"Tiếng Latvia" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"Báo cáo một quảng cáo trên trang này" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"Chặn quảng cáo trên trang này" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"Dọn dẹp danh sách này" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"Dừng chặn quảng cáo:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"Tiếng Đức" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"Lỗi lưu tập tin đã tải lên." }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"Hãy cẩn thận: bộ lọc này sẽ chặn tất cả đối tượng $elementtype$ trên trang này!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"Khớp $matchcount$ mục trên trang này.", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"đây" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"Trang đó đươc viết bằng ngôn ngữ nào?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"Không thể lấy được dữ liệu của bộ lọc này!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"Bạn có chắc chắn muốn gõ bỏ $count$ khối quảng cáo mà bạn đã chặn trên $host$?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"Bạn có thể di chuyển thanh trượt dưới đây để chọn chính xác những trang nào mà AdBlock sẽ không chạy." }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"ảnh" + "message":"ẩn" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Và tự tạo một thẻ, sau đó chép và dán thông tin dưới đây vào phần \"Điền mọi thông tin chi tiết bạn nghĩ sẽ giúp chúng tôi hiểu được vấn đề của bạn\"." + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"Quảng cáo có xuất hiện trước hoặc trong khi phát video hay bất cứ plugin nào như Flash không?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"Để ẩn nút này, nhấp chuột phải và chọn 'Nút ẩn'. Để hiển thị trở lại bạn bấm vào 'Nút hiển thị' ở đây chrome://chrome/extensions." + "filterrussian":{ + "description":"Language names for a filter list", + "message":"Tiếng Nga và Ukraina" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"Tiếng Rumani" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"Đã xảy ra lỗi trong khi kiểm tra cập nhật." - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"Chúng tôi đã vô hiệu hoá tất cả các tiện ích khác. Bây giờ chúng tôi sẽ tải lại trang cùng với quảng cáo. Chỉ vài giây nữa thôi." - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"Nguồn được cho phép" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"Tiếng Tây Ban Nha" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"Hãy cẩn thận: bộ lọc này sẽ chặn tất cả đối tượng $elementtype$ trên trang này!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"Tiếng Séc và Slovakia" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"Sử dụng chế độ tương thích với ClickToFlash" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"Kiểu frame: " + "no":{ + "description":"A negative response to a question", + "message":"Không" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" -- Chọn ngôn ngữ -- " + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"Bộ lọc này có thể được thay đổi ở trang Tùy chọn:" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"Cài đặt Adblock Plus cho Firefox $chrome$ nếu bạn chưa có.", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"Ẩn nút này" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"Nguồn bị chặn" + "other":{ + "description":"Multiple choice option", + "message":"Khác" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"Được rồi, bạn vẫn có thể chặn quảng cáo này bằng tay ở trang 'Tùy chọn'. Cảm ơn bạn!" + }, + "lang_russian":{ + "description":"language", + "message":"Tiếng Nga" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"Quảng cáo có xuất hiện trước hoặc trong khi phát video hay bất cứ plugin nào như Flash không?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"Sao bạn không gửi một báo cáo lỗi cho chúng tôi?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (bảo vệ sự riêng tư)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$ sẽ là $value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"Bộ lọc này có thể được thay đổi ở trang Tùy chọn:" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"Hoặc nhập một địa chỉ:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"Bộ lọc sau đây:
$filter$
đã xảy ra lỗi:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"ĐANG TẢI..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"Đóng" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"Nhóm của chúng tôi đã yêu cầu một số thông tin để gỡ lỗi chưa? Bấm vào đây để làm điều đó!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"Chỉ chặn quảng cáo trên những trang web này:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"Bạn đã vượt quá dung lượng lưu trữ mà AdBlock có thể sử dụng. Vui lòng bỏ đăng ký một số bộ lọc của bạn!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"Số lượng quy tắc trong danh sách bộ lọc đã vượt quá giới hạn 50,000 và đã được tự động giảm xuống. Vui lòng bỏ đăng ký một vài bộ lọc hoặc tắt Chặn Nội Dung Safari!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"Báo cáo một quảng cáo trên trang này" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"Cho phép AdBlock thu thập dữ liệu và cách sử dụng danh sách bộ lọc ẩn danh" + "message":"Hiển thị báo cáo gỡ lỗi trong Console Log (sẽ làm AdBlock chậm đi)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"Được rồi, bạn vẫn có thể chặn quảng cáo này bằng tay ở trang 'Tùy chọn'. Cảm ơn bạn!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"Tên miền frame: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"Tiện ích phổ biến nhất trên Chrome, với trên 40 triệu người dùng! AdBlock sẽ giúp bạn chặn tất cả quảng cáo trên internet." }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"Bạn tìm thấy lỗi?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"Gửi" + "lang_czech":{ + "description":"language", + "message":"Tiếng Séc" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"Đó không phải tập tin ảnh. Hãy tải lên tập tin .png, .gif, hoặc .jpg." + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"Hiển thị đường dẫn đến bộ lọc" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"Cho phép những quảng cáo không gây khó chịu" + }, + "filterswedish":{ + "description":"A filter list", + "message":"Tiếng Thụy Điển" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"Xóa khỏi danh sách" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" -- Chọn ngôn ngữ -- " + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"Tiếng Phần Lan" + "message":"Tiếng Pháp" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"Chỉnh sửa" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"Tập tin quá lớn. Hãy đảm bảo rằng tập tin của bạn nhỏ hơn 10 MB." + "tabsupport":{ + "description":"A tab on the options page", + "message":"Hỗ trợ" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"Thông tin sau sẽ được kèm theo trong báo cáo quảng cáo." + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"Chặn quảng cáo bằng URL" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"Đây là lỗi của bộ lọc. Bạn có thể báo cáo nó ở đây: $link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"Phiên bản $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Bỏ chọn ô 'Đã bật' bên cạnh tất cả các tiện ích khác ngoại trừ AdBlock. Giữ AdBlock luôn bật." + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"Mục đích của câu hỏi này là để xác định ai sẽ nhận được báo cáo của bạn. Nếu bạn trả lời câu hỏi này không chính xác, báo cáo sẽ được gửi đến nhầm người. do đó nó có thể bị bỏ qua." }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"Hiển thị đường dẫn đến bộ lọc" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"Báo cáo quảng cáo là tự nguyện. Nó giúp những người khác bằng cách giúp chỉnh sửa bộ lọc quảng cáo để có thể chặn quảng cáo cho tất cả mọi người. Nếu bạn không muốn báo cáo, không sao cả. Bạn hãy đóng trang này lại và chặn quảnq cáo chỉ cho mình bạn thôi." }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"Chỉ có sẵn bằng Tiếng Anh" + "yes":{ + "description":"A positive response to a question", + "message":"Có" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"Chia sẻ!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"Mã nguồn của AdBlock là hoàn toàn miễn phí!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"Tiếng Hà Lan" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"Chúng tôi sẽ chỉ sử dụng địa chỉ này để liên hệ với bạn nếu cần thêm thông tin." + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"Khớp 1 mục trên trang này." + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"đã được cập nhật $hours$ giờ trước", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"Trở lại" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock đã chặn tải xuống từ một trang được biết có chứa mã độc." + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"Chú thích: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"Bấm vào đây: Vô hiệu hóa Quảng Cáo Chấp Nhận Được:" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"Sử dụng chế độ tương thích với ClickToFlash" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"Tên miền của trang web để áp dụng" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"Hỗ trợ" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"Cập nhật AdBlock" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"Hãy vào trang web hỗ trợ của chúng tôi." + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"Để tạm dừng AdBlock với Chặn Nội Dung Safari được bật, vui lòng chọn Safari (trong thanh trình đơn) > Tùy chọn > Tiện ích mở rộng > AdBlock, và bỏ chọn 'Bật AdBlock'." + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"Đã xảy ra chuyện gì đó. Không có nguồn nào được gửi đi. Trang này sẽ bị đóng lại. Hãy thử tải lại trang web này." + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"Tìm hiểu thêm về malware" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"Trang web:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"Quảng Cáo Chấp Nhận Được (được khuyến khích)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"Đẹp rồi" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"Để tạm dừng AdBlock với Chặn Nội Dung Safari được bật, vui lòng chọn Safari (trong thanh trình đơn) > Tùy chọn > Tiện ích mở rộng > AdBlock, và bỏ chọn 'Bật AdBlock'." }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"Mở trang tiện ích." + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - bấm để biết thêm chi tiết" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Vô hiệu hóa tất cả các tiện ích khác ngoại trừ AdBlock:" } } \ No newline at end of file diff --git a/_locales/zh_CN/messages.json b/_locales/zh_CN/messages.json index 1cbc1615..d9ebd487 100644 --- a/_locales/zh_CN/messages.json +++ b/_locales/zh_CN/messages.json @@ -1,1558 +1,1598 @@ { - "catblock_whatmakesadblocktick":{ + "questionoridea":{ "description":"Subtitle on the Support tab of the options", - "message":"Want to see what makes CatBlock tick?" - }, - "adreport_screen_cap_upload":{ - "description":"Label next to a file upload button.", - "message":"上传截图:" - }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"没有发现已知的恶意软件。" - }, - "checkinfirefox_3":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"在该浏览器中,订阅同样的的过滤列表。" - }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "message":"有问题或有新点子?" }, - "checkinfirefox_4":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"在浏览器中,打开含有广告的页面。" + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"选项" }, - "filterswedish":{ + "filtereasylist":{ "description":"A filter list", - "message":"瑞典文" - }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"屏蔽更多广告:" - }, - "lang_russian":{ - "description":"language", - "message":"俄文" + "message":"EasyList (推荐)" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"已取消订阅。" + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"此页面上$count$个", + "placeholders":{ + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, - "filterchinese":{ + "filtereasylist_plus_polish":{ "description":"language", - "message":"中文" - }, - "adreport_filter":{ - "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", - "message":"如果您使用“屏蔽广告”向导创建了一条能屏蔽此广告的过滤规则,请将其粘贴在下面的框中:" - }, - "filterantisocial":{ - "description":"A filter list", - "message":"Antisocial过滤列表(去除社交媒体的按钮)" - }, - "adreportintro":{ - "description":"Introduction of the ad reporting page", - "message":"您发现页面上有广告? 我们会帮您找到正确的地方来报告!" - }, - "show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"在AdBlock按钮上显示被屏蔽的广告数" + "message":"波兰文" }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"您可以免费获取AdBlock源代码!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"匹配的CSS" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1分钟前更新" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"排除" }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"无法获取此过滤列表!" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"我不想检查这个" }, "browserestartrequired":{ "description":"Displayed after disabling Safari Content Blocking, which requres a browser relaunch", "message":"请重启Safari以关闭内容屏蔽。" }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"按网址屏蔽广告" - }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"隐藏这个按钮" + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"请小心: 如果您在这里设置出错,许多其它过滤规则,包括官方的过滤规则,可能会失效!
参阅过滤规则语法教程来学习正确地添加高级黑名单、白名单规则。" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"AdBlock会自动获取更新;您也可以要求现在更新" + "checkinfirefox_5":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"广告是否仍在浏览器中显示?" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"格式: ~site1.com|~site2.com|~news.site3.org" + "aamessageadreport":{ + "description":"Acceptable Ads message on ad report page", + "message":"如果您不想看到这样的广告,您可能希望禁用可接受广告列表。" }, - "filtereasylist_plus_estonian":{ + "filtereasylist_plus_lithuania":{ "description":"language", - "message":"爱沙尼亚文" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"类型" + "message":"立陶宛文" }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock有可用更新!到$here$进行更新。
注:如果您希望自动获取更新,单击Safari>选项>扩展程序>更新
并勾选“自动安装更新”选项。", + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"先订阅此过滤列表,然后重试一次:$list_title$", "placeholders":{ - "here":{ - "example":"here", - "content":"" + "list_title":{ + "content":"$1", + "example":"French filters" } } }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"这是什么?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"请不要订阅过多列表——每新增一个列表都会让浏览器的速度降低一点!更多详细信息和过滤列表可在这里找到。" - }, - "wizardcantrunonframesets":{ + "catblock_wizardcantrunonframesets":{ "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"由于该网站使用了过时的技术,AdBlock的这项功能无法在此网站使用。您可以在在选项中的“自定义”标签下手工添加黑名单或白名单。" - }, - "filtereasylist_plus_polish":{ - "description":"language", - "message":"波兰文" - }, - "aalinkadreport":{ - "description":"Acceptable Ads link message on ad report page", - "message":"了解更多关于可接受广告计划的情况。" + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "updatedsecondsago":{ - "description":"Label for subscription", - "message":"$seconds$秒前更新", - "placeholders":{ - "seconds":{ - "example":"15", - "content":"$1" - } - } + "malwarewarning":{ + "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", + "message":"您的计算机可能感染了恶意软件。单击 此处 了解更多信息。" }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"来自对象的请求" + "linkunblock":{ + "description":"Link on the 'Customize' tab", + "message":"在页面或网域显示广告" }, - "filterhungarian":{ + "lang_slovak":{ "description":"language", - "message":"匈牙利文" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"注意: 您的报告可能公开。如果您的报告包含隐私信息,请牢记这一点。" - }, - "safarinotificationbody":{ - "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"请禁用一些过滤列表。更多详细信息请参阅AdBlock的选项。" - }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "message":"斯洛伐克文" }, - "filterorigin":{ - "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", - "message":"过滤规则来源:\n$list$", + "checkinfirefox_2":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", + "message":"安装Firefox上的Adblock Plus $chrome$。", "placeholders":{ - "list":{ - "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'", - "content":"$1" + "chrome":{ + "content":"", + "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"抱歉, 因为您的一个过滤列表,AdBlock在这个页面被禁用了" - }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"无效的过滤规则: $exception$", + "nodefaultfilter1":{ + "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", + "message":"我们没有这个语言的预设过滤列表。
请尝试寻找一个支持此语言的合适列表$link$ 或者自行在选项中的“自定义”标签加入过滤规则。", "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" + "link":{ + "content":"", + "example":"here" } } }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"警告:未指定过滤规则!" - }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock在这个页面上被禁用。" + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"点选要屏蔽的广告,AdBlock会协助您设定。" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"在所有网站 显示广告,除了这些网域..." + "topframe":{ + "description":"Resource list page: frame type", + "message":"顶部框架" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"选项" + "typestylesheet":{ + "description":"A resource type", + "message":"样式定义" }, - "typexmlhttprequest":{ + "typeunknown":{ "description":"A resource type", - "message":"xmlhttprequest" + "message":"未知" }, - "catblock_disabled_by_filter_lists":{ + "disabled_by_filter_lists":{ "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "message":"抱歉, 因为您的一个过滤列表,AdBlock在这个页面被禁用了" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"已屏蔽广告:" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"添加其它语言的过滤列表:" + "thirdparty":{ + "description":"Resource list page: column title telling if the resource originates from a different domain", + "message":"第三方" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"点选要屏蔽的广告,AdBlock会协助您设定。" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"未指定过滤规则!" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"希腊文" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"如果您看到广告,不要在此提交bug报告,请转到报告广告!" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, - "catblock_tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"Customize CatBlock" + "adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"您正在使用旧版本的 AdBlock。请转到 扩展程序页面,启用“开发者模式”并单击“立即更新扩展程序”" }, - "adalreadyblocked":{ - "description":"On the ad report page, telling a user there is nothing to do", - "message":"太好了! 您已经完成全部设置。" + "adreport_name":{ + "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", + "message":"尊姓大名?" }, - "other":{ - "description":"Multiple choice option", - "message":"其它" + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"解决Hulu.com视频无法播放的问题(需要重启您的浏览器)" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock技术支持" + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"警告:未指定过滤规则!" + }, + "tabcustomize":{ + "description":"A tab on the options page", + "message":"自定义" + }, + "adreportintro":{ + "description":"Introduction of the ad reporting page", + "message":"您发现页面上有广告? 我们会帮您找到正确的地方来报告!" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "filtereasylist_plus_estonian":{ + "description":"language", + "message":"爱沙尼亚文" }, "tabcustomizetitle":{ "description":"Title of the customize tab", "message":"自定义AdBlock" }, - "adreport_missing_info":{ - "description":"Error message shown when the user doesn't enter anything in some of the text fields.", - "message":"所需的信息未填写或无效。 请填写有红色边框的问题。" + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"保加利亚文" }, - "adreport_response_save_error":{ - "description":"Error message shown when the server could not save an attached file.", - "message":"保存上传的文件时出错。" + "whitelistedresource":{ + "description":"Resource list page: resource status", + "message":"已加入白名单的资源" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"请在下面输入正确的过滤规则,并点选「确定」" + "safarinotificationtitle":{ + "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"内容屏蔽规则数量超出限制" }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"第一步:找出要屏蔽的目标" + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." }, - "filterdanish":{ - "description":"language", - "message":"丹麦文" + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"不要在此网域运行AdBlock..." }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"此页面上$count$个", + "blockurlwithtext":{ + "description":"Message of the url-blocking area", + "message":"屏蔽包含以下字符串的网址" + }, + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"关闭" + }, + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"使用Firefox $chrome$检查", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" } } }, - "subframe":{ - "description":"Resource list page: frame type", - "message":"辅助框架" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"最后一步:此广告是由什么组成的?" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1小时前更新" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"如果您看到广告,不要在此提交bug报告,请转到报告广告!" }, "filtereasylist_plun_korean":{ "description":"language", "message":"韩文" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"或者Chrome" - }, - "adreport_name":{ - "description":"Label for a textbox where the user enters their name (or nickname) to submit a bug or ad report.", - "message":"尊姓大名?" - }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"最受欢迎的Chrome扩展,拥有超过4000万用户!屏蔽整个互联网上的广告。" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"您正在使用旧版本的Safari浏览器。升级到新版本可以获得AdBlock工具栏按钮、广告白名单、报告广告等功能。 现在升级。" }, - "show_resourcelist":{ - "description":"Menu entry to open the resource list page", - "message":"显示资源列表" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"芬兰文" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"我不想检查这个" + "typescript":{ + "description":"A resource type", + "message":"脚本" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "lang_ukranian":{ + "description":"language", + "message":"乌克兰文" }, - "yes":{ - "description":"A positive response to a question", - "message":"是" + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"没有发现已知的恶意软件。" }, - "undo_last_block":{ - "description":"Menu entry to let the user cancel the result of running the blacklist wizard", - "message":"撤销我在此域上设置的屏蔽" + "safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"请禁用一些过滤列表。更多详细信息请参阅AdBlock的选项。" }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"自定义" + "acceptable_ads_content_blocking_disbled_message":{ + "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", + "message":"因为您开启了Safari内容屏蔽,我们为您取消订阅了可接受广告列表。这两者您只能选择其一。(为什么?)" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"暂停AdBlock" + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"我们也有一个页面让您了解AdBlock幕后的贡献者们!" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"您确定要订阅 $title$ 过滤列表?", - "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"这里" }, - "adreport_location":{ - "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", - "message":"广告具体在页面的何处? 它看起来什么样?" + "typepopup":{ + "description":"A resource type", + "message":"弹窗" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "oradblockforchrome":{ - "description":"Used for placeholder in checkinfirefox_2 string", - "message":"或者Chrome上的AdBlock" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"重新载入页面" }, - "typestylesheet":{ - "description":"A resource type", - "message":"样式定义" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"此页面使用什么语言?" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock 已暂停。" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"测试功能" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "safarinotificationtitle":{ - "description":"Title of a notification shown to Safari Content Blocking users with too many filter list rules", - "message":"内容屏蔽规则数量超出限制" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"重新启用AdBlock" }, "findingads":{ "description":"When you press ctrl-shift-K the blacklister searches for ads", "message":"正在寻找广告...

这只需要一点时间。" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock在这个页面上被禁用。" }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"AdBlock网域及网址白名单" + "checkinfirefox_3":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"在该浏览器中,订阅同样的的过滤列表。" }, - "typescript":{ - "description":"A resource type", - "message":"脚本" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"屏蔽广告" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"总共$count$个", + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"警告: 您会在其​​他所有网站看见广告!
这会覆盖其它所有应用在那些网站的的过滤规则。" + }, + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock有可用更新!到$here$进行更新。
注:如果您希望自动获取更新,单击Safari>选项>扩展程序>更新
并勾选“自动安装更新”选项。", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "here":{ + "content":"", + "example":"here" } } }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." - }, - "adreport_response_success":{ - "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", - "message":"完成了! 我们很快就会联系您;一般会在一天内,假期期间则为两天。同时,请注意接收从AdBlock发送的电子邮件。您会找到我们的帮助站点的链接。您也可以通过电子邮件跟进问题的解决进度!" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"完成!" }, - "no":{ - "description":"A negative response to a question", - "message":"否" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock 自订过滤清单(推荐)" }, - "noresourcessend2":{ - "description":"Resource list page: error message", - "message":"出错了。没有资源被发送。页面即将关闭。请尝试重新加载该网站。" + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"类型" }, - "lang_ukranian":{ + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"这是什么?" + }, + "filterjapanese":{ "description":"language", - "message":"乌克兰文" + "message":"日文" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$分钟前更新", + "filterorigin":{ + "description":"Resource list page: tooltip of matching filter, telling which filter list contains the filter", + "message":"过滤规则来源:\n$list$", "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" + "list":{ + "content":"$1", + "example":"A filter list name OR AdBlock OR the translation of 'tabcustomize'" } } }, - "acceptable_ads_content_blocking_disbled_message":{ - "description":"Warning shown when Safari Content Blocking is enabled while the Acceptable Ads filter list was already enabled.", - "message":"因为您开启了Safari内容屏蔽,我们为您取消订阅了可接受广告列表。这两者您只能选择其一。(为什么?)" - }, - "acceptableadsdisable_done":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"您不再订阅可接受广告列表。" - }, - "filtermalware":{ - "description":"A filter list", - "message":"恶意软件防护" - }, - "savebutton":{ - "description":"Save button", - "message":"保存" - }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"警告: 您会在其​​他所有网站看见广告!
这会覆盖其它所有应用在那些网站的的过滤规则。" - }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"禁用通知" - }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"正在订阅过滤列表..." + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"订阅过滤列表" }, - "adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"您正在使用旧版本的 AdBlock。请转到 扩展程序页面,启用“开发者模式”并单击“立即更新扩展程序”" + "frametype":{ + "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", + "message":"框架类型: " }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock选项" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"添加其它语言的过滤列表:" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "headerfilter":{ + "description":"Resource list page: title of a column", + "message":"符合的过滤规则" }, - "malwarecheck":{ - "description":"Section header on the ad report page", - "message":"检查可以注入广告的恶意软件:" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"过滤列表能屏蔽网络上大多数的广告。 您也可以:" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"在控制台日志中显示调试信息(这将会降低AdBlock的效能)" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"若要隐藏按钮,请右键单击Safari的工具栏并选择“自定义工具栏“,然后将AdBlock按钮拖出工具栏。若要再次显示按钮,您可以将它拖放回工具栏。" }, "dropboxerrorforfilters":{ "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", "message":"您已超出 Dropbox 大小限制。请您从自定义列表或禁用的过滤列表中删除一些条目,然后重试。" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"重新启用AdBlock" - }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"解决Hulu.com视频无法播放的问题(需要重启您的浏览器)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"排除" - }, - "disableallextensions":{ - "description":"Instruction on ad report page", - "message":"禁用除AdBlock之外的所有扩展:" - }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." - }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"翻译贡献者:" - }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"载入中..." - }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"右键点选页面上的广告来屏蔽它——或在此处手动屏蔽。" + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"订阅" }, "contentblockingwarning":{ "description":"Notice shown on the 'Customize' tab of the options page when Safari Content Blocking is enabled", "message":"注意: 启用Safari内容屏蔽将无法支持将网页或网站加入白名单 (允许显示广告) 功能。" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" - }, - "adreport_email_privacy":{ - "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", - "message":"我们只会在需要更多的信息时使用此地址与您联系。" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"编辑禁用的过滤列表项目" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"被屏蔽的页面元素:" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "typepage":{ + "description":"A resource type", + "message":"页面" }, - "safaricontentblocking":{ - "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", - "message":"启用Safari内容屏蔽" + "typeother":{ + "description":"A resource type", + "message":"其它" }, - "adreport_email":{ - "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", - "message":"您的电子邮件地址?" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"点击这里:更新我的过滤列表!" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"若要隐藏按钮,请右键单击Safari的工具栏并选择“自定义工具栏“,然后将AdBlock按钮拖出工具栏。若要再次显示按钮,您可以将它拖放回工具栏。" + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "adreport_server_response_error_msg":{ - "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", - "message":"处理您的请求时出错。" + "hiddenelement":{ + "description":"Resource list page: resource status", + "message":"隐藏元素" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"要隐藏按钮,转到 opera://extensions 并勾选“从工具栏隐藏”选项。通过取消选中该选项,您可以再次显示它。" }, - "typemain_frame":{ + "typeobject_subrequest":{ "description":"A resource type", - "message":"页面" + "message":"来自对象的请求" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"页面:" }, - "tabreloadcomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"完成了! 含广告的页面已重新载入。请检查该页面广告是否消失。然后回到此页面并回答下面的问题。" + "buttonblockit":{ + "description":"Block button", + "message":"屏蔽它!" }, - "orenteraurl":{ - "description":"Link for custom subscription", - "message":"或输入过滤列表网址:" + "allow_whitelisting_youtube_channels":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"允许特定YouTube频道的白名单" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"您正在使用旧版本的Safari浏览器。升级到新版本可以获得AdBlock工具栏按钮、广告白名单、报告广告等功能。 现在升级。" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"单击Safari菜单 → 选项 → 扩展程序。" + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"停止屏蔽广告:" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"我们目前还无法屏蔽Flash或其他plugins中的广告。此功能尚在等待浏览器与WebKit 的支持。" }, - "buttonblockit":{ - "description":"Block button", - "message":"屏蔽它!" + "filterhungarian":{ + "description":"language", + "message":"匈牙利文" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"广告是否还在?" + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"屏蔽这个广告" }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"保加利亚文" + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, - "reenableadsonebyone":{ - "description":"Tells the user to reenable the extensions one by one", - "message":"太好了! 现在让我们找出是哪个扩展带来了广告。逐个启用每个扩展。带出广告的那个扩展就是您必须删除的。" + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"在此页上启用AdBlock" + }, + "show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"在AdBlock按钮上显示被屏蔽的广告数" }, "subscribingfailed":{ "description":"abp: link subscriber result", "message":"失败!" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"手动编辑您的过滤规则:" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"暂停AdBlock" }, - "filteritalian":{ + "lang_english":{ "description":"language", - "message":"意大利文" - }, - "typepopup":{ - "description":"A resource type", - "message":"弹窗" + "message":"英文" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"类型" + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"在右键菜单中加入选项" }, - "lang_slovak":{ - "description":"language", - "message":"斯洛伐克文" + "adreport_server_response_error__manual_msg_step1":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"请移步我们的技术支持站点。" }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"订阅过滤列表" + "filterwarning_removal":{ + "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", + "message":"Adblock警告移除列表(移除使用广告屏蔽软件时网站显示的警告信息)" }, - "acceptableadsdisable_how_to_reenable":{ - "description":"Message shown to users after disabling Acceptable Ads via update page.", - "message":"您可以通过勾选下面的“允许一些非侵入式广告”来重新启用它并支持一些您喜爱的网站。" + "typemain_frame":{ + "description":"A resource type", + "message":"页面" }, - "checkinfirefox_5":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad", - "message":"广告是否仍在浏览器中显示?" + "confirm_undo_custom_filters":{ + "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", + "message":"您确定要移除您在$host$上创建的$count$个屏蔽规则?", + "placeholders":{ + "count":{ + "content":"$1", + "example":"The number of custom blocks for a domain." + }, + "host":{ + "content":"$2", + "example":"code.google.ph, ph.msn.com, stackoverflow.com" + } + } }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"不要在这个页面上运行" + "legend":{ + "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", + "message":"图例: " }, - "filtereasylist_plus_lithuania":{ + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$分钟前更新", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" + } + } + }, + "adreport_screen_cap_upload":{ + "description":"Label next to a file upload button.", + "message":"上传截图:" + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"立陶宛文" + "message":"罗马尼亚文" }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"到我们的技术支持网站上告诉我们!" + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"编辑禁用的过滤列表项目" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock 已暂停。" + "subframe":{ + "description":"Resource list page: frame type", + "message":"辅助框架" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"我们目前还无法屏蔽Flash或其他plugins中的广告。此功能尚在等待浏览器与WebKit 的支持。" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"重新载入出现广告的页面。" }, - "buttonok":{ - "description":"OK button", - "message":"确定" + "safaricontentblocking":{ + "description":"Checkbox on the 'General' tab of the Options page. 'Content Blocking' is the name of a different way of blocking resources introduced in Safari 9.", + "message":"启用Safari内容屏蔽" }, - "tabgeneral":{ + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"安装Firefox $chrome$。", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } + }, + "tabfilterlists":{ "description":"A tab on the options page", - "message":"一般" + "message":"过滤列表" }, - "aamessageadreport":{ - "description":"Acceptable Ads message on ad report page", - "message":"如果您不想看到这样的广告,您可能希望禁用可接受广告列表。" + "adreport_filter":{ + "description":"Optional question on the ad report page when the ad needs to be reported to AdBlock.", + "message":"如果您使用“屏蔽广告”向导创建了一条能屏蔽此广告的过滤规则,请将其粘贴在下面的框中:" }, - "malwarewarning":{ - "description":"On the ad report page, the ads the user is seeing might be caused by malware/adware", - "message":"您的计算机可能感染了恶意软件。单击 此处 了解更多信息。" + "adreport_response_large_file":{ + "description":"Error message shown when the user tries to upload a large image file.", + "message":"文件过大。请确保您的文件小于10MB。" }, - "typeother":{ - "description":"A resource type", - "message":"其它" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock不会在任何符合以下规则的网域启用:" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"未指定过滤规则!" + "filterchinese":{ + "description":"language", + "message":"中文" }, - "typeunknown":{ - "description":"A resource type", - "message":"未知" + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"无效的过滤规则: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "typemedia":{ + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"正在订阅过滤列表..." + }, + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"请打开扩展管理页面,启用先前被禁用的扩展。" + }, + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"禁用通知" + }, + "filterturkish":{ + "description":"A filter list", + "message":"土耳其文" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"请不要订阅过多列表——每新增一个列表都会让浏览器的速度降低一点!更多详细信息和过滤列表可在这里找到。" + }, + "typesubdocument":{ "description":"A resource type", - "message":"音频/视频" + "message":"框架" }, - "filterjapanese":{ - "description":"language", - "message":"日文" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"印度尼西亚文" }, - "acceptableadsoption":{ - "description":"option on the 'General' tab", - "message":"允许一些非侵入式广告" + "typeimage":{ + "description":"A resource type", + "message":"图像" + }, + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"总共$count$个", + "placeholders":{ + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." + } + } }, "buttoncancel":{ "description":"Cancel button", "message":"取消" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"你可以滑动滑块来精确定义AdBlock白名单网域。" + "savereminder":{ + "description":"Reminder to press save", + "message":"别忘了保存!" + }, + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "typeselector":{ + "description":"A resource type", + "message":"选择器" }, "content_blocking_acceptable_ads_disbled_message":{ "description":"Warning shown when the Acceptable Ads filter list is enabled while Safari Content Blocking was already enabled.", "message":"因为您选择允许非侵入式的广告,我们为您关闭了Safari内容屏蔽。这两者您只能选择其一。(为什么?)" }, - "adreport_laststep":{ - "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", - "message":"最后一步: 向我们报告问题" - }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"使用Firefox $chrome$检查", - "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "filtericelandic":{ + "description":"language", + "message":"冰岛文" }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"要报告一个广告,您必须连接到互联网。" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"广告屏蔽过滤列表" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (推荐)" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"只在屏蔽以下网站的广告:" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "resourcedomain":{ + "description":"Resource list page: text shown when hovering over an item in the third-party column", + "message":"在以下网域上加载:\n$domain$", "placeholders":{ - "example":{ - "content":"346406" + "domain":{ + "content":"$1", + "example":"example.com" } } }, - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - 报告广告" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"被禁用的扩展已重新启用。" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"广告屏蔽过滤列表" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "how":{ - "description":"Text of a link pointing to instructions on how to do something", - "message":"如何操作?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"优化这个过滤列表" }, - "allow_whitelisting_youtube_channels":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"允许特定YouTube频道的白名单" + "spread_the_word":{ + "description":"Text of a share link", + "message":"请帮助我们宣传AdBlock!" }, - "thirdparty":{ - "description":"Resource list page: column title telling if the resource originates from a different domain", - "message":"第三方" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "filterannoyances":{ - "description":"A filter list", - "message":"Fanboy's Annoyances(去除网页上令人心烦的干扰)" + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock - 点击查看详情" + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock选项" }, - "updatedhoursago":{ + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "adreport_server_response_error_msg":{ + "description":"Error message shown when an new ticket is sumbitted for an ad or bug report, and the server had an issue while processing the data.", + "message":"处理您的请求时出错。" + }, + "updatedhourago":{ "description":"Label for subscription", - "message":"$hours$小时前更新", - "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" - } - } + "message":"1小时前更新" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"俄文和乌克兰文" + "checkforupdates":{ + "description":"Displayed when AdBlock is checking the newest available version", + "message":"正在检查更新(这应当只需几秒钟)..." }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"最新的版本有什么变化?请参阅 更新日志!" + "updatedrightnow":{ + "description":"Label for subscription", + "message":"刚刚更新" }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"被禁用的扩展已重新启用。" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"右键点选页面上的广告来屏蔽它——或在此处手动屏蔽。" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"希腊文" + "malwarecheck":{ + "description":"Section header on the ad report page", + "message":"检查可以注入广告的恶意软件:" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"隐藏部分页面" + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock技术支持" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"视频或Flash" + "headertype":{ + "description":"Resource list page: title of a column", + "message":"类型" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"您认为下列哪个规则会在每次浏览此页面时屏蔽此广告?" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"移动滑块直到页面上的广告被正确地屏蔽。" }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"在此页上启用AdBlock" + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1分钟前更新" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"返回" + "typesub_frame":{ + "description":"A resource type", + "message":"框架" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"过滤列表能屏蔽网络上大多数的广告。 您也可以:" + "blockedresource":{ + "description":"Resource list page: resource status", + "message":"已屏蔽的资源" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "adreport_all_debug_info":{ + "description":"Shows the user the debug information that will be sent along with their report.", + "message":"以下信息也将列入广告报告。" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "filterdanish":{ + "description":"language", + "message":"丹麦文" }, "disableaa":{ "description":"Section header on the ad report page", "message":"检查可接受广告规则:" }, - "linkunblock":{ - "description":"Link on the 'Customize' tab", - "message":"在页面或网域显示广告" + "acceptableadsdisable_how_to_reenable":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"您可以通过勾选下面的“允许一些非侵入式广告”来重新启用它并支持一些您喜爱的网站。" + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"Want to see what makes CatBlock tick?" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"正在获取列表...请稍候。" + }, + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"无效的列表网址。 它将会被删除。" + }, + "generaloptions":{ + "description":"Title of first tab page", + "message":"一般选项" + }, + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." + }, + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"取消除了AdBlock之外所有扩展的“已启用”复选框。保持AdBlock启用。" + }, + "checkinfirefox_4":{ + "description":"Instruction for how to check Firefox/Chrome for a reported ad", + "message":"在浏览器中,打开含有广告的页面。" + }, + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"在所有网站 显示广告,除了这些网域..." + }, + "adreport_missing_screenshot":{ + "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", + "message":"您未粘贴截图! 看不到您所报告的广告,我们无法帮助您。" + }, + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"页面上只有1个匹配项目被屏蔽。" + "adreport_server_response_error__manual_msg_step2":{ + "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", + "message":"手动创建一个话题,复制并粘贴下面的信息到 \"Fill in any details you think will help us understand your issue\" 部分。" }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"请小心: 如果您在这里设置出错,许多其它过滤规则,包括官方的过滤规则,可能会失效!
参阅过滤规则语法教程来学习正确地添加高级黑名单、白名单规则。" + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." }, - "whitelist_youtube_channel":{ - "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", - "message":"将$name$频道添加到白名单", - "placeholders":{ - "name":{ - "example":"Name of channel", - "content":"$1" - } - } + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"要隐藏按钮,请右键单击它并选择\"隐藏按钮\"。您可以在 chrome://chrome/extensions 中选择重新显示按钮。" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"一般选项" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock不会在任何符合以下规则的网域启用:" + "filterisraeli":{ + "description":"language", + "message":"希伯来文" }, - "nodefaultfilter1":{ - "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", - "message":"我们没有这个语言的预设过滤列表。
请尝试寻找一个支持此语言的合适列表$link$ 或者自行在选项中的“自定义”标签加入过滤规则。", - "placeholders":{ - "link":{ - "example":"here", - "content":"" - } - } + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"由于该网站使用了过时的技术,AdBlock的这项功能无法在此网站使用。您可以在在选项中的“自定义”标签下手工添加黑名单或白名单。" }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"订阅" + "filterczech":{ + "description":"Language names for a filter list", + "message":"捷克文和斯洛伐克文" }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"我是专业用户, 显示高级选项" + "disableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"我们已经禁用了所有其他扩展。现在含广告的页面将重新载入。请稍等。" }, - "filtereasylist_plus_spanish":{ - "description":"language", - "message":"西班牙文" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"其它过滤列表" }, - "resourcedomain":{ - "description":"Resource list page: text shown when hovering over an item in the third-party column", - "message":"在以下网域上加载:\n$domain$", - "placeholders":{ - "domain":{ - "example":"example.com", - "content":"$1" - } - } + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"AdBlock会自动获取更新;您也可以要求现在更新" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"点击这里:更新我的过滤列表!" + "show_resourcelist":{ + "description":"Menu entry to open the resource list page", + "message":"显示资源列表" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, "you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"使用越多的过滤列表,AdBlock 越慢。过多的过滤列表甚至会使浏览器在部分网站崩溃。点击“确认”继续订阅此列表。" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"最后一步:此广告是由什么组成的?" + "adalreadyblocked":{ + "description":"On the ad report page, telling a user there is nothing to do", + "message":"太好了! 您已经完成全部设置。" }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"页面上有$matchcount$个匹配项目被屏蔽。", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"测试功能" }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"我们也有一个页面让您了解AdBlock幕后的贡献者们!" + "disableforchromestepone":{ + "description":"Step 1 for disabling Chrome extensions", + "message":"打开扩展程序页面。" }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"印度尼西亚文" + "adreport_response_success":{ + "description":"Shown when a ticket has been sumbitted to AdBlock's support site successfully.", + "message":"完成了! 我们很快就会联系您;一般会在一天内,假期期间则为两天。同时,请注意接收从AdBlock发送的电子邮件。您会找到我们的帮助站点的链接。您也可以通过电子邮件跟进问题的解决进度!" }, - "filterturkish":{ - "description":"A filter list", - "message":"土耳其文" + "aalinkadreport":{ + "description":"Acceptable Ads link message on ad report page", + "message":"了解更多关于可接受广告计划的情况。" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"屏蔽广告" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"AdBlock在检测到恶意软件时是否显示通知?" }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"自定义过滤列表" + "updateddayago":{ + "description":"Label for subscription", + "message":"1天前更新" }, "frameurl":{ "description":"Resource list page: full URL of the frame", "message":"框架URL: " }, - "firefox_explanation":{ - "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", - "message":"这个问题的目的是确定谁应当接收您的报告。如果您没有正确地回答这个问题,您的报告会送至错误的人手中,以致它被忽略。" - }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"在右键菜单中加入选项" - }, - "typeselector":{ - "description":"A resource type", - "message":"选择器" - }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"屏蔽这个广告" - }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"我们的团队向您请求调试信息?点击这里获取它们!" + "filtereasylist_plus_german":{ + "description":"language", + "message":"德文" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"不要在此网域运行AdBlock..." + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adreportvoluntary":{ - "description":"Introduction of the ad reporting page", - "message":"报告广告是自愿的。它有助于让过滤列表的维护人员帮助所有人屏蔽这个广告。如果您现在不想帮助他人,没关系。关闭这个页面然后自行屏蔽这个广告。" + "adreport_response_file_name":{ + "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", + "message":"文件名过长。请给您的文件命名一个更短的名称。" }, - "hiddenelement":{ - "description":"Resource list page: resource status", - "message":"隐藏元素" + "updatedsecondsago":{ + "description":"Label for subscription", + "message":"$seconds$秒前更新", + "placeholders":{ + "seconds":{ + "content":"$1", + "example":"15" + } + } }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"重新载入页面" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"不要在这个页面上运行" }, - "typepage":{ - "description":"A resource type", - "message":"页面" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"到我们的技术支持网站上告诉我们!" }, - "filterdutch":{ - "description":"language", - "message":"荷兰文" + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "adreport_response_file_name":{ - "description":"Error message shown when the file name of an attachement the user is trying to submit in a report is longer than 255 characters.", - "message":"文件名过长。请给您的文件命名一个更短的名称。" + "buttonok":{ + "description":"OK button", + "message":"确定" }, - "savereminder":{ - "description":"Reminder to press save", - "message":"别忘了保存!" + "tabreloadcomplete":{ + "description":"On the ad report page, alert notifying users that we've disabled all other extensions", + "message":"完成了! 含广告的页面已重新载入。请检查该页面广告是否消失。然后回到此页面并回答下面的问题。" }, - "checkforupdates":{ - "description":"Displayed when AdBlock is checking the newest available version", - "message":"正在检查更新(这应当只需几秒钟)..." + "resourceblocktitle":{ + "description":"Resource list page name", + "message":"所有资源" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"先订阅此过滤列表,然后重试一次:$list_title$", + "whitelist_youtube_channel":{ + "description":"Entry in the AdBlock menu, when a user is browsing YouTube and has enabled the YouTube channel whitelisting option", + "message":"将$name$频道添加到白名单", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "name":{ + "content":"$1", + "example":"Name of channel" } } }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"AdBlock在检测到恶意软件时是否显示通知?" + "headerresource":{ + "description":"Resource list page: title of a column", + "message":"资源" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"在AdBlock菜单中显示被屏蔽的广告数" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"网站:" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - 报告广告" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock 自订过滤清单(推荐)" + "how":{ + "description":"Text of a link pointing to instructions on how to do something", + "message":"如何操作?" + }, + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"不要在这个网域的页面上运行" + }, + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"自定义过滤列表" + }, + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"屏蔽更多广告:" + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." + }, + "adreport_missing_info":{ + "description":"Error message shown when the user doesn't enter anything in some of the text fields.", + "message":"所需的信息未填写或无效。 请填写有红色边框的问题。" + }, + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"AdBlock网域及网址白名单" }, - "filterlatvian":{ - "description":"A filter list", - "message":"拉脱维亚文" + "acceptableadsdisable_done":{ + "description":"Message shown to users after disabling Acceptable Ads via update page.", + "message":"您不再订阅可接受广告列表。" }, - "correctfilters":{ - "description":"On the ad report page, label describing having the right set of filters", - "message":"请确保您正在使用正确语言的过滤列表:" + "filterannoyances":{ + "description":"A filter list", + "message":"Fanboy's Annoyances(去除网页上令人心烦的干扰)" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"匹配的CSS" + "malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"AdBlock已阻止了一个从已知包含恶意软件的网站进行的下载。" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"要隐藏按钮,转到 opera://extensions 并勾选“从工具栏隐藏”选项。通过取消选中该选项,您可以再次显示它。" + "savebutton":{ + "description":"Save button", + "message":"保存" }, "blacklisternotsure":{ "description":"Blacklister attribute choosing page message", "message":"不确定?直接点选下方的「屏蔽它!」。 " }, - "headerfilter":{ - "description":"Resource list page: title of a column", - "message":"符合的过滤规则" - }, - "fetchinglabel":{ - "description":"Status label", - "message":"正在获取列表...请稍候。" - }, - "resourceblocktitle":{ - "description":"Resource list page name", - "message":"所有资源" + "adreport_laststep":{ + "description":"Heading on the ad report page. Shown when the ad needs to be reported to AdBlock, and not filter list maintainers.", + "message":"最后一步: 向我们报告问题" }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock已经是最新版!" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"不要在这个网域的页面上运行" + "adreport_location":{ + "description":"Question on the ad report page asking the user to describe the ad and its location on a webpage.", + "message":"广告具体在页面的何处? 它看起来什么样?" }, - "filterisraeli":{ - "description":"language", - "message":"希伯来文" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"看上去不错" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"移动滑块直到页面上的广告被正确地屏蔽。" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "blockurlwithtext":{ - "description":"Message of the url-blocking area", - "message":"屏蔽包含以下字符串的网址" + "datacollectionoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"允许AdBlock收集匿名的过滤列表使用情况及其他使用数据" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"要报告一个广告,您必须连接到互联网。" }, - "safaricontentblockinglimitexceeded":{ - "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", - "message":"过滤列表中规则的数量超出了50,000条的限制,并已自动删减。请取消订阅一些过滤列表或禁用Safari内容屏蔽!" + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"您确定要订阅 $title$ 过滤列表?", + "placeholders":{ + "title":{ + "content":"$1", + "example":"Prebake" + } + } }, - "updateddayago":{ + "updateddaysago":{ "description":"Label for subscription", - "message":"1天前更新" - }, - "filteracceptable_ads":{ - "description":"A filter list", - "message":"可接受广告 (推荐)" - }, - "clickdisableaa":{ - "description":"Instruction on ad report page", - "message":"单击此选项: 禁用可接受广告" - }, - "optionsversion":{ - "description":"Version number", - "message":"版本 $version$", + "message":"$days$天前更新", "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" + "days":{ + "content":"$1", + "example":"15" } } }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"从列表中移除" + "typeobject":{ + "description":"A resource type", + "message":"交互式对象" }, - "adreport_response_invalid_file":{ - "description":"Error message shown when the user uploads an invalid file type.", - "message":"这不是一个图像文件。请上传.png、.gif 或.jpg 文件。" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"您认为下列哪个规则会在每次浏览此页面时屏蔽此广告?" }, - "bugreport":{ - "description":"Link to send a bug report on the Support tab of the options", - "message":"为什么不向我们发送一份bug 报告呢?" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"已屏蔽广告:" }, - "typehiding":{ - "description":"A resource type", - "message":"隐藏" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"过滤列表" + "filtereasylist_plus_arabic":{ + "description":"language", + "message":"阿拉伯文" }, - "framedomain":{ - "description":"Resource list page: domain name of the frame", - "message":"框架所在网域: " + "undo_last_block":{ + "description":"Menu entry to let the user cancel the result of running the blacklist wizard", + "message":"撤销我在此域上设置的屏蔽" }, - "topframe":{ - "description":"Resource list page: frame type", - "message":"顶部框架" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"手动编辑您的过滤规则:" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"完成!" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"第一步:找出要屏蔽的目标" }, - "headerresource":{ - "description":"Resource list page: title of a column", - "message":"资源" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"请在下面输入正确的过滤规则,并点选「确定」" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"屏蔽此页面上的广告" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"翻译贡献者:" }, - "updateyourlists":{ - "description":"Section header on the ad report page", - "message":"请确认您的过滤列表都已是最新的:" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock已经是最新版!" }, - "lang_english":{ - "description":"language", - "message":"英文" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"仅英文" }, - "filtericelandic":{ - "description":"language", - "message":"冰岛文" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":"或者,单击此按钮来完成以上所有步骤: 禁用其他所有扩展" }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"请打开扩展管理页面,启用先前被禁用的扩展。" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"最新的版本有什么变化?请参阅 更新日志!" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"应用的网域" + "filterantisocial":{ + "description":"A filter list", + "message":"Antisocial过滤列表(去除社交媒体的按钮)" }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"页面:" + "filtermalware":{ + "description":"A filter list", + "message":"恶意软件防护" }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"发现了bug?" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"我是专业用户, 显示高级选项" }, - "filtereasylist_plus_arabic":{ - "description":"language", - "message":"阿拉伯文" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"您的订阅超出了AdBlock能使用的储存空间。请取消订阅一些列表!" }, - "lang_czech":{ - "description":"language", - "message":"捷克文" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"自愿捐款!" + "adreport_email":{ + "description":"Label for a textbox where the user enters their email address to submit a bug or ad report.", + "message":"您的电子邮件地址?" }, "whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"想知道是什么造就了AdBlock魔法?" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"无效的列表网址。 它将会被删除。" + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"隐藏部分页面" }, - "typesub_frame":{ - "description":"A resource type", - "message":"框架" + "tabgeneral":{ + "description":"A tab on the options page", + "message":"一般" + }, + "oradblockforchrome":{ + "description":"Used for placeholder in checkinfirefox_2 string", + "message":"或者Chrome上的AdBlock" + }, + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"视频或Flash" + }, + "reenableadsonebyone":{ + "description":"Tells the user to reenable the extensions one by one", + "message":"太好了! 现在让我们找出是哪个扩展带来了广告。逐个启用每个扩展。带出广告的那个扩展就是您必须删除的。" + }, + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"编辑" + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"或者Chrome" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"有问题或有新点子?" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"格式: ~site1.com|~site2.com|~news.site3.org" }, - "adreport_missing_screenshot":{ - "description":"Error message shown when the user doesn't attach a screenshot to an ad report.", - "message":"您未粘贴截图! 看不到您所报告的广告,我们无法帮助您。" + "pwyw":{ + "description":"Text of a payment request link", + "message":"自愿捐款!" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":"或者,单击此按钮来完成以上所有步骤: 禁用其他所有扩展" + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"这是广告过滤列表方面的问题。请在这里报告:$link$", + "placeholders":{ + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" + } + } }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"了解更多关于恶意软件的信息" + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"注意: 您的报告可能公开。如果您的报告包含隐私信息,请牢记这一点。" }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"重新载入出现广告的页面。" + "filteritalian":{ + "description":"language", + "message":"意大利文" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"安装Firefox $chrome$。", + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" - }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock更新" + "adstillappear":{ + "description":"Question on ad report page", + "message":"广告是否还在?" }, - "filterwarning_removal":{ - "description":"A filter list. \"Adblock\" is written with a lowercase B in this string as it refers to ad blocking extensions in general, not just AdBlock specifically.", - "message":"Adblock警告移除列表(移除使用广告屏蔽软件时网站显示的警告信息)" + "correctfilters":{ + "description":"On the ad report page, label describing having the right set of filters", + "message":"请确保您正在使用正确语言的过滤列表:" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"其它过滤列表" + "updateyourlists":{ + "description":"Section header on the ad report page", + "message":"请确认您的过滤列表都已是最新的:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"法文" + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"检查更新时出错。" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"被屏蔽的页面元素:" + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"单击Safari菜单 → 选项 → 扩展程序。" }, - "typeobject":{ - "description":"A resource type", - "message":"交互式对象" + "buttonsubmit":{ + "description":"Button to send a form.", + "message":"提交" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"刚刚更新" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$天前更新", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ + "unsubscribedlabel":{ + "description":"Status label", + "message":"已取消订阅。" + }, + "typemedia":{ "description":"A resource type", - "message":"框架" + "message":"音频/视频" }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (隐私保护)" + "message":"拉脱维亚文" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"报告这个页面上的广告" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"屏蔽此页面上的广告" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"优化这个过滤列表" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"停止屏蔽广告:" }, - "filtereasylist_plus_german":{ - "description":"language", - "message":"德文" + "adreport_response_save_error":{ + "description":"Error message shown when the server could not save an attached file.", + "message":"保存上传的文件时出错。" }, - "blacklisterblocksalloftype":{ - "description":"Warns the user that all elements of type X will be blocked", - "message":"注意:此过滤规则会屏蔽页面上所有的$elementtype$元素!", + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"页面上有$matchcount$个匹配项目被屏蔽。", "placeholders":{ - "elementtype":{ - "example":"DIV", - "content":"$1" + "matchcount":{ + "content":"$1", + "example":"5" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"这里" - }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"此页面使用什么语言?" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"无法获取此过滤列表!" }, - "confirm_undo_custom_filters":{ - "description":"Confirmation message when user wants to undo their custom blocks for a domain. $count$ will be a number between 1 and 999,999,999, $host$ will be the domain where the custom blocks will be reset.", - "message":"您确定要移除您在$host$上创建的$count$个屏蔽规则?", - "placeholders":{ - "host":{ - "example":"code.google.ph, ph.msn.com, stackoverflow.com", - "content":"$2" - }, - "count":{ - "example":"The number of custom blocks for a domain.", - "content":"$1" - } - } + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"你可以滑动滑块来精确定义AdBlock白名单网域。" }, - "typeimage":{ + "typehiding":{ "description":"A resource type", - "message":"图像" + "message":"隐藏" }, - "adreport_server_response_error__manual_msg_step2":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"手动创建一个话题,复制并粘贴下面的信息到 \"Fill in any details you think will help us understand your issue\" 部分。" + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"该广告是出现在视频或Flash游戏等外部plugin中吗?" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"要隐藏按钮,请右键单击它并选择\"隐藏按钮\"。您可以在 chrome://chrome/extensions 中选择重新显示按钮。" + "filterrussian":{ + "description":"Language names for a filter list", + "message":"俄文和乌克兰文" }, - "filtereasylist_plus_romanian":{ + "filtereasylist_plus_spanish":{ "description":"language", - "message":"罗马尼亚文" - }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"检查更新时出错。" - }, - "disableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've disabled all other extensions", - "message":"我们已经禁用了所有其他扩展。现在含广告的页面将重新载入。请稍等。" - }, - "whitelistedresource":{ - "description":"Resource list page: resource status", - "message":"已加入白名单的资源" - }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "message":"西班牙文" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterblocksalloftype":{ + "description":"Warns the user that all elements of type X will be blocked", + "message":"注意:此过滤规则会屏蔽页面上所有的$elementtype$元素!", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "elementtype":{ + "content":"$1", + "example":"DIV" } } }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"捷克文和斯洛伐克文" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"启用ClickToFlash兼容模式" }, - "frametype":{ - "description":"Resource list page: followed by frame type (e.g. top frame, subframe)", - "message":"框架类型: " + "no":{ + "description":"A negative response to a question", + "message":"否" }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":"——选择语言——" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"即将套用的规则(您仍然可在选项中编辑):" }, - "checkinfirefox_2":{ - "description":"Instruction for how to check Firefox/Chrome for a reported ad. Don't translate the name 'Adblock Plus'.", - "message":"安装Firefox上的Adblock Plus $chrome$。", - "placeholders":{ - "chrome":{ - "example":"'or AdBlock for Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" - } - } + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"隐藏这个按钮" }, - "blockedresource":{ - "description":"Resource list page: resource status", - "message":"已屏蔽的资源" + "other":{ + "description":"Multiple choice option", + "message":"其它" + }, + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"好了。您仍然可以在选项中手动屏蔽此广告。 谢谢!" + }, + "lang_russian":{ + "description":"language", + "message":"俄文" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"该广告是出现在视频或Flash游戏等外部plugin中吗?" + "bugreport":{ + "description":"Link to send a bug report on the Support tab of the options", + "message":"为什么不向我们发送一份bug 报告呢?" + }, + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (隐私保护)" }, "blacklisterattrwillbe":{ "description":"Checkbox label", "message":"$attribute$为$value$", "placeholders":{ "attribute":{ - "example":"class", - "content":"$1" + "content":"$1", + "example":"class" }, "value":{ - "example":"AdBanner", - "content":"$2" + "content":"$2", + "example":"AdBanner" } } }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"即将套用的规则(您仍然可在选项中编辑):" + "orenteraurl":{ + "description":"Link for custom subscription", + "message":"或输入过滤列表网址:" }, "customfilterserrormessage":{ "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", "message":"以下过滤规则:
$filter$
有一个错误:
$message$", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, "message":{ - "example":"invalid filter", - "content":"$2" + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"载入中..." }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"关闭" + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"我们的团队向您请求调试信息?点击这里获取它们!" }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"只在屏蔽以下网站的广告:" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"您的订阅超出了AdBlock能使用的储存空间。请取消订阅一些列表!" + "safaricontentblockinglimitexceeded":{ + "description":"Displayed when the number of rules in the subscribed filter lists is larger than the number supported by Safari Content Blocking, if that option is enabled", + "message":"过滤列表中规则的数量超出了50,000条的限制,并已自动删减。请取消订阅一些过滤列表或禁用Safari内容屏蔽!" }, - "datacollectionoption":{ + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"报告这个页面上的广告" + }, + "debuginlogoption":{ "description":"Checkbox on the 'General' tab of the Options page", - "message":"允许AdBlock收集匿名的过滤列表使用情况及其他使用数据" + "message":"在控制台日志中显示调试信息(这将会降低AdBlock的效能)" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"好了。您仍然可以在选项中手动屏蔽此广告。 谢谢!" + "framedomain":{ + "description":"Resource list page: domain name of the frame", + "message":"框架所在网域: " }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"最受欢迎的Chrome扩展,拥有超过4000万用户!屏蔽整个互联网上的广告。" }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"发现了bug?" }, - "buttonsubmit":{ - "description":"Button to send a form.", - "message":"提交" + "lang_czech":{ + "description":"language", + "message":"捷克文" }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "filtereasylist_plus_finnish":{ + "adreport_response_invalid_file":{ + "description":"Error message shown when the user uploads an invalid file type.", + "message":"这不是一个图像文件。请上传.png、.gif 或.jpg 文件。" + }, + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" + }, + "showlinkstolists2":{ + "description":"Option on the 'Filter lists' tab of the Options page", + "message":"显示过滤列表的网址" + }, + "acceptableadsoption":{ + "description":"option on the 'General' tab", + "message":"允许一些非侵入式广告" + }, + "filterswedish":{ + "description":"A filter list", + "message":"瑞典文" + }, + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"从列表中移除" + }, + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" + }, + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":"——选择语言——" + }, + "filtereasylist_plus_french":{ "description":"language", - "message":"芬兰文" + "message":"法文" }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"编辑" }, - "adreport_response_large_file":{ - "description":"Error message shown when the user tries to upload a large image file.", - "message":"文件过大。请确保您的文件小于10MB。" + "tabsupport":{ + "description":"A tab on the options page", + "message":"技术支持" }, - "adreport_all_debug_info":{ - "description":"Shows the user the debug information that will be sent along with their report.", - "message":"以下信息也将列入广告报告。" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"按网址屏蔽广告" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"这是广告过滤列表方面的问题。请在这里报告:$link$", + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" + }, + "optionsversion":{ + "description":"Version number", + "message":"版本 $version$", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"取消除了AdBlock之外所有扩展的“已启用”复选框。保持AdBlock启用。" + "firefox_explanation":{ + "description":"Explanation of the Check-in-Firefox or Chrome step in the ad reporter", + "message":"这个问题的目的是确定谁应当接收您的报告。如果您没有正确地回答这个问题,您的报告会送至错误的人手中,以致它被忽略。" }, - "showlinkstolists2":{ - "description":"Option on the 'Filter lists' tab of the Options page", - "message":"显示过滤列表的网址" + "adreportvoluntary":{ + "description":"Introduction of the ad reporting page", + "message":"报告广告是自愿的。它有助于让过滤列表的维护人员帮助所有人屏蔽这个广告。如果您现在不想帮助他人,没关系。关闭这个页面然后自行屏蔽这个广告。" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"仅英文" + "yes":{ + "description":"A positive response to a question", + "message":"是" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"请帮助我们宣传AdBlock!" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"您可以免费获取AdBlock源代码!" }, - "malwarenotificationmessage":{ + "filterdutch":{ + "description":"language", + "message":"荷兰文" + }, + "adreport_email_privacy":{ + "description":"Let the user know that their email address won't be used for reasons other than contacting them about their bug or ad report.", + "message":"我们只会在需要更多的信息时使用此地址与您联系。" + }, + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"页面上只有1个匹配项目被屏蔽。" + }, + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$小时前更新", + "placeholders":{ + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"返回" + }, + "catblock_malwarenotificationmessage":{ "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", - "message":"AdBlock已阻止了一个从已知包含恶意软件的网站进行的下载。" + "message":"CatBlock has blocked a download from a site known to host malware." }, - "legend":{ - "description":"Resource list page: followed by color codes for various resource statuses (e.g. blocked, whitelisted, hidden)", - "message":"图例: " + "clickdisableaa":{ + "description":"Instruction on ad report page", + "message":"单击此选项: 禁用可接受广告" }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"启用ClickToFlash兼容模式" + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"应用的网域" }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"技术支持" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock更新" }, - "adreport_server_response_error__manual_msg_step1":{ - "description":"Error message shown when the server has an unrecoverable error during the submission of an ad or bug report.", - "message":"请移步我们的技术支持站点。" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "safaricontentblockingpausemessage":{ - "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", - "message":"要在启用内容屏蔽的情况下暂停AdBlock,请选择 Safari (菜单栏中) > 偏好设置 > 扩展 > AdBlock,并取消\"启用AdBlock\"。" + "noresourcessend2":{ + "description":"Resource list page: error message", + "message":"出错了。没有资源被发送。页面即将关闭。请尝试重新加载该网站。" + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"了解更多关于恶意软件的信息" + }, + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"网站:" + }, + "filteracceptable_ads":{ + "description":"A filter list", + "message":"可接受广告 (推荐)" }, "catblock_replaceadswithcats":{ "description":"Option on General tab used for enabling replacement of ads by pictures of cats", "message":"Replace ads with pictures of cats" }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"看上去不错" + "safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"要在启用内容屏蔽的情况下暂停AdBlock,请选择 Safari (菜单栏中) > 偏好设置 > 扩展 > AdBlock,并取消\"启用AdBlock\"。" }, - "disableforchromestepone":{ - "description":"Step 1 for disabling Chrome extensions", - "message":"打开扩展程序页面。" + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock - 点击查看详情" + }, + "disableallextensions":{ + "description":"Instruction on ad report page", + "message":"禁用除AdBlock之外的所有扩展:" } } \ No newline at end of file diff --git a/_locales/zh_TW/messages.json b/_locales/zh_TW/messages.json index d7ffd837..42a82c02 100644 --- a/_locales/zh_TW/messages.json +++ b/_locales/zh_TW/messages.json @@ -1,902 +1,857 @@ { - "adblockreportinganad":{ - "description":"Title of the ad report page", - "message":"AdBlock - 廣告回報" + "filterdanish":{ + "description":"language", + "message":"丹麥文" }, - "adblockinglist":{ - "description":"List for subscribed ad blocking fiters", - "message":"廣告過濾清單" + "spread_the_word":{ + "description":"Text of a share link", + "message":"將AdBlock推薦給更多人使用!" }, - "modifydomain":{ - "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", - "message":"網站:" + "questionoridea":{ + "description":"Subtitle on the Support tab of the options", + "message":"有任何問題或者是新的點子?" }, "catblock_whatmakesadblocktick":{ "description":"Subtitle on the Support tab of the options", "message":"Want to see what makes CatBlock tick?" }, - "malwarenotfound":{ - "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", - "message":"沒有偵測到已知的惡意軟體" - }, - "adblock_click_for_details":{ - "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", - "message":"AdBlock-點擊查看詳情" + "typeunknown":{ + "description":"A resource type", + "message":"unknown" }, - "catblock_disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." + "tabgeneral":{ + "description":"A tab on the options page", + "message":"一般" }, - "updatedhoursago":{ - "description":"Label for subscription", - "message":"$hours$ 小時前更新", + "blocked_n_on_this_page":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", + "message":"$count$ 此頁面上", "placeholders":{ - "hours":{ - "example":"15", - "content":"$1" + "count":{ + "content":"123", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." } } }, - "filterswedish":{ - "description":"A filter list", - "message":"瑞典文" + "invalidListUrl":{ + "description":"Message when you subscribe to a non-list URL", + "message":"無效的清單網址。 它將會被刪除。" }, - "whatsnew":{ - "description":"Link to display the changelog on the Support tab of the options", - "message":"在新版中有哪些新功能? 請參考 更新日誌!" + "filtereasylist_plus_polish":{ + "description":"language", + "message":"波蘭文" }, - "blockmoreads":{ - "description":"Section header on the 'Customize' tab", - "message":"阻擋更多廣告:" + "generaloptions":{ + "description":"Title of first tab page", + "message":"一般選項" }, - "lang_russian":{ - "description":"language", - "message":"俄文" + "catblock_status_disabled":{ + "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", + "message":"CatBlock can not run on this domain." }, - "pwyw":{ - "description":"Text of a payment request link", - "message":"想付多少,就付多少!" + "csstomatch":{ + "description":"Message of the css-hiding area", + "message":"符合的CSS" }, - "unsubscribedlabel":{ - "description":"Status label", - "message":"已取消訂閱。" + "close":{ + "description":"Generic message for buttons that close a view or window", + "message":"關閉" }, - "linkblockadbyurl":{ - "description":"Link on the 'Customize' tab", - "message":"依網址阻擋廣告" + "refusetocheck":{ + "description":"User is telling us they don't wish to investigate something for us", + "message":"我不想檢查這個" }, - "filtereasylist_plus_greek":{ - "description":"language", - "message":"希臘文" + "adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"AdBlock 不會在符合此規則的網域啟用:" }, - "filterchinese":{ + "show_ads_except_for":{ + "description":"Section title for blacklisting section of Customize tab", + "message":"顯示廣告 在所有網站 除了這些網域..." + }, + "filtersavewarning":{ + "description":"Warning when blacklisting manually", + "message":"小心: 如果在這裡的設定出錯,包含官方的過濾清單,可能會失效!
參閱過濾規則語法教學來正確地添加進階黑名單、白名單規則。" + }, + "lang_slovak":{ "description":"language", - "message":"中文" + "message":"斯洛伐克文" }, - "linkhidesection":{ - "description":"Link on the 'Customize' tab", - "message":"隱藏部分頁面" + "checkinfirefoxtitle":{ + "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", + "message":"在 Firefox中檢查 $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "filtereasylist_plus_spanish":{ + "catblock_debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"Show debug statements in Console Log (which slows down CatBlock)" + }, + "savebutton":{ + "description":"Save button", + "message":"儲存" + }, + "catblock_whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"Don't run CatBlock on..." + }, + "filtereasylist_plus_romanian":{ "description":"language", - "message":"西班牙文" + "message":"羅馬尼亞文" }, - "filtermalware":{ - "description":"A filter list", - "message":"惡意軟體防護" + "chromebutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", + "message":"如要隱藏按鈕,請按滑鼠右鍵並選擇隱藏按鈕。在 chrome://chrome/extensions 下,你可以再次顯示它。" }, - "blacklisteroptions1":{ - "description":"Blacklister attribute choosing page message", - "message":"您認為下列哪個規則會在瀏覽頁面時阻擋此廣告?" + "catblock_you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." }, - "enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", - "message":"在此頁面上啟用AdBlock" + "filterisraeli":{ + "description":"language", + "message":"希伯來文" }, - "buttonback":{ - "description":"Back to previous wizard page button", - "message":"返回" + "wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"這個網站用了過時的技術,因此AdBlock 的功能無法在這個網站上運作。 你可以在選項頁中的『自訂』分頁中,手動把它們加入黑名單或者是白名單" }, - "catblock_malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"Should CatBlock notify you when it detects malware?" + "filterczech":{ + "description":"Language names for a filter list", + "message":"捷克和斯洛伐克" }, - "filterlistsrock":{ - "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", - "message":"阻擋最多網站的過濾清單。 你可以:" + "catblock_wizardcantrunonframesets":{ + "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", + "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." }, - "sourcecode":{ - "description":"Link to the source code of AdBlock on the Support tab of the options", - "message":"原始碼是 開源的 !" + "otherfilters":{ + "description":"List for other filters the user subscribed to", + "message":"其他的過濾清單" }, - "catblock_storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" + "options":{ + "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", + "message":"選項" }, - "catblock_status_paused":{ - "description":"Message shown in toolbar button when CatBlock is paused", - "message":"CatBlock is paused." + "catblock_check_checkbox":{ + "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", + "message":"Check the checkbox by the sets of pictures that you want to use." + }, + "updatenowmessage2":{ + "description":"Update filters text + button", + "message":"AdBlock會自動取得更新。 您也可以現在馬上更新" + }, + "fetchinglabel":{ + "description":"Status label", + "message":"正在獲取清單...請稍候。" }, "linkunblock":{ "description":"Link on the 'Customize' tab", "message":"顯示廣告在一個網頁或網域" }, - "blacklistersinglematch":{ - "description":"Tells the user only one match was found", - "message":"頁面上只有 1 個匹配項目被阻擋。" - }, - "filtersavewarning":{ - "description":"Warning when blacklisting manually", - "message":"小心: 如果在這裡的設定出錯,包含官方的過濾清單,可能會失效!
參閱過濾規則語法教學來正確地添加進階黑名單、白名單規則。" - }, - "failedtofetchfilter":{ - "description":"Error messagebox", - "message":"無法獲取此過濾清單!" + "filterturkish":{ + "description":"A filter list", + "message":"土耳其文" }, - "generaloptions":{ - "description":"Title of first tab page", - "message":"一般選項" + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" }, - "adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", - "message":"AdBlock 不會在符合此規則的網域啟用:" + "you_know_thats_a_bad_idea_right":{ + "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", + "message":"使用越多的過濾清單會使 AdBlock 越慢。 過多的過濾清單會使瀏覽器在部份網站當機。 點選『確認』繼續。" }, "nodefaultfilter1":{ "description":"Instructions on ad report page pointing users to EasyList subscriptions list. 'Customize' should be the same text as the name of the 'Customize' tab.", "message":"我們沒有這個語言的預設過濾清單。
請嘗試尋找一個適合的清單來支援這個語言 $link$ 或者 自行在選項中『自訂』分頁加入過濾規則。", "placeholders":{ "link":{ - "example":"here", - "content":"" + "content":"", + "example":"here" } } }, - "subscribebutton":{ - "description":"Subscribe to a list button", - "message":"訂閱" - }, - "advanced_options2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"我是進階玩家,請顯示進階選項" + "catblock_enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", + "message":"Enable CatBlock on this page" }, - "catblock_disableallextensions":{ - "description":"Instruction on ad report page", - "message":"Disable all extensions except for CatBlock." + "clickthead":{ + "description":"When you have to click the ad to continue", + "message":"點選要阻擋的廣告,AdBlock 會協助您設定。" }, - "hide_this_button":{ - "description":"Toolbar button menu entry to hide the AdBlock button", - "message":"隱藏這個按鈕" + "typestylesheet":{ + "description":"A resource type", + "message":"style definition" }, - "updatenowmessage2":{ - "description":"Update filters text + button", - "message":"AdBlock會自動取得更新。 您也可以現在馬上更新" + "adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"AdBlock 更新狀態" }, - "clickupdatefilters":{ - "description":"Instruction on ad report page", - "message":"點選: 更新過濾清單!" + "disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"抱歉, 因為你的一個過濾清單,AdBlock 在這個頁面被關閉" }, - "format_site1_site2_site3":{ - "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", - "message":"格式: ~site1.com|~site2.com|~news.site3.org" + "malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"在 AdBlock 檢測到惡意軟體時發出通知" }, - "blacklisteroptionstitle":{ - "description":"Blacklister options page title", - "message":"最後一步:此廣告是由什麼組成的?" - }, - "blacklistermatches":{ - "description":"Tells the user multiple matches were found", - "message":"頁面上有 $matchcount$ 個匹配項目被阻擋。", - "placeholders":{ - "matchcount":{ - "example":"5", - "content":"$1" - } - } - }, - "contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"也請參考我們的網頁來看看有哪些人對AdBlock做出了貢獻" - }, - "filtereasylist_plus_indonesian":{ - "description":"A filter list", - "message":"印尼文" - }, - "headertype":{ - "description":"Resource list page: title of a column", - "message":"類型" - }, - "update_available":{ - "description":"On the Options > Support page, shows when there are updates available for AdBlock", - "message":"AdBlock 有更新摟! 請至 $here$ 更新.
注意: 如果你想要自動取得這些更新,您只需要點選 Safari > 設定 > 擴充 > 更新
然後選擇 『自動安裝更新』", - "placeholders":{ - "here":{ - "example":"here", - "content":"" - } - } - }, - "filterturkish":{ - "description":"A filter list", - "message":"土耳其文" - }, - "whats_this":{ - "description":"Text of a link pointing to the explanation of a new feature", - "message":"這是?" - }, - "catblock_pause_adblock":{ - "description":"Menu entry to pause CatBlock", - "message":"Pause CatBlock" - }, - "customfilters":{ - "description":"List for custom filters the user subscribed to", - "message":"自訂過濾清單" + "updateddayago":{ + "description":"Label for subscription", + "message":"1 天前更新" }, - "filterlistlink":{ - "description":"Explanation of the filter lists", - "message":"請不要訂閱過多清單,每新增一個清單都會讓瀏覽器的速度降低!更多詳細資訊和過濾清單可在這裡找到。" + "catblock_show_on_adblock_menu":{ + "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", + "message":"Show number of ads blocked on CatBlock menu" }, - "typestylesheet":{ - "description":"A resource type", - "message":"style definition" + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" }, - "blacklisternotsure":{ - "description":"Blacklister attribute choosing page message", - "message":"不確定?直接點選下方的 「阻擋」。" + "blacklisternofilter":{ + "description":"Warning if the user hasn't specified a filter", + "message":"未指定過濾規則!" }, - "filtereasylist_plus_polish":{ + "filtereasylist_plus_german":{ "description":"language", - "message":"波蘭文" + "message":"德文" }, - "showcontextmenus2":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"在右鍵清單中顯示" + "filterstabtitle":{ + "description":"Title of the filter list tab", + "message":"訂閱過濾清單" }, - "flashads":{ - "description":"Title of the final ad report question if the ad didn't appear in Firefox", - "message":"影片和 Flash" + "filtereasylist_plus_greek":{ + "description":"language", + "message":"希臘文" }, - "block_this_ad":{ - "description":"Context and popup menu entry", - "message":"阻擋這個廣告" + "catblock_safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." }, "updatedsecondsago":{ "description":"Label for subscription", "message":"$seconds$ 秒前更新", "placeholders":{ "seconds":{ - "example":"15", - "content":"$1" + "content":"$1", + "example":"15" } } }, - "debuginfo":{ - "description":"Users can click this link to provide debug information to AdBlock staff", - "message":"我們的研發團隊有像您索取除錯資訊(debug info) ? 點我取得這些資訊 !" - }, - "typeobject_subrequest":{ - "description":"A resource type", - "message":"object_subrequest" - }, - "filterhungarian":{ - "description":"language", - "message":"匈牙利文" - }, - "invalidListUrl":{ - "description":"Message when you subscribe to a non-list URL", - "message":"無效的清單網址。 它將會被刪除。" - }, - "reportpubliclyavailable":{ - "description":"Ad report page string, when you're about to submit a report", - "message":"注意: 您的報告可能會被公開。加入任何私人資料前小心留意。" - }, - "reloadpageafterwhitelist":{ - "description":"Checkbox on whitelist wizard", - "message":"重新載入該頁面" - }, - "typepage":{ - "description":"A resource type", - "message":"page" - }, - "filterdutch":{ - "description":"language", - "message":"荷蘭文" - }, - "savereminder":{ - "description":"Reminder to press save", - "message":"別忘了儲存!" + "blacklisternotsure":{ + "description":"Blacklister attribute choosing page message", + "message":"不確定?直接點選下方的 「阻擋」。" }, - "blacklisterattrwillbe":{ - "description":"Checkbox label", - "message":"$attribute$ 將為 $value$", - "placeholders":{ - "attribute":{ - "example":"class", - "content":"$1" - }, - "value":{ - "example":"AdBanner", - "content":"$2" - } - } + "work_around_hulu_problems":{ + "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", + "message":"套用變通方法以避開Hulu.com 無法正常播放的問題 (需要重新啟動瀏覽器)" }, - "close":{ - "description":"Generic message for buttons that close a view or window", - "message":"關閉" + "supportsite":{ + "description":"Link to the support site on the Support tab of the options", + "message":"請來我們的技術與支援網站讓我們聆聽您的意見!" }, - "blacklisterblockedelement":{ - "description":"Tells the user what the blocked element is on the slider page", - "message":"被阻擋的頁面元素:" + "only_block_ads_on_these_sites":{ + "description":"Label for textbox where user enters a list of sites on Customize tab", + "message":"只在以下網站啟用:" }, - "blacklistereditinvalid1":{ - "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", - "message":"無效的過濾規則: $exception$", - "placeholders":{ - "exception":{ - "example":"This filter is not supported", - "content":"$1" - } - } + "catblock_you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"You can slide below to change exactly what pages CatBlock won't run on." }, - "blacklisterwarningnofilter":{ - "description":"Warns the user that no filter was specified", - "message":"警告:未指定過濾規則!" + "tabcustomize":{ + "description":"A tab on the options page", + "message":"自訂" }, - "malwarenotificationcheckboxmessage":{ - "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", - "message":"在 AdBlock 檢測到惡意軟體時發出通知" + "checkinternetconnection":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", + "message":"你必須連上網路才能回報廣告" }, - "ad_report_please":{ - "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", - "message":"如果你看到了廣告,請回報廣告而不是回報bug" + "buttonok":{ + "description":"OK button", + "message":"確定" }, - "show_ads_except_for":{ - "description":"Section title for blacklisting section of Customize tab", - "message":"顯示廣告 在所有網站 除了這些網域..." + "linkhidesection":{ + "description":"Link on the 'Customize' tab", + "message":"隱藏部分頁面" }, - "wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"這個網站用了過時的技術,因此AdBlock 的功能無法在這個網站上運作。 你可以在選項頁中的『自訂』分頁中,手動把它們加入黑名單或者是白名單" + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" }, "show_on_adblock_menu":{ "description":"Label for checkbox letting user choose whether the AdBlock popup menu should show the number of ads blocked", "message":"在選單中顯示 AdBlock 阻擋了多少廣告" }, - "options":{ - "description":"The text of the link on chrome://chrome/extensions that gets you to the Options page for an extension", - "message":"選項" + "adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"AdBlock - 廣告回報" }, - "whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"不要在此網域使用 AdBlock..." + "filtereasylist_plus_bulgarian":{ + "description":"language", + "message":"保加利亞文" }, - "typexmlhttprequest":{ - "description":"A resource type", - "message":"xmlhttprequest" + "dont_run_on_pages_on_domain":{ + "description":"Menu entry to open the whitelist wizard", + "message":"不在這個網域的頁面使用" }, - "catblock_latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for CatBlock", - "message":"CatBlock is up-to-date!" + "customfilters":{ + "description":"List for custom filters the user subscribed to", + "message":"自訂過濾清單" }, - "blocked_ads":{ - "description":"Title for popup menu section showing number of ads blocked", - "message":"被阻擋的廣告:" + "blockmoreads":{ + "description":"Section header on the 'Customize' tab", + "message":"阻擋更多廣告:" }, - "filteradblock_custom":{ - "description":"A filter list", - "message":"AdBlock 自訂過濾清單 (推薦)" + "lang_ukranian":{ + "description":"language", + "message":"烏克蘭文" }, - "languagedropdowndescription":{ - "description":"Dropdown list for language-specific filters", - "message":"替其他語言新增過濾清單 " + "blacklistertype":{ + "description":"node name is called 'Type'", + "message":"類型" }, - "filterlatvian":{ - "description":"A filter list", - "message":"拉脫維亞文" + "catblock_status_paused":{ + "description":"Message shown in toolbar button when CatBlock is paused", + "message":"CatBlock is paused." }, - "enableotherextensionscomplete":{ - "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", - "message":"所有先前停用的擴充已重新啟用" + "excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"AdBlock 網域白名單" + }, + "blacklisterwarningnofilter":{ + "description":"Warns the user that no filter was specified", + "message":"警告:未指定過濾規則!" }, "blockurlwithtext":{ "description":"Message of the url-blocking area", "message":"阻擋包含以下字串的網址" }, - "csstomatch":{ - "description":"Message of the css-hiding area", - "message":"符合的CSS" + "buttonexclude":{ + "description":"Button for excluding a domain in the whitelister dialog", + "message":"排除" }, - "operabutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", - "message":"如需隱藏按鈕,請到 opera://extensions 並且點選 『從工具列上隱藏』選項。 你可以取消該選項以顯示該按鈕" + "filtereasylist_plus_french":{ + "description":"language", + "message":"法文" }, - "clickthead":{ - "description":"When you have to click the ad to continue", - "message":"點選要阻擋的廣告,AdBlock 會協助您設定。" + "blacklisteroptionstitle":{ + "description":"Blacklister options page title", + "message":"最後一步:此廣告是由什麼組成的?" }, - "catblock_example_flickr_search":{ - "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", - "message":"a search for photos (e.g. sailboat race)" + "catblock_pause_adblock":{ + "description":"Menu entry to pause CatBlock", + "message":"Pause CatBlock" }, - "report_ad_on_page":{ - "description":"Entry in the AdBlock button menu", - "message":"回報這個頁面的廣告" + "buttonlooksgood":{ + "description":"Looks good button", + "message":"看來不錯" }, - "catblock_excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"The domain or url where CatBlock shouldn't block anything" + "catblock_show_on_adblock_button":{ + "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", + "message":"Show on CatBlock button" }, - "catblock_tabcustomizetitle":{ + "tabcustomizetitle":{ "description":"Title of the customize tab", - "message":"Customize CatBlock" + "message":"自訂 AdBlock" }, - "catblock_disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"CatBlock is disabled on this page." + "malwarenotfound":{ + "description":"On the ad report page, the ads the user is seeing are probably not caused by malware/adware", + "message":"沒有偵測到已知的惡意軟體" }, - "filterrussian":{ - "description":"Language names for a filter list", - "message":"俄羅斯和烏克蘭" + "dont_run_on_this_page":{ + "description":"Menu entry to whitelist a page", + "message":"不要在這個頁面使用" }, - "typescript":{ - "description":"A resource type", - "message":"script" + "filtereasylist_plus_finnish":{ + "description":"language", + "message":"芬蘭文" }, - "adblocksupport":{ - "description":"Title of the support tab", - "message":"AdBlock 支援與協助" + "adblockinglist":{ + "description":"List for subscribed ad blocking fiters", + "message":"廣告過濾清單" }, - "tabcustomizetitle":{ - "description":"Title of the customize tab", - "message":"自訂 AdBlock" + "updateddaysago":{ + "description":"Label for subscription", + "message":"$days$ 天前更新", + "placeholders":{ + "days":{ + "content":"$1", + "example":"15" + } + } }, - "latest_version":{ - "description":"On the Options > Support page, shows when there are no updates available for AdBlock", - "message":"AdBlock 是最新的!" + "typeobject":{ + "description":"A resource type", + "message":"interactive object" }, - "dont_run_on_pages_on_domain":{ - "description":"Menu entry to open the whitelist wizard", - "message":"不在這個網域的頁面使用" + "blacklisteroptions1":{ + "description":"Blacklister attribute choosing page message", + "message":"您認為下列哪個規則會在瀏覽頁面時阻擋此廣告?" }, - "filterisraeli":{ - "description":"language", - "message":"希伯來文" + "blocked_ads":{ + "description":"Title for popup menu section showing number of ads blocked", + "message":"被阻擋的廣告:" }, - "disabled_by_filter_lists":{ - "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", - "message":"抱歉, 因為你的一個過濾清單,AdBlock 在這個頁面被關閉" + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." }, - "catblock_safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"You are using an old version of Safari. Get the latest version in order to use the CatBlock toolbar button to pause CatBlock, whitelist websites, and report ads. Upgrade now." + "typemain_frame":{ + "description":"A resource type", + "message":"page" }, - "catblock_add_more_photos":{ - "description":"Introduction to the examples of custom image lists. Leave the and as they are.", - "message":"Add some photos from Flickr! You can enter:" + "filtereasylist_plun_korean":{ + "description":"language", + "message":"韓文" }, "undo_last_block":{ "description":"Menu entry to let the user cancel the result of running the blacklist wizard", "message":"取消我在此網域上建立的阻擋規則" }, - "blacklistereditfilter":{ - "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", - "message":"請在下面輸入正確的過濾規則,並點選 「確定」" + "manualfilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"手動編輯您的過濾規則:" }, - "updateddayago":{ - "description":"Label for subscription", - "message":"1 天前更新" + "filtereasylist":{ + "description":"A filter list", + "message":"EasyList (推薦)" }, - "betalabel":{ - "description":"Label for beta features in AdBlock Options", - "message":"Beta" + "slidertitle":{ + "description":"Blacklister slider page title", + "message":"第一步:找出要阻擋的目標" }, - "blocked_n_on_this_page":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked on this page. $count$ will be a number between 1 and 999.", - "message":"$count$ 此頁面上", - "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123" - } - } + "contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"也請參考我們的網頁來看看有哪些人對AdBlock做出了貢獻" }, - "updatedhourago":{ - "description":"Label for subscription", - "message":"1 小時前更新" + "modifydomain":{ + "description":"Caption for the whitelist wizard slider that modifies the domain part of a URL", + "message":"網站:" }, - "optionsversion":{ - "description":"Version number", - "message":"版本 $version$", - "placeholders":{ - "version":{ - "example":"2.0.9", - "content":"$1" - } - } + "here":{ + "description":"This message is injected in other strings as a link/button", + "message":"這裡 " }, - "removefromlist":{ - "description":"Label to remove a custom filter", - "message":"從清單列表中移除" + "typepopup":{ + "description":"A resource type", + "message":"彈出視窗" }, - "other":{ - "description":"Multiple choice option", - "message":"其他" + "latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for AdBlock", + "message":"AdBlock 是最新的!" }, - "typehiding":{ - "description":"A resource type", - "message":"hiding" + "reloadpageafterwhitelist":{ + "description":"Checkbox on whitelist wizard", + "message":"重新載入該頁面" }, - "tabfilterlists":{ - "description":"A tab on the options page", - "message":"過濾清單" + "englishonly":{ + "description":"Lets the user know that a link/page is available in English only", + "message":"僅限英文" }, - "cantblockflashwarning":{ - "description":"Text of the final ad report question", - "message":"該廣告是出現在影片或 Flash 遊戲等外掛程式中?" + "pagelanguagecheck":{ + "description":"Question on ad report page", + "message":"此頁面使用什麼語言?" }, - "otherfilters":{ - "description":"List for other filters the user subscribed to", - "message":"其他的過濾清單" + "status_paused":{ + "description":"Message shown in toolbar button when AdBlock is paused", + "message":"AdBlock 已暫停" }, - "orchrome":{ - "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", - "message":"或是 Chrome" + "clickdisableotherextensions":{ + "description":"On the ad report page, an alternative way to disable other extensions", + "message":" 或者 , 按下此按鈕以便完成上述所有操作: 停用所有擴充 " }, - "buttonblockit":{ - "description":"Block button", - "message":"阻擋" + "whatsnew":{ + "description":"Link to display the changelog on the Support tab of the options", + "message":"在新版中有哪些新功能? 請參考 更新日誌!" }, - "subscribingfinished":{ - "description":"abp: link subscriber result", - "message":"完成" + "filterantisocial":{ + "description":"A filter list", + "message":"反社群網站過濾器 (社群網站的按鈕會被自動過濾掉)" }, - "block_an_ad_on_this_page":{ - "description":"Toolbar button menu entry and context menu entry", - "message":"阻擋此頁面上的廣告" + "findingads":{ + "description":"When you press ctrl-shift-K the blacklister searches for ads", + "message":"正在尋找廣告...

這只需要一點時間。" }, - "refusetocheck":{ - "description":"User is telling us they don't wish to investigate something for us", - "message":"我不想檢查這個" + "advanced_options2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"我是進階玩家,請顯示進階選項" }, - "catblock_options":{ - "description":"Title of the CatBlock options page tab", - "message":"CatBlock Options" + "blockanadtitle":{ + "description":"Title of the first two dialogs of the blacklister", + "message":"阻擋廣告" }, - "lang_english":{ - "description":"language", - "message":"英文" + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." }, - "tabcustomize":{ - "description":"A tab on the options page", - "message":"自訂" + "warning_overrules_filters":{ + "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", + "message":"警告: 你會在其他網站看見廣告!
你會在其他網站看見廣告。" }, - "pause_adblock":{ - "description":"Menu entry to pause AdBlock", - "message":"暫停 AdBlock" + "enableotherextensionscomplete":{ + "description":"On the ad report page, alert notifying users that we've re-enabled extensions that were previously disabled", + "message":"所有先前停用的擴充已重新啟用" }, - "subscribeconfirm":{ - "description":"Prompt question before subscribing to the filter list", - "message":"您確定要訂閱 $title$ 過濾清單嗎", + "customfilterserrormessage":{ + "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", + "message":"以下過濾器
$filter$
有錯誤訊息:
$message$", "placeholders":{ - "title":{ - "example":"Prebake", - "content":"$1" + "message":{ + "content":"$2", + "example":"invalid filter" + }, + "filter":{ + "content":"$1", + "example":"@@.ad" } } }, - "manuallyenableotherextensions":{ - "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", - "message":"請至擴充頁面來啟用您以前曾經停用的擴充" + "whatmakesadblocktick":{ + "description":"Subtitle on the Support tab of the options", + "message":"想看看 AdBlock 是如何精益求精的嗎?" }, - "blockdomain":{ - "description":"Message of the url and css -blocking area", - "message":"套用的網域" + "filteradblock_custom":{ + "description":"A filter list", + "message":"AdBlock 自訂過濾清單 (推薦)" }, - "filtereasylist_plun_korean":{ - "description":"language", - "message":"韓文" + "catblock_disableallextensions":{ + "description":"Instruction on ad report page", + "message":"Disable all extensions except for CatBlock." }, - "modifypath":{ - "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", - "message":"頁面:" - }, - "foundbug":{ - "description":"Subtitle on the Support tab of the options", - "message":"發現了bug?" - }, - "slidertitle":{ - "description":"Blacklister slider page title", - "message":"第一步:找出要阻擋的目標" - }, - "lang_czech":{ - "description":"language", - "message":"捷克文" + "whats_this":{ + "description":"Text of a link pointing to the explanation of a new feature", + "message":"這是?" }, - "you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"使用越多的過濾清單會使 AdBlock 越慢。 過多的過濾清單會使瀏覽器在部份網站當機。 點選『確認』繼續。" + "catblock_update_available":{ + "description":"On the Options > Support page, shows when there are updates available for CatBl", + "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "placeholders":{ + "here":{ + "content":"", + "example":"here" + } + } }, "oradblockforchrome":{ "description":"Used for placeholder in checkinfirefox_2 string", "message":"或是 Chrome 版 AdBlock" }, - "blockanadtitle":{ - "description":"Title of the first two dialogs of the blacklister", - "message":"阻擋廣告" + "catblock_options":{ + "description":"Title of the CatBlock options page tab", + "message":"CatBlock Options" }, - "catblock_contributors":{ - "description":"Link to the contributors page on the Support tab of the options", - "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + "translator_credit":{ + "description":"Will be followed by a list of translator names (separate string)", + "message":"翻譯貢獻:" }, - "catblock_debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"Show debug statements in Console Log (which slows down CatBlock)" + "format_site1_site2_site3":{ + "description":"Example showing users how to input a list of sites on the Customize tab. You can translate the 'news' and 'siteN' but leave the '|'s and '~'s in place.", + "message":"格式: ~site1.com|~site2.com|~news.site3.org" }, - "filterdanish":{ - "description":"language", - "message":"丹麥文" + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" }, - "typesub_frame":{ - "description":"A resource type", - "message":"frame" + "flashads":{ + "description":"Title of the final ad report question if the ad didn't appear in Firefox", + "message":"影片和 Flash" }, - "buttonedit":{ - "description":"Edit filter manually button", - "message":"編輯" + "filterlistsrock":{ + "description":"Header text on the Customize tab. 'Filter lists' should be the same text as the name of the 'Filter lists' tab.", + "message":"阻擋最多網站的過濾清單。 你可以:" }, - "findingads":{ - "description":"When you press ctrl-shift-K the blacklister searches for ads", - "message":"正在尋找廣告...

這只需要一點時間。" + "safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"如需隱藏此按鈕,請到 opera://extensions 並且點選 『從工具列上隱藏』選項。 你可以取消該選項以再次顯示此按鈕" }, - "excludedomainorurl":{ - "description":"Message of the exclude area", - "message":"AdBlock 網域白名單" + "dropboxerrorforfilters":{ + "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", + "message":"你已經到達了 Dropbox 空間限制。 請在您的過濾清單中移除一些項目並再試一次" }, - "sliderexplanation":{ - "description":"Blacklister slider page message", - "message":"滑動控制器直到頁面上的廣告已被正確地阻擋。" + "filterhungarian":{ + "description":"language", + "message":"匈牙利文" }, - "blocked_n_in_total":{ - "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", - "message":"$count$ 總阻擋數", + "orchrome":{ + "description":"Used for placeholder in checkinfirefoxtitle and checkinfirefox_1 strings", + "message":"或是 Chrome" + }, + "subscribebutton":{ + "description":"Subscribe to a list button", + "message":"訂閱" + }, + "pwyw":{ + "description":"Text of a payment request link", + "message":"想付多少,就付多少!" + }, + "manualexcludefilteredit":{ + "description":"Subtitle on the 'Customize' tab", + "message":"編輯被停用的清單:" + }, + "reportfilterlistproblem":{ + "description":"Telling the user to report an ad to a filter list maintainer", + "message":"這是廣告過濾清單方面的問題。請在這裡回報: $link$", "placeholders":{ - "count":{ - "example":"The number of ads blocked. Do not make any changes to this placeholder when translating.", - "content":"123,456" + "link":{ + "content":"$1", + "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums" } } }, - "reloadadpage":{ - "description":"Instruction on ad report page", - "message":"重新載入出現廣告的頁面。" + "blacklisterblockedelement":{ + "description":"Tells the user what the blocked element is on the slider page", + "message":"被阻擋的頁面元素:" }, - "checkinfirefox_1":{ - "description":"instruction for how to check Firefox/Chrome for a reported ad", - "message":"如果您尚未安裝的話,請先安裝 Firefox $chrome$", + "reportpubliclyavailable":{ + "description":"Ad report page string, when you're about to submit a report", + "message":"注意: 您的報告可能會被公開。加入任何私人資料前小心留意。" + }, + "typepage":{ + "description":"A resource type", + "message":"page" + }, + "catblock_example_flickr_id":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset ID (e.g. $example$)", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "example":{ + "content":"346406" } } }, - "catblock_enable_adblock":{ - "description":"Link text to un-whitelist a page, displayed immediately after 'CatBlock is disabled on this page'", - "message":"Enable CatBlock on this page" + "adstillappear":{ + "description":"Question on ad report page", + "message":"廣告是否還在?" }, - "adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"AdBlock 更新狀態" + "typeother":{ + "description":"A resource type", + "message":"其他" }, - "no":{ - "description":"A negative response to a question", - "message":"否" + "clickupdatefilters":{ + "description":"Instruction on ad report page", + "message":"點選: 更新過濾清單!" }, - "lang_ukranian":{ + "filteritalian":{ "description":"language", - "message":"烏克蘭文" + "message":"義大利文" }, - "updatedminutesago":{ - "description":"Label for subscription", - "message":"$minutes$ 分鐘前更新", - "placeholders":{ - "minutes":{ - "example":"15", - "content":"$1" - } - } + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" }, - "filtereasylist_plus_french":{ - "description":"language", - "message":"法文" + "operabutton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Opera displays on the Extensions page.", + "message":"如需隱藏按鈕,請到 opera://extensions 並且點選 『從工具列上隱藏』選項。 你可以取消該選項以顯示該按鈕" }, - "clickdisableotherextensions":{ - "description":"On the ad report page, an alternative way to disable other extensions", - "message":" 或者 , 按下此按鈕以便完成上述所有操作: 停用所有擴充 " + "somethingwentwrong":{ + "description":"Displayed when AdBlock is checking the newest available version and an error occurs", + "message":"在檢查更新的時候出了點錯誤" }, - "typeobject":{ + "disableforsafaristepone":{ + "description":"Step 1 for disabling Safari extensions", + "message":"選擇 Safari 選單 → 設定 → 擴充" + }, + "typeobject_subrequest":{ "description":"A resource type", - "message":"interactive object" + "message":"object_subrequest" }, - "updatedrightnow":{ - "description":"Label for subscription", - "message":"剛剛更新" + "modifypath":{ + "description":"Caption for the whitelist wizard slider that modifies the path part of a URL", + "message":"頁面:" }, - "savebutton":{ - "description":"Save button", - "message":"儲存" + "catblock_malwarenotificationcheckboxmessage":{ + "description":"Checkbox displayed when subscribing to the Malware filter list on the Filter lists tab of the Options page", + "message":"Should CatBlock notify you when it detects malware?" }, - "warning_overrules_filters":{ - "description":"Message on the 'Customize' tab of the options page, explaining the danger of adding a blacklisting filter", - "message":"警告: 你會在其他網站看見廣告!
你會在其他網站看見廣告。" + "reloadadpage":{ + "description":"Instruction on ad report page", + "message":"重新載入出現廣告的頁面。" }, - "malwarenotificationdisablethesemessages":{ - "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", - "message":"停用這些通知" + "unsubscribedlabel":{ + "description":"Status label", + "message":"已取消訂閱。" }, - "subscribingtitle":{ - "description":"abp: link subscriber title", - "message":"正在訂閱過濾清單..." + "typemedia":{ + "description":"A resource type", + "message":"audio/video" }, - "updateddaysago":{ - "description":"Label for subscription", - "message":"$days$ 天前更新", + "catblock_example_flickr_url":{ + "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", + "message":"a Flickr photoset URL (e.g. $example$)", "placeholders":{ - "days":{ - "example":"15", - "content":"$1" + "example":{ + "content":"www.flickr.com/photos/michael_hughes/sets/346406/" } } }, - "typesubdocument":{ - "description":"A resource type", - "message":"frame" - }, - "filtereasyprivacy":{ + "filterlatvian":{ "description":"A filter list", - "message":"EasyPrivacy (隱私保護)" + "message":"拉脫維亞文" }, - "malwarenotificationlearnmore":{ - "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", - "message":"瞭解更多惡意軟體的相關資訊" + "block_an_ad_on_this_page":{ + "description":"Toolbar button menu entry and context menu entry", + "message":"阻擋此頁面上的廣告" }, - "filterczech":{ - "description":"Language names for a filter list", - "message":"捷克和斯洛伐克" + "buttonblockit":{ + "description":"Block button", + "message":"阻擋" }, - "optionstitle":{ - "description":"Title for the options page", - "message":"AdBlock 選項" + "stop_blocking_ads":{ + "description":"Section header on the 'Customize' tab", + "message":"停止阻擋廣告:" }, - "cleanuplist2":{ - "description":"Option at the bottom of the 'Customize' options tab", - "message":"清空此清單" + "disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"除了 AdBlock 維持勾選以外,取消所有其他擴充的『啟用』核取方塊" }, - "filterantisocial":{ - "description":"A filter list", - "message":"反社群網站過濾器 (社群網站的按鈕會被自動過濾掉)" + "catblock_tabcustomizetitle":{ + "description":"Title of the customize tab", + "message":"Customize CatBlock" }, - "debuginlogoption":{ - "description":"Checkbox on the 'General' tab of the Options page", - "message":"在 Console Log 中顯示除錯資訊(將會降低 AdBlock 效能)" + "removefromlist":{ + "description":"Label to remove a custom filter", + "message":"從清單列表中移除" }, - "dropboxerrorforfilters":{ - "description":"Message to Dropbox sync users on the Customize tab, custom filters / disabled.", - "message":"你已經到達了 Dropbox 空間限制。 請在您的過濾清單中移除一些項目並再試一次" + "failedtofetchfilter":{ + "description":"Error messagebox", + "message":"無法獲取此過濾清單!" }, - "unpause_adblock":{ - "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", - "message":"繼續AdBlock的運作" + "cantblockflash":{ + "description":"Result of the final ad report question", + "message":"目前還無法阻擋在 Flash 或其他外掛程式中的廣告。此功能尚在等待瀏覽器與 WebKit 支援。" }, - "catblock_unpause_adblock":{ - "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", - "message":"Unpause CatBlock" + "catblock_adblockupdates":{ + "description":"Subtitle on the Support tab of the options", + "message":"CatBlock updates" }, - "filtereasylist_plus_german":{ + "you_can_slide_to_change":{ + "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", + "message":"你可以滑動來改變 AdBlock 網域白名單。" + }, + "typehiding":{ + "description":"A resource type", + "message":"hiding" + }, + "disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"AdBlock 在這個頁面關閉。" + }, + "cantblockflashwarning":{ + "description":"Text of the final ad report question", + "message":"該廣告是出現在影片或 Flash 遊戲等外掛程式中?" + }, + "filterrussian":{ + "description":"Language names for a filter list", + "message":"俄羅斯和烏克蘭" + }, + "filtereasylist_plus_spanish":{ "description":"language", - "message":"德文" + "message":"西班牙文" + }, + "block_this_ad":{ + "description":"Context and popup menu entry", + "message":"阻擋這個廣告" + }, + "catblock_disabled_on_this_page":{ + "description":"Message shown in toolbar button on web pages that have been whitelisted", + "message":"CatBlock is disabled on this page." }, "blacklisterblocksalloftype":{ "description":"Warns the user that all elements of type X will be blocked", "message":"注意:此過濾規則會阻擋頁面上所有的 $elementtype$ 元素!", "placeholders":{ "elementtype":{ - "example":"DIV", - "content":"$1" + "content":"$1", + "example":"DIV" } } }, - "here":{ - "description":"This message is injected in other strings as a link/button", - "message":"這裡 " - }, - "work_around_hulu_problems":{ - "description":"Advanced Options page checkbox, which users only need to use if Hulu.com videos break. It directs the user to restart their browser in order for changes to the checkbox to take effect.", - "message":"套用變通方法以避開Hulu.com 無法正常播放的問題 (需要重新啟動瀏覽器)" - }, - "buttonexclude":{ - "description":"Button for excluding a domain in the whitelister dialog", - "message":"排除" + "disableyoutubestreamingads":{ + "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", + "message":"啟用 ClickToFlash 相容性模式" }, - "pagelanguagecheck":{ - "description":"Question on ad report page", - "message":"此頁面使用什麼語言?" + "no":{ + "description":"A negative response to a question", + "message":"否" }, - "catblock_whitelistertitle2":{ - "description":"The title of the whitelister dialog", - "message":"Don't run CatBlock on..." + "enable_adblock":{ + "description":"Link text to un-whitelist a page, displayed immediately after 'AdBlock is disabled on this page'", + "message":"在此頁面上啟用AdBlock" }, - "typeimage":{ - "description":"A resource type", - "message":"image" + "blacklisterthefilter":{ + "description":"Blacklister attribute choosing page message", + "message":"即將套用的規則,仍可在選項中編輯:" }, - "translator_credit":{ - "description":"Will be followed by a list of translator names (separate string)", - "message":"翻譯貢獻:" + "hide_this_button":{ + "description":"Toolbar button menu entry to hide the AdBlock button", + "message":"隱藏這個按鈕" }, - "loading":{ - "description":"Generic message displayed during processes that take some time", - "message":"載入中..." + "subscribingfailed":{ + "description":"abp: link subscriber result", + "message":"失敗" }, - "blacklistclickmessage":{ - "description":"Message at the top of the blacklist options tab", - "message":"右鍵點選頁面上的廣告來阻擋它 ─ 或在此處手動阻擋。" + "pause_adblock":{ + "description":"Menu entry to pause AdBlock", + "message":"暫停 AdBlock" }, - "chromebutton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Hide Button' should match the text that Chrome displays when you right click a toolbar button.", - "message":"如要隱藏按鈕,請按滑鼠右鍵並選擇隱藏按鈕。在 chrome://chrome/extensions 下,你可以再次顯示它。" + "retryaftersubscribe":{ + "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", + "message":"先訂閱此過濾清單,然後重試一次:$list_title$", + "placeholders":{ + "list_title":{ + "content":"$1", + "example":"French filters" + } + } }, - "filtereasylist_plus_romanian":{ + "lang_english":{ "description":"language", - "message":"羅馬尼亞文" - }, - "manualexcludefilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"編輯被停用的清單:" + "message":"英文" }, - "catblock_you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"You can slide below to change exactly what pages CatBlock won't run on." + "showcontextmenus2":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"在右鍵清單中顯示" }, - "somethingwentwrong":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs", - "message":"在檢查更新的時候出了點錯誤" + "fixityourself":{ + "description":"Telling users who won't report an ad to us how to handle it for themselves", + "message":"您還是可以在「黑名單」頁面中手動阻擋此廣告。" }, - "safaributton_how_to_hide2":{ - "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", - "message":"如需隱藏此按鈕,請到 opera://extensions 並且點選 『從工具列上隱藏』選項。 你可以取消該選項以再次顯示此按鈕" + "lang_russian":{ + "description":"language", + "message":"俄文" }, - "updatedminuteago":{ - "description":"Label for subscription", - "message":"1 分鐘前更新" + "ad_report_please":{ + "description":"Link to the ad report page on our support site. This is found on the Support tab of the options.", + "message":"如果你看到了廣告,請回報廣告而不是回報bug" }, - "typemain_frame":{ - "description":"A resource type", - "message":"page" + "safari50_updatenotice":{ + "description":"A message shown to Safari 5.0 users urging them to upgrade", + "message":"你正在使用舊版的 Safari,請 升級您的瀏覽器 以便使用在工具列按鈕中暫停 AdBlock,白名單,回報廣告等等最新的功能。" }, - "catblock_add_photos":{ - "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", - "message":"Add Photos" + "filtereasyprivacy":{ + "description":"A filter list", + "message":"EasyPrivacy (隱私保護)" }, - "catblock_example_flickr_url":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset URL (e.g. $example$)", - "placeholders":{ - "example":{ - "content":"www.flickr.com/photos/michael_hughes/sets/346406/" - } - } + "catblock_storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"You exceeded the amount of storage CatBlock can use. Please unsubscribe from some filter lists!" }, - "catblock_you_know_thats_a_bad_idea_right":{ - "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", - "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + "typexmlhttprequest":{ + "description":"A resource type", + "message":"xmlhttprequest" }, - "catblock_update_available":{ - "description":"On the Options > Support page, shows when there are updates available for CatBl", - "message":"There's an update for CatBlock! Go $here$ to update.
Note: If you want to receive updates automatically, just click on Safari > Preferences > Extensions > Updates
and check option 'Install updates automatically'.", + "blacklisterattrwillbe":{ + "description":"Checkbox label", + "message":"$attribute$ 將為 $value$", "placeholders":{ - "here":{ - "content":"", - "example":"here" + "attribute":{ + "content":"$1", + "example":"class" + }, + "value":{ + "content":"$2", + "example":"AdBanner" } } }, @@ -904,269 +859,354 @@ "description":"Link for custom subscription", "message":"或輸入過濾清單網址:" }, - "safari50_updatenotice":{ - "description":"A message shown to Safari 5.0 users urging them to upgrade", - "message":"你正在使用舊版的 Safari,請 升級您的瀏覽器 以便使用在工具列按鈕中暫停 AdBlock,白名單,回報廣告等等最新的功能。" - }, - "selectlanguage":{ - "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", - "message":" --選擇語言-- " - }, - "disableforsafaristepone":{ - "description":"Step 1 for disabling Safari extensions", - "message":"選擇 Safari 選單 → 設定 → 擴充" - }, - "stop_blocking_ads":{ - "description":"Section header on the 'Customize' tab", - "message":"停止阻擋廣告:" + "subscribingfinished":{ + "description":"abp: link subscriber result", + "message":"完成" }, - "description2":{ - "description":"Extension description in manifest. Should not exceed 132 characters.", - "message":"最受歡迎的 Chrome 擴充,有超過四千萬名的用戶正在用 AdBlock 阻擋網頁上的廣告" + "unpause_adblock":{ + "description":"Link text to unpause AdBlock, displayed immediately after 'AdBlock is paused'", + "message":"繼續AdBlock的運作" }, - "adstillappear":{ - "description":"Question on ad report page", - "message":"廣告是否還在?" + "languagedropdowndescription":{ + "description":"Dropdown list for language-specific filters", + "message":"替其他語言新增過濾清單 " }, - "tabsupport":{ - "description":"A tab on the options page", - "message":"支援與協助" + "loading":{ + "description":"Generic message displayed during processes that take some time", + "message":"載入中..." }, - "filtereasylist_plus_bulgarian":{ - "description":"language", - "message":"保加利亞文" + "blacklistclickmessage":{ + "description":"Message at the top of the blacklist options tab", + "message":"右鍵點選頁面上的廣告來阻擋它 ─ 或在此處手動阻擋。" }, - "whatmakesadblocktick":{ - "description":"Subtitle on the Support tab of the options", - "message":"想看看 AdBlock 是如何精益求精的嗎?" + "catblock_disableforchromeandsafaristeptwo":{ + "description":"Step 2 for disabling Chrome and Safari extensions", + "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." }, - "subscribingfailed":{ - "description":"abp: link subscriber result", - "message":"失敗" + "filtermalware":{ + "description":"A filter list", + "message":"惡意軟體防護" }, - "blacklisterthefilter":{ - "description":"Blacklister attribute choosing page message", - "message":"即將套用的規則,仍可在選項中編輯:" + "report_ad_on_page":{ + "description":"Entry in the AdBlock button menu", + "message":"回報這個頁面的廣告" }, - "manualfilteredit":{ - "description":"Subtitle on the 'Customize' tab", - "message":"手動編輯您的過濾規則:" + "debuginlogoption":{ + "description":"Checkbox on the 'General' tab of the Options page", + "message":"在 Console Log 中顯示除錯資訊(將會降低 AdBlock 效能)" }, - "filteritalian":{ - "description":"language", - "message":"義大利文" + "checkinfirefox_1":{ + "description":"instruction for how to check Firefox/Chrome for a reported ad", + "message":"如果您尚未安裝的話,請先安裝 Firefox $chrome$", + "placeholders":{ + "chrome":{ + "content":"", + "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)" + } + } }, - "typepopup":{ - "description":"A resource type", - "message":"彈出視窗" + "storage_quota_exceeded":{ + "description":"Message shown when the user uses more storage than allowed by the browser", + "message":"你超出了 AdBlock 能使用的儲存空間。 請取消訂閱一些清單!" }, - "catblock_check_checkbox":{ - "description":"Shown on the CatBlock tab on the options page. Don't translate the word CatBlock.", - "message":"Check the checkbox by the sets of pictures that you want to use." + "description2":{ + "description":"Extension description in manifest. Should not exceed 132 characters.", + "message":"最受歡迎的 Chrome 擴充,有超過四千萬名的用戶正在用 AdBlock 阻擋網頁上的廣告" }, - "blacklistertype":{ - "description":"node name is called 'Type'", - "message":"類型" + "foundbug":{ + "description":"Subtitle on the Support tab of the options", + "message":"發現了bug?" }, - "lang_slovak":{ + "lang_czech":{ "description":"language", - "message":"斯洛伐克文" - }, - "filterstabtitle":{ - "description":"Title of the filter list tab", - "message":"訂閱過濾清單" - }, - "dont_run_on_this_page":{ - "description":"Menu entry to whitelist a page", - "message":"不要在這個頁面使用" - }, - "only_block_ads_on_these_sites":{ - "description":"Label for textbox where user enters a list of sites on Customize tab", - "message":"只在以下網站啟用:" - }, - "supportsite":{ - "description":"Link to the support site on the Support tab of the options", - "message":"請來我們的技術與支援網站讓我們聆聽您的意見!" + "message":"捷克文" }, - "status_paused":{ - "description":"Message shown in toolbar button when AdBlock is paused", - "message":"AdBlock 已暫停" + "catblock_excludedomainorurl":{ + "description":"Message of the exclude area", + "message":"The domain or url where CatBlock shouldn't block anything" }, - "storage_quota_exceeded":{ - "description":"Message shown when the user uses more storage than allowed by the browser", - "message":"你超出了 AdBlock 能使用的儲存空間。 請取消訂閱一些清單!" + "typescript":{ + "description":"A resource type", + "message":"script" }, - "cantblockflash":{ - "description":"Result of the final ad report question", - "message":"目前還無法阻擋在 Flash 或其他外掛程式中的廣告。此功能尚在等待瀏覽器與 WebKit 支援。" + "catblock_add_more_photos":{ + "description":"Introduction to the examples of custom image lists. Leave the and as they are.", + "message":"Add some photos from Flickr! You can enter:" }, - "buttonok":{ - "description":"OK button", - "message":"確定" + "tabfilterlists":{ + "description":"A tab on the options page", + "message":"過濾清單" }, - "fixityourself":{ - "description":"Telling users who won't report an ad to us how to handle it for themselves", - "message":"您還是可以在「黑名單」頁面中手動阻擋此廣告。" + "malwarenotificationdisablethesemessages":{ + "description":"Button on the malware notification to disable future notifications. Message should be under 45 characters!", + "message":"停用這些通知" }, - "tabgeneral":{ - "description":"A tab on the options page", - "message":"一般" + "filterchinese":{ + "description":"language", + "message":"中文" }, - "catblock_status_disabled":{ - "description":"Message shown in toolbar button on web pages that disallow extensions, such as the Extensions Gallery or about:blank", - "message":"CatBlock can not run on this domain." + "blacklistereditinvalid1":{ + "description":"Messagebox if the manually edited filter is invalid. Error messages are not translated.", + "message":"無效的過濾規則: $exception$", + "placeholders":{ + "exception":{ + "content":"$1", + "example":"This filter is not supported" + } + } }, - "catblock_wizardcantrunonframesets":{ - "description":"Message (alert) shown when the user tries to use a blacklist/whitelist wizard on an old website", - "message":"This feature does not work on this site because it uses out of date technology. You can blacklist or whitelist resources manually in the 'Customize' tab of the options page." + "subscribingtitle":{ + "description":"abp: link subscriber title", + "message":"正在訂閱過濾清單..." }, - "typeother":{ - "description":"A resource type", - "message":"其他" + "manuallyenableotherextensions":{ + "description":"On the ad report page, alert notifying users that they will need to manually reenable the extensions", + "message":"請至擴充頁面來啟用您以前曾經停用的擴充" }, - "blacklisternofilter":{ - "description":"Warning if the user hasn't specified a filter", - "message":"未指定過濾規則!" + "blacklistermatches":{ + "description":"Tells the user multiple matches were found", + "message":"頁面上有 $matchcount$ 個匹配項目被阻擋。", + "placeholders":{ + "matchcount":{ + "content":"$1", + "example":"5" + } + } }, - "catblock_show_on_adblock_button":{ - "description":"Label for checkbox letting user choose whether the toolbar button should show a badge with the number of ads blocked", - "message":"Show on CatBlock button" + "updatedhourago":{ + "description":"Label for subscription", + "message":"1 小時前更新" }, - "typeunknown":{ - "description":"A resource type", - "message":"unknown" + "catblock_add_photos":{ + "description":"Shown on the CatBlock tab of the options page. Users click this button to add a new list of images.", + "message":"Add Photos" }, - "filtereasylist_plus_finnish":{ - "description":"language", - "message":"芬蘭文" + "selectlanguage":{ + "description":"Text for the first option in Langage Dropdown for Filter Lists tab in options. Include the ' -- ' on either side of your translation.", + "message":" --選擇語言-- " }, - "catblock_show_on_adblock_menu":{ - "description":"Label for checkbox letting user choose whether the CatBlock popup menu should show the number of ads blocked", - "message":"Show number of ads blocked on CatBlock menu" + "sliderexplanation":{ + "description":"Blacklister slider page message", + "message":"滑動控制器直到頁面上的廣告已被正確地阻擋。" }, - "disabled_on_this_page":{ - "description":"Message shown in toolbar button on web pages that have been whitelisted", - "message":"AdBlock 在這個頁面關閉。" + "filtereasylist_plus_indonesian":{ + "description":"A filter list", + "message":"印尼文" }, - "typemedia":{ + "typeimage":{ "description":"A resource type", - "message":"audio/video" + "message":"image" }, - "filterjapanese":{ - "description":"language", - "message":"日文" + "buttonedit":{ + "description":"Edit filter manually button", + "message":"編輯" }, - "catblock_disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"Uncheck the 'Enabled' checkbox next to every extension except for CatBlock. Leave CatBlock enabled." + "catblock_example_flickr_search":{ + "description":"First example of a custom image list that a user can add. Leave the and as they are. e.g. is shorthand for \"for example\".", + "message":"a search for photos (e.g. sailboat race)" }, - "reportfilterlistproblem":{ - "description":"Telling the user to report an ad to a filter list maintainer", - "message":"這是廣告過濾清單方面的問題。請在這裡回報: $link$", + "blocked_n_in_total":{ + "description":"Shown below the 'Blocked ads:' message. Shows the number of ads blocked since AdBlock was installed. $count$ will be a number between 1 and 999,999,999.", + "message":"$count$ 總阻擋數", "placeholders":{ - "link":{ - "example":"EXAMPLE 1: John Doe EXAMPLE 2: EasyList forums", - "content":"$1" + "count":{ + "content":"123,456", + "example":"The number of ads blocked. Do not make any changes to this placeholder when translating." } } }, - "disableforchromeandsafaristeptwo":{ - "description":"Step 2 for disabling Chrome and Safari extensions", - "message":"除了 AdBlock 維持勾選以外,取消所有其他擴充的『啟用』核取方塊" + "tabsupport":{ + "description":"A tab on the options page", + "message":"支援與協助" }, - "englishonly":{ - "description":"Lets the user know that a link/page is available in English only", - "message":"僅限英文" + "linkblockadbyurl":{ + "description":"Link on the 'Customize' tab", + "message":"依網址阻擋廣告" }, "buttoncancel":{ "description":"Cancel button", "message":"取消" }, - "spread_the_word":{ - "description":"Text of a share link", - "message":"將AdBlock推薦給更多人使用!" + "savereminder":{ + "description":"Reminder to press save", + "message":"別忘了儲存!" }, - "you_can_slide_to_change":{ - "description":"Instructions for how to use the whitelister slider controls. Sometimes only one slider will show, and sometimes two will show, and if possible the text should handle both cases.", - "message":"你可以滑動來改變 AdBlock 網域白名單。" + "catblock_unpause_adblock":{ + "description":"Link text to unpause CatBlock, displayed immediately after 'CatBlock is paused'", + "message":"Unpause CatBlock" }, - "checkinfirefoxtitle":{ - "description":"Tell a user to see if a reported ad also appears in Firefox/Chrome", - "message":"在 Firefox中檢查 $chrome$", + "catblock_contributors":{ + "description":"Link to the contributors page on the Support tab of the options", + "message":"We've got a page to help you find out about the people behind CatBlock, as well!" + }, + "optionsversion":{ + "description":"Version number", + "message":"版本 $version$", "placeholders":{ - "chrome":{ - "example":"'or Chrome' (This will only be shown in Safari. Chrome users will not see this.)", - "content":"" + "version":{ + "content":"$1", + "example":"2.0.9" } } }, - "disableyoutubestreamingads":{ - "description":"Checkbox on the 'General' tab of the Options page. Allow AdBlock and the ClickToFlash Safari extension to work simultaneously on YouTube.", - "message":"啟用 ClickToFlash 相容性模式" + "catblock_replaceadswithcats":{ + "description":"Option on General tab used for enabling replacement of ads by pictures of cats", + "message":"Replace ads with pictures of cats" }, - "retryaftersubscribe":{ - "description":"Instructions on ad report page telling users to subscribe to a filter list and then check again to see whether the ad exists", - "message":"先訂閱此過濾清單,然後重試一次:$list_title$", + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "subscribeconfirm":{ + "description":"Prompt question before subscribing to the filter list", + "message":"您確定要訂閱 $title$ 過濾清單嗎", "placeholders":{ - "list_title":{ - "example":"French filters", - "content":"$1" + "title":{ + "content":"$1", + "example":"Prebake" } } }, - "checkinternetconnection":{ - "description":"Displayed when AdBlock is checking the newest available version and an error occurs while reporting an ad on adreport page", - "message":"你必須連上網路才能回報廣告" + "sourcecode":{ + "description":"Link to the source code of AdBlock on the Support tab of the options", + "message":"原始碼是 開源的 !" }, - "filtereasylist":{ - "description":"A filter list", - "message":"EasyList (推薦)" + "filterdutch":{ + "description":"language", + "message":"荷蘭文" }, - "catblock_adblockupdates":{ - "description":"Subtitle on the Support tab of the options", - "message":"CatBlock updates" + "blacklistereditfilter":{ + "description":"Text if the user wants to manually edit a filter. 'OK' is the standard javascript popup button text.", + "message":"請在下面輸入正確的過濾規則,並點選 「確定」" }, "yes":{ "description":"A positive response to a question", "message":"是" }, - "customfilterserrormessage":{ - "description":"Error message when there is an issue with a custom filter on the 'Customize' tab of the Options page", - "message":"以下過濾器
$filter$
有錯誤訊息:
$message$", + "update_available":{ + "description":"On the Options > Support page, shows when there are updates available for AdBlock", + "message":"AdBlock 有更新摟! 請至 $here$ 更新.
注意: 如果你想要自動取得這些更新,您只需要點選 Safari > 設定 > 擴充 > 更新
然後選擇 『自動安裝更新』", "placeholders":{ - "filter":{ - "example":"@@.ad", - "content":"$1" - }, - "message":{ - "example":"invalid filter", - "content":"$2" + "here":{ + "content":"", + "example":"here" } } }, - "fetchinglabel":{ - "description":"Status label", - "message":"正在獲取清單...請稍候。" + "blacklistersinglematch":{ + "description":"Tells the user only one match was found", + "message":"頁面上只有 1 個匹配項目被阻擋。" }, - "catblock_replaceadswithcats":{ - "description":"Option on General tab used for enabling replacement of ads by pictures of cats", - "message":"Replace ads with pictures of cats" + "catblock_disabled_by_filter_lists":{ + "description":"Message shown when a user tries to unwhitelist a web page that has been whitelisted by a rule in a subscribed filter list", + "message":"Sorry, CatBlock is disabled on this page by one of your filter lists." }, - "buttonlooksgood":{ - "description":"Looks good button", - "message":"看來不錯" + "filterjapanese":{ + "description":"language", + "message":"日文" }, - "questionoridea":{ - "description":"Subtitle on the Support tab of the options", - "message":"有任何問題或者是新的點子?" + "cleanuplist2":{ + "description":"Option at the bottom of the 'Customize' options tab", + "message":"清空此清單" }, - "catblock_example_flickr_id":{ - "description":"Second example of a custom image list that a user can add. Leave the $example$ alone. e.g. is shorthand for \"for example\".", - "message":"a Flickr photoset ID (e.g. $example$)", + "updatedhoursago":{ + "description":"Label for subscription", + "message":"$hours$ 小時前更新", "placeholders":{ - "example":{ - "content":"346406" + "hours":{ + "content":"$1", + "example":"15" + } + } + }, + "buttonback":{ + "description":"Back to previous wizard page button", + "message":"返回" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "optionstitle":{ + "description":"Title for the options page", + "message":"AdBlock 選項" + }, + "betalabel":{ + "description":"Label for beta features in AdBlock Options", + "message":"Beta" + }, + "catblock_latest_version":{ + "description":"On the Options > Support page, shows when there are no updates available for CatBlock", + "message":"CatBlock is up-to-date!" + }, + "filterlistlink":{ + "description":"Explanation of the filter lists", + "message":"請不要訂閱過多清單,每新增一個清單都會讓瀏覽器的速度降低!更多詳細資訊和過濾清單可在這裡找到。" + }, + "other":{ + "description":"Multiple choice option", + "message":"其他" + }, + "blockdomain":{ + "description":"Message of the url and css -blocking area", + "message":"套用的網域" + }, + "updatedrightnow":{ + "description":"Label for subscription", + "message":"剛剛更新" + }, + "debuginfo":{ + "description":"Users can click this link to provide debug information to AdBlock staff", + "message":"我們的研發團隊有像您索取除錯資訊(debug info) ? 點我取得這些資訊 !" + }, + "updatedminutesago":{ + "description":"Label for subscription", + "message":"$minutes$ 分鐘前更新", + "placeholders":{ + "minutes":{ + "content":"$1", + "example":"15" } } + }, + "malwarenotificationlearnmore":{ + "description":"Button on the malware notification that opens a page about malware on our website. Message should be under 45 characters!", + "message":"瞭解更多惡意軟體的相關資訊" + }, + "filterswedish":{ + "description":"A filter list", + "message":"瑞典文" + }, + "adblocksupport":{ + "description":"Title of the support tab", + "message":"AdBlock 支援與協助" + }, + "headertype":{ + "description":"Resource list page: title of a column", + "message":"類型" + }, + "typesubdocument":{ + "description":"A resource type", + "message":"frame" + }, + "updatedminuteago":{ + "description":"Label for subscription", + "message":"1 分鐘前更新" + }, + "typesub_frame":{ + "description":"A resource type", + "message":"frame" + }, + "adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"AdBlock-點擊查看詳情" + }, + "whitelistertitle2":{ + "description":"The title of the whitelister dialog", + "message":"不要在此網域使用 AdBlock..." } } \ No newline at end of file diff --git a/catblock/_locales/af/messages.json b/catblock/_locales/af/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/af/messages.json +++ b/catblock/_locales/af/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ar/messages.json b/catblock/_locales/ar/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/ar/messages.json +++ b/catblock/_locales/ar/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ca/messages.json b/catblock/_locales/ca/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/ca/messages.json +++ b/catblock/_locales/ca/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/cs/messages.json b/catblock/_locales/cs/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/cs/messages.json +++ b/catblock/_locales/cs/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/da/messages.json b/catblock/_locales/da/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/da/messages.json +++ b/catblock/_locales/da/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/de/messages.json b/catblock/_locales/de/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/de/messages.json +++ b/catblock/_locales/de/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/el/messages.json b/catblock/_locales/el/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/el/messages.json +++ b/catblock/_locales/el/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/en/messages.json b/catblock/_locales/en/messages.json index fb3552e8..186b4bc6 100644 --- a/catblock/_locales/en/messages.json +++ b/catblock/_locales/en/messages.json @@ -160,8 +160,8 @@ "message":"CatBlock Support" }, "catblock_adblock_outdated_chrome":{ - "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome://chrome/extensions/'", - "message":"You are using an old version of CatBlock. Please go to the extensions page, enable 'Developer mode' and click 'Update extensions now'" + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" }, "catblock_safaributton_how_to_hide2":{ "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", @@ -176,7 +176,7 @@ "message":"CatBlock - click for details" }, "catblock_adblock_wont_run_on_pages_matching":{ - "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com/reader/*'. The URL will appear on the next line.", + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", "message":"CatBlock won't run on any page matching:" }, "catblock_filteradblock_custom":{ diff --git a/catblock/_locales/es-ES/messages.json b/catblock/_locales/es-ES/messages.json index 1ef56e45..d785a80c 100644 --- a/catblock/_locales/es-ES/messages.json +++ b/catblock/_locales/es-ES/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Mientras más listas de filtros uses, CatBlock ejecutará más lento. Usar demasiadas listas puede incluso crashear tu explorador en algunos sitios. Pulse OK para suscribirse a esta lista de todos modos." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/fi/messages.json b/catblock/_locales/fi/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/fi/messages.json +++ b/catblock/_locales/fi/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/fr/messages.json b/catblock/_locales/fr/messages.json index ec5f8562..528dfe30 100644 --- a/catblock/_locales/fr/messages.json +++ b/catblock/_locales/fr/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/he/messages.json b/catblock/_locales/he/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/he/messages.json +++ b/catblock/_locales/he/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/hu/messages.json b/catblock/_locales/hu/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/hu/messages.json +++ b/catblock/_locales/hu/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/it/messages.json b/catblock/_locales/it/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/it/messages.json +++ b/catblock/_locales/it/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ja/messages.json b/catblock/_locales/ja/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/ja/messages.json +++ b/catblock/_locales/ja/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ko/messages.json b/catblock/_locales/ko/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/ko/messages.json +++ b/catblock/_locales/ko/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ms/messages.json b/catblock/_locales/ms/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/ms/messages.json +++ b/catblock/_locales/ms/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/nl/messages.json b/catblock/_locales/nl/messages.json index a22c51cd..4e3dd0ca 100644 --- a/catblock/_locales/nl/messages.json +++ b/catblock/_locales/nl/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/no/messages.json b/catblock/_locales/no/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/no/messages.json +++ b/catblock/_locales/no/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/pl/messages.json b/catblock/_locales/pl/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/pl/messages.json +++ b/catblock/_locales/pl/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/pt-BR/messages.json b/catblock/_locales/pt-BR/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/pt-BR/messages.json +++ b/catblock/_locales/pt-BR/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/pt-PT/messages.json b/catblock/_locales/pt-PT/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/pt-PT/messages.json +++ b/catblock/_locales/pt-PT/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ro/messages.json b/catblock/_locales/ro/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/ro/messages.json +++ b/catblock/_locales/ro/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/ru/messages.json b/catblock/_locales/ru/messages.json index b6153ccd..54dc1a8f 100644 --- a/catblock/_locales/ru/messages.json +++ b/catblock/_locales/ru/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/sk/messages.json b/catblock/_locales/sk/messages.json index b74100bb..e38340ff 100644 --- a/catblock/_locales/sk/messages.json +++ b/catblock/_locales/sk/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"Čím viac filtrov prihlásite, tým bude CatBlock pomalší. Použitie príliš veľa filtrov môže dokonca spôsobiť pád prehliadača na niektorých stránkach. Pre potvrdenie prihlásenia stlačte tlačidlo OK." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/sr/messages.json b/catblock/_locales/sr/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/sr/messages.json +++ b/catblock/_locales/sr/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/sv-SE/messages.json b/catblock/_locales/sv-SE/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/sv-SE/messages.json +++ b/catblock/_locales/sv-SE/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/tr/messages.json b/catblock/_locales/tr/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/tr/messages.json +++ b/catblock/_locales/tr/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/uk/messages.json b/catblock/_locales/uk/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/uk/messages.json +++ b/catblock/_locales/uk/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/vi/messages.json b/catblock/_locales/vi/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/vi/messages.json +++ b/catblock/_locales/vi/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/zh-CN/messages.json b/catblock/_locales/zh-CN/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/zh-CN/messages.json +++ b/catblock/_locales/zh-CN/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file diff --git a/catblock/_locales/zh-TW/messages.json b/catblock/_locales/zh-TW/messages.json index 4cbaabbe..186b4bc6 100644 --- a/catblock/_locales/zh-TW/messages.json +++ b/catblock/_locales/zh-TW/messages.json @@ -150,5 +150,45 @@ "catblock_you_know_thats_a_bad_idea_right":{ "description":"Confirmation message shown to user if they try to subscribe to too many lists. The user will have two options: OK and Cancel.", "message":"The more filter lists you use, the slower CatBlock runs. Using too many lists can even crash your browser on some websites. Press OK to subscribe to this list anyway." + }, + "catblock_safarinotificationbody":{ + "description":"Body of a notification shown to Safari Content Blocking users with too many filter list rules", + "message":"Please disable some filter lists. More information in CatBlock's Options." + }, + "catblock_adblocksupport":{ + "description":"Title of the support tab", + "message":"CatBlock Support" + }, + "catblock_adblock_outdated_chrome":{ + "description":"Ad report page instructions to update AdBlock in Chrome. The link will point to 'chrome:\/\/chrome\/extensions\/'", + "message":"You are using an old version of CatBlock. Please go to the extensions page<\/a>, enable 'Developer mode' and click 'Update extensions now'" + }, + "catblock_safaributton_how_to_hide2":{ + "description":"Message explaining how to hide the AdBlock toolbar button. 'Customize Toolbar' should match the text that Safari displays in the toolbar's context menu.", + "message":"To hide the button, right click Safari's toolbar and choose Customize Toolbar, then drag the CatBlock button out of the toolbar. You can show it again by dragging it back into the toolbar." + }, + "catblock_adblockreportinganad":{ + "description":"Title of the ad report page", + "message":"CatBlock - Reporting an ad" + }, + "catblock_adblock_click_for_details":{ + "description":"Tooltip on the AdBlock button, to help users understand that they can click the button, and that they can control the number badge that appears on the button.", + "message":"CatBlock - click for details" + }, + "catblock_adblock_wont_run_on_pages_matching":{ + "description":"Message displayed when the whitelister dialog will whitelist part of an entire website, for example '*.google.com\/reader\/*'. The URL will appear on the next line.", + "message":"CatBlock won't run on any page matching:" + }, + "catblock_filteradblock_custom":{ + "description":"A filter list", + "message":"CatBlock custom filters (recommended)" + }, + "catblock_malwarenotificationmessage":{ + "description":"Notification when a malware request has been blocked. This message should be under 90 characters!", + "message":"CatBlock has blocked a download from a site known to host malware." + }, + "catblock_safaricontentblockingpausemessage":{ + "description":"Alert displayed after clicking 'Pause AdBlock' in the AdBlock menu while Safari Content blocking is enabled", + "message":"To pause CatBlock with Content Blocking enabled, please select Safari (in the menu bar) > Preferences > Extensions > CatBlock, and uncheck 'Enable CatBlock'." } } \ No newline at end of file