diff --git a/CHANGELOG.md b/CHANGELOG.md index b2054a3064709..6e81e561e90c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +- [Improve `generateContentFn` helper scriptlet](https://github.com/gorhill/uBlock/commit/7d95c58408) +- [Improve `prevent-xhr` scriptlet](https://github.com/gorhill/uBlock/commit/168394440c) +- [Improve `proxyApplyFn` helper scriptlet](https://github.com/gorhill/uBlock/commit/18a8fc7675) + +---------- + +# 1.69.0 + +- [Add `adthrive` shim](https://github.com/gorhill/uBlock/commit/b8bf0bbab4) +- [Add `elem.shadowRoot` fallback in `getShadowRoot`](https://github.com/gorhill/uBlock/commit/c8b42ea819) (by @antonok-edm) +- [Fix merging of uncommitted filters](https://github.com/gorhill/uBlock/commit/c8004c4b02) +- [Improve `urlskip` implementation](https://github.com/gorhill/uBlock/commit/41ced43f03) +- [Improve `set-attr`/`trusted-set-attr` scriptlets](https://github.com/gorhill/uBlock/commit/3f3d4768b6) +- [Improve `trusted-create-html` scriptlet](https://github.com/gorhill/uBlock/commit/3c7eb3497d) +- [Add Anti-AI Suggestions list](https://github.com/gorhill/uBlock/commit/a0a7a99675) (by @ryanbr) +- [Unescape unduly escaped `|` in regex-based domain options](https://github.com/gorhill/uBlock/commit/bb34a4b83b) +- [Mind id/class changes in generic cosmetic filtering surveyor](https://github.com/gorhill/uBlock/commit/c053361d30) +- [Fix `specifichide` option](https://github.com/gorhill/uBlock/commit/024019094f) - [Improve `prevent-addEventListener` scriptlet](https://github.com/gorhill/uBlock/commit/1977196abe) - [Add `nitropay_ads.js` shim](https://github.com/gorhill/uBlock/commit/6af8a457ed) - [Improve scriptlets proxying `fetch`](https://github.com/gorhill/uBlock/commit/13612d1d29) diff --git a/Makefile b/Makefile index ae772675d1409..932ecf5613fa8 100644 --- a/Makefile +++ b/Makefile @@ -147,8 +147,7 @@ publish-dev-firefox: ghtag=$(version) \ ghasset=firefox \ storeid=uBlock0@raymondhill.net \ - channel=unlisted \ - updatepath=./dist/firefox/updates.json + channel=unlisted # Usage: make upload-firefox version=? upload-firefox: diff --git a/assets/assets.dev.json b/assets/assets.dev.json index e7d924ea8368b..c76a9d3d64b8d 100644 --- a/assets/assets.dev.json +++ b/assets/assets.dev.json @@ -471,6 +471,23 @@ ], "supportURL": "https://github.com/easylist/easylist#fanboy-lists" }, + "fanboy-ai-suggestions": { + "content": "filters", + "group": "annoyances", + "parent": "EasyList – Annoyances", + "off": true, + "title": "EasyList – AI Widgets", + "tags": "annoyances", + "preferred": true, + "contentURL": "https://ublockorigin.github.io/uAssets/thirdparties/easylist-ai.txt", + "cdnURLs": [ + "https://ublockorigin.github.io/uAssetsCDN/thirdparties/easylist-ai.txt", + "https://ublockorigin.pages.dev/thirdparties/easylist-ai.txt", + "https://cdn.jsdelivr.net/gh/uBlockOrigin/uAssetsCDN@main/thirdparties/easylist-ai.txt", + "https://cdn.statically.io/gh/uBlockOrigin/uAssetsCDN/main/thirdparties/easylist-ai.txt" + ], + "supportURL": "https://github.com/easylist/easylist#fanboy-lists" + }, "easylist-newsletters": { "content": "filters", "group": "annoyances", diff --git a/assets/assets.json b/assets/assets.json index 2f644425d27a7..109604af0b5ea 100644 --- a/assets/assets.json +++ b/assets/assets.json @@ -471,6 +471,23 @@ ], "supportURL": "https://github.com/easylist/easylist#fanboy-lists" }, + "fanboy-ai-suggestions": { + "content": "filters", + "group": "annoyances", + "parent": "EasyList – Annoyances", + "off": true, + "title": "EasyList – AI Widgets", + "tags": "annoyances", + "preferred": true, + "contentURL": "https://ublockorigin.github.io/uAssets/thirdparties/easylist-ai.txt", + "cdnURLs": [ + "https://ublockorigin.github.io/uAssetsCDN/thirdparties/easylist-ai.txt", + "https://ublockorigin.pages.dev/thirdparties/easylist-ai.txt", + "https://cdn.jsdelivr.net/gh/uBlockOrigin/uAssetsCDN@main/thirdparties/easylist-ai.txt", + "https://cdn.statically.io/gh/uBlockOrigin/uAssetsCDN/main/thirdparties/easylist-ai.txt" + ], + "supportURL": "https://github.com/easylist/easylist#fanboy-lists" + }, "easylist-newsletters": { "content": "filters", "group": "annoyances", diff --git a/dist/firefox/updates.json b/dist/firefox/updates.json index bb43f9e78d21a..ad1251c88a70a 100644 --- a/dist/firefox/updates.json +++ b/dist/firefox/updates.json @@ -3,13 +3,13 @@ "uBlock0@raymondhill.net": { "updates": [ { - "version": "1.68.1.7", + "version": "1.68.1.102", "browser_specific_settings": { "gecko": { "strict_min_version": "115.0" } }, - "update_link": "https://github.com/gorhill/uBlock/releases/download/1.68.1b7/uBlock0_1.68.1b7.firefox.signed.xpi" + "update_link": "https://github.com/gorhill/uBlock/releases/download/1.68.1rc2/uBlock0_1.68.1rc2.firefox.signed.xpi" } ] } diff --git a/dist/version b/dist/version index 56cf934a6aa8e..a42e174111af9 100644 --- a/dist/version +++ b/dist/version @@ -1 +1 @@ -1.68.1.7 \ No newline at end of file +1.69.1.2 \ No newline at end of file diff --git a/platform/mv3/description/webstore.cs.txt b/platform/mv3/description/webstore.cs.txt index 97d87722c20dc..76e9971e6bb42 100644 --- a/platform/mv3/description/webstore.cs.txt +++ b/platform/mv3/description/webstore.cs.txt @@ -1,12 +1,12 @@ uBO Lite (uBOL) je blokovač obsahu založený na MV3. -Výchozí sada pravidel koresponduje k výchozím sadám filtrů uBlock Origin: +Výchozí sada pravidel odpovídá výchozím sadám filtrů uBlock Origin: - Vestavěný seznam filtrů uBlock Origin - EasyList - EasyPrivacy -- Peter Lowe’s Ad and tracking server list +- Seznam reklamních a sledovacích serverů Petera Lowea -Další sady pravidel můžete povolit na stránce nastavení - klikněte na ikonu _Ozubeného kolečka_ ve vyskakovacím panelu. +Další sady pravidel můžete povolit na stránce nastavení - klepněte na ikonu _Ozubeného kolečka_ ve vyskakovacím panelu. -uBOL je zcela deklarativní, což znamená, že pro filtrování není potřeba permanentní proces uBOL a filtrování obsahu založené na vstřikování CSS/JS je spolehlivě prováděno samotným prohlížečem, nikoli rozšířením. To znamená, že samotný uBOL nespotřebovává zdroje CPU/paměti, zatímco probíhá blokování obsahu – proces servisního pracovníka uBOL je vyžadován _pouze_ při interakci s vyskakovacím panelem nebo stránkami nastavení. +uBOL je zcela deklarativní, což znamená, že pro filtrování není potřeba permanentní proces uBOL a filtrování obsahu založené na vstřikování CSS/JS je spolehlivě prováděno samotným prohlížečem, nikoli rozšířením. To znamená, že samotný uBOL nespotřebovává zdroje CPU/paměti, zatímco probíhá blokování obsahu - proces servisního pracovníka uBOL je vyžadován _jen_ při interakci s vyskakovacím panelem nebo stránkami nastavení. diff --git a/platform/mv3/description/webstore.ko.txt b/platform/mv3/description/webstore.ko.txt index 98c8a3f801056..cf38909f3f33c 100644 --- a/platform/mv3/description/webstore.ko.txt +++ b/platform/mv3/description/webstore.ko.txt @@ -9,4 +9,4 @@ uBO Lite (uBOL)는 MV3 기반 콘텐츠 차단기입니다. 설정 페이지에서 규칙 목록을 더 활성화할 수 있습니다. 팝업 창의 _Cogs_ 아이콘을 누르세요. -uBOL은 완전히 선언적이라 필터링 중 영구적으로 실행되는 uBOL 프로세스를 필요로 하지 않으며, CSS/JS 주입 기반 콘텐츠 필터링이 확장 프로그램이 아닌 브라우저 자체에서 더욱 안정적으로 동작합니다. 즉 uBOL 자체는 콘텐츠 차단을 하는 동안 CPU/메모리 리소스를 소비하지 않습니다. uBOL 서비스워커 프로세스는 사용자가 팝업 창이나 설정을 열었을 _때에만_ 동작합니다. +uBOL은 완전히 선언적이라 필터링 중 영구적으로 실행되는 uBOL 프로세스를 필요로 하지 않으며, CSS/JS 주입 기반 콘텐츠 필터링이 확장 프로그램이 아닌 브라우저 자체에서 더욱 안정적으로 동작합니다. 이는 콘텐츠 차단이 진행되는 동안 uBOL 자체는 CPU나 메모리 자원을 소모하지 않음을 의미합니다. uBOL의 서비스 워커 프로세스는 팝업 창이나 설정을 사용할 때만 실행됩니다. diff --git a/platform/mv3/extension/_locales/ar/messages.json b/platform/mv3/extension/_locales/ar/messages.json index 2eeb39622f6c0..e443df18090b9 100644 --- a/platform/mv3/extension/_locales/ar/messages.json +++ b/platform/mv3/extension/_locales/ar/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "إنشاء تقرير جديد علي GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "وضع التصفية الافتراضي", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "الصفحة محجوبة", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "لقد منع uBO Lite تحميل الصفحة التالية:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "رجوع", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "إغلاق هذه النافذة", diff --git a/platform/mv3/extension/_locales/az/messages.json b/platform/mv3/extension/_locales/az/messages.json index 3c4db300538ba..51f3587a88c3d 100644 --- a/platform/mv3/extension/_locales/az/messages.json +++ b/platform/mv3/extension/_locales/az/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/be/messages.json b/platform/mv3/extension/_locales/be/messages.json index b5beb29f9d466..4c7f47743c7d7 100644 --- a/platform/mv3/extension/_locales/be/messages.json +++ b/platform/mv3/extension/_locales/be/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Стварыць новую справаздачу", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Прадвызначаны рэжым фільтравання", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Старонка заблакаваная", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite папярэдзіў чытанне наступнай старонкі:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Вярнуцца", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Закрыць гэтае акно", diff --git a/platform/mv3/extension/_locales/bg/messages.json b/platform/mv3/extension/_locales/bg/messages.json index 935136afab3a7..3a216e0a30ec2 100644 --- a/platform/mv3/extension/_locales/bg/messages.json +++ b/platform/mv3/extension/_locales/bg/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Вредоносни домейни", + "message": "Защита от зловреден софтуер, сигурност", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Създаване на нов доклад", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Режим на филтриране по подразбиране", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Страницата е блокирана", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite попречи на зареждането на следната страница:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Назад", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Затворяне на прозореца", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Възстановяване на първоначалните настройки…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Всички ваши персонализирани настройки ще бъдат премахнати. Наистина ли искате да възстановите фабричните настройки?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/bn/messages.json b/platform/mv3/extension/_locales/bn/messages.json index e229fcbfe20a4..f6f2777f0184f 100644 --- a/platform/mv3/extension/_locales/bn/messages.json +++ b/platform/mv3/extension/_locales/bn/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "নতুন অভিযোগ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "ডিফল্ট ফিল্টারিং মোড", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "পাতা অবরুদ্ধ", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "ইউবিও লাইট এই পাতা লোড হওয়া আটকিয়েছে:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "ফিরে যাও", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "জানালা বন্ধ করো", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/br_FR/messages.json b/platform/mv3/extension/_locales/br_FR/messages.json index 15642e3818758..19e8805164c5a 100644 --- a/platform/mv3/extension/_locales/br_FR/messages.json +++ b/platform/mv3/extension/_locales/br_FR/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Sevel ur rentañ-kont nevez", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mod silañ dre ziouer", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Pajenn stanket", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite en deus miret ar bajenn-mañ da gargañ:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Distreiñ", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Serriñ ar prenestr-mañ", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Adlakaat an arventennoù dre ziouer…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Hoc'h holl arventennoù personelaet a vo dilamet. Daoust hag a fell deoc'h adlakaat an arventennoù dre ziouer?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/bs/messages.json b/platform/mv3/extension/_locales/bs/messages.json index 40f6d31faa226..aded553891b52 100644 --- a/platform/mv3/extension/_locales/bs/messages.json +++ b/platform/mv3/extension/_locales/bs/messages.json @@ -4,7 +4,7 @@ "description": "extension name." }, "extShortDesc": { - "message": "Eksperimentalni blokator sadržaja bez dopuštenja. Blokira oglase, trakere za praćenje, \"rudare\" kovanica kripto valute i još [...]", + "message": "Efikasno blokator sadržaja. Blokira oglase, trackere, rudare i još mnogo toga odmah nakon instalacije.", "description": "this will be in the Chrome web store: must be 132 characters or less" }, "perRulesetStats": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Kreiraj novi izvještaj na GitHubu", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Zadani način filtriranja", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Stranica je blokirana", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite je spriječio učitavanje sljedeće stranice:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Nazad", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Zatvori ovaj prozor", diff --git a/platform/mv3/extension/_locales/ca/messages.json b/platform/mv3/extension/_locales/ca/messages.json index d3cfd54544797..4e22d26d8937f 100644 --- a/platform/mv3/extension/_locales/ca/messages.json +++ b/platform/mv3/extension/_locales/ca/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Crea un informe nou", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mode de filtratge per defecte", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Pàgina blocada", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "L'uBO Lite ha evitat la càrrega d'aquesta pàgina:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Enrere", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Tanca aquesta finestra", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Restaura a la configuració per defecte…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "S'eliminaran tots els paràmetres personalitzats. Voleu restablir els paràmetres per defecte?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/cs/messages.json b/platform/mv3/extension/_locales/cs/messages.json index 8817de42d1321..ebf8afd67a44b 100644 --- a/platform/mv3/extension/_locales/cs/messages.json +++ b/platform/mv3/extension/_locales/cs/messages.json @@ -12,7 +12,7 @@ "description": "Appears aside each filter list in the _3rd-party filters_ pane" }, "dashboardName": { - "message": "uBO Lite — Ovládací panel", + "message": "uBO Lite - Ovládací panel", "description": "English: uBO Lite — Dashboard" }, "settingsPageName": { @@ -32,19 +32,19 @@ "description": "appears as tab name in dashboard" }, "aboutPrivacyPolicy": { - "message": "Ochrana soukromí", + "message": "Zásady ochrany osobních údajů", "description": "Link to privacy policy on GitHub (English)" }, "popupFilteringModeLabel": { - "message": "Filtrovací režim", + "message": "režim filtrování", "description": "Label in the popup panel for the current filtering mode" }, "popupLocalToolsLabel": { - "message": "Na této webové stránce", + "message": "Na tomto webu", "description": "Label in the popup panel for the local tools section" }, "popupTipReport": { - "message": "Nahlásit problém na této webové stránce", + "message": "Nahlásit problém", "description": "Tooltip used for the 'chat' icon in the panel" }, "popupTipDashboard": { @@ -136,11 +136,11 @@ "description": "Label of 'Troubleshooting information' section in 'Report a filter issue' page" }, "supportS6P1S1": { - "message": "Abyste dobrovolníky nezatěžovali duplicitními hlášeními, ověřte si, zda již problém nebyl nahlášen.", + "message": "Abyste dobrovolníky nezatěžovali duplicitními hlášeními, ověřte si, zda již problém nebyl nahlášen. Poznámka: Klepnutím na tlačítko bude originální stránka odeslána na GitHub.", "description": "A paragraph in the filter issue reporter section" }, "supportFindSpecificButton": { - "message": "Vyhledat podobná hlášení", + "message": "Vyhledat podobná hlášení na GitHubu", "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { @@ -148,7 +148,7 @@ "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "Webová stránka…", + "message": "Webová stránka...", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -188,11 +188,11 @@ "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { - "message": "Vytvořit nové hlášení", - "description": "Text for button which open an external webpage in Support pane" + "message": "Vytvořit nové hlášení na GitHubu", + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { - "message": "Výchozí filtrovací režim", + "message": "Výchozí režim filtrování", "description": "The header text for the default filtering mode section" }, "defaultFilteringModeDescription": { @@ -228,11 +228,11 @@ "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { - "message": "Seznam názvů hostitelů, pro které nebude probíhat žádné filtrování", + "message": "Seznam názvů hostitelů, pro které nebude probíhat žádné filtrování.", "description": "A short description for the editable field which lists trusted sites" }, "noFilteringModePlaceholder": { - "message": "[pouze názvy hostitelů]\nexample.com\ngames.example\n...", + "message": "[jen názvy hostitelů]\nexample.com\ngames.example\n...", "description": "Default text for in edit field" }, "behaviorSectionLabel": { @@ -252,7 +252,7 @@ "description": "Label for a checkbox in the options page" }, "enableStrictBlockLegend": { - "message": "Navigace na potenciálně nežádoucí stránky bude zablokována a bude vám nabídnuta možnost pokračovat.", + "message": "Bude zablokována navigace na potenciálně nežádoucí stránky a bude Vám nabídnuta volba pro pokračování.", "description": "Short description for a checkbox in the options page" }, "developerModeLabel": { @@ -272,7 +272,7 @@ "description": "A summary description of the back up/restore section." }, "settingsBackupRestoreLegend": { - "message": "Obnovení přepíše všechna vaše aktuální vlastní nastavení.", + "message": "Obnovení přepíše všechna Vaše aktuální vlastní nastavení.", "description": "Important information about the back up/restore section." }, "findListsPlaceholder": { @@ -280,8 +280,8 @@ "description": "Placeholder for the input field used to find lists" }, "strictblockTitle": { - "message": "Stránka zablokována", - "description": "Webpage title for the strict-blocked page" + "message": "Stránka byla zablokována", + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite zabránil načtení následující stránky:", @@ -292,7 +292,7 @@ "description": "Text informing about what is causing the page to be blocked" }, "strictblockRedirectSentence1": { - "message": "Zablokovaná stránka vás chce přesměrovat na jiný web. Pokud se rozhodnete pokračovat, přejdete přímo na: {{url}}", + "message": "Zablokovaná stránka Vás chce přesměrovat na jiný web. Pokud se rozhodnete pokračovat, přejdete přímo na: {{url}}", "description": "Text warning about an incoming redirect" }, "strictblockNoParamsPrompt": { @@ -301,14 +301,14 @@ }, "strictblockBack": { "message": "Zpět", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { - "message": "Zavřít okno", + "message": "Zavřít toto okno", "description": "A button to close the current tab" }, "strictblockDontWarn": { - "message": "Nevarujte mě znovu o této stránce", + "message": "Příště na tuto stránku neupozorňovat", "description": "Label for checkbox in document-blocked page" }, "strictblockProceed": { @@ -316,11 +316,11 @@ "description": "A button to navigate to the blocked page" }, "zapperTipEnter": { - "message": "Přejít do režimu dočasného skrytí prvků", + "message": "Odebrat prvek", "description": "Tooltip for the button used to enter zapper mode" }, "zapperTipQuit": { - "message": "Opustit režim dočasného skrytí prvků", + "message": "Ukončit režim dočasného skrytí prvků", "description": "Tooltip for the button used to exit zapper mode" }, "pickerTipEnter": { @@ -336,7 +336,7 @@ "description": "A label of a dropdown list" }, "developOptionFilteringModeDetails": { - "message": "Detaily filtovacího módu", + "message": "Detaily režimu filtrování", "description": "An option in a dropdown list" }, "developOptionCustomDnrRules": { @@ -344,7 +344,7 @@ "description": "An option in a dropdown list" }, "developOptionDnrRulesOf": { - "message": "DNR pravidla …", + "message": "Pravidla DNR pro...", "description": "A section header in a dropdown list" }, "developOptionDynamicRuleset": { @@ -352,7 +352,7 @@ "description": "An option in a dropdown list" }, "developOptionSessionRuleset": { - "message": "", + "message": "Seznam pravidel relace", "description": "An option in a dropdown list" }, "saveButton": { @@ -368,27 +368,27 @@ "description": "Text for buttons used to add content" }, "importAndAppendButton": { - "message": "Importovat a připojit…", + "message": "Importovat a připojit...", "description": "Text for buttons used to import and append content" }, "exportButton": { - "message": "Exportovat…", + "message": "Exportovat...", "description": "Text for buttons used to export content" }, "backupButton": { - "message": "Zálohovat…", + "message": "Zálohovat...", "description": "Text for buttons used to back up content" }, "restoreButton": { - "message": "Obnovit…", + "message": "Obnovit...", "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Resetovat do výchozího nastavení...", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Všechna Vaše vlastní nastavení budou odebrána. Opravdu chcete resetovat do výchozího nastavení?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Výběrem níže uvedeného filtru zvýrazníte odpovídající prvky na webové stránce. Kliknutím na koš filtr odstraníte.", + "message": "Výběrem níže uvedeného filtru zvýrazníte odpovídající prvky na webové stránce. Klepnutím na koš filtr odeberete.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/cv/messages.json b/platform/mv3/extension/_locales/cv/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/cv/messages.json +++ b/platform/mv3/extension/_locales/cv/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/cy/messages.json b/platform/mv3/extension/_locales/cy/messages.json index a0f044f1a3656..ff657f2c57cdf 100644 --- a/platform/mv3/extension/_locales/cy/messages.json +++ b/platform/mv3/extension/_locales/cy/messages.json @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Yn ôl", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Cau'r ffenestr hon", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/da/messages.json b/platform/mv3/extension/_locales/da/messages.json index 17e52d43b4d70..8f0ba1e451155 100644 --- a/platform/mv3/extension/_locales/da/messages.json +++ b/platform/mv3/extension/_locales/da/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Opret ny anmeldelse på GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Standardfiltreringstilstand", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Side blokeret", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite har forhindret flg. side i at blive indlæst:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Gå tilbage", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Luk dette vindue", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Nulstil til standardstillinger…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Alle tilpassede indstillinger fjernes. Fortsæt nulstilling til standardindstillinger?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/de/messages.json b/platform/mv3/extension/_locales/de/messages.json index 493be05128fd4..9c4b893dc69b9 100644 --- a/platform/mv3/extension/_locales/de/messages.json +++ b/platform/mv3/extension/_locales/de/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Neue Meldung auf GitHub erstellen", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Standardfiltermodus", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Seite blockiert", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite hat das Laden der folgenden Seite verhindert:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Zurück", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Dieses Fenster schließen", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Auf Werkseinstellungen zurücksetzen …", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Alle angepassten Einstellungen werden entfernt. Mit dem Zurücksetzen auf Werkseinstellungen fortfahren?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/el/messages.json b/platform/mv3/extension/_locales/el/messages.json index 680cd0f52b2b5..79f0151df4f38 100644 --- a/platform/mv3/extension/_locales/el/messages.json +++ b/platform/mv3/extension/_locales/el/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Δημιουργία νέας αναφοράς", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Προεπιλεγμένη λειτουργία φιλτραρίσματος", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Αποκλεισμένη σελίδα", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "Το uBO Lite εμπόδισε τη φόρτωση της παρακάτω σελίδας:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Επιστροφή", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Κλείσιμο του παραθύρου", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Επαναφορά στις προεπιλεγμένες ρυθμίσεις…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Όλες οι προσαρμοσμένες ρυθμίσεις σας θα διαγραφούν. Σίγουρα θέλετε να επαναφέρετε τις προεπιλεγμένες ρυθμίσεις;", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/en/messages.json b/platform/mv3/extension/_locales/en/messages.json index c0aaafd8e8c7c..7c932d3c522b6 100644 --- a/platform/mv3/extension/_locales/en/messages.json +++ b/platform/mv3/extension/_locales/en/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/en_GB/messages.json b/platform/mv3/extension/_locales/en_GB/messages.json index f8bc50c13a107..82722b33987d0 100644 --- a/platform/mv3/extension/_locales/en_GB/messages.json +++ b/platform/mv3/extension/_locales/en_GB/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Malware domains", + "message": "Malware protection, security", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Create new report", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", diff --git a/platform/mv3/extension/_locales/eo/messages.json b/platform/mv3/extension/_locales/eo/messages.json index a6a81336dfca3..7f85373606978 100644 --- a/platform/mv3/extension/_locales/eo/messages.json +++ b/platform/mv3/extension/_locales/eo/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/es/messages.json b/platform/mv3/extension/_locales/es/messages.json index 55dd1ae3eba4b..6b927cf29a76a 100644 --- a/platform/mv3/extension/_locales/es/messages.json +++ b/platform/mv3/extension/_locales/es/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Crear nuevo reporte en GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Modo de filtrado predeterminado", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Página bloqueada", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite impidió la carga de la página:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Regresar", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Cerrar esta ventana", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Restablecer ajustes predeterminados…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Se borrará todas tus configuraciones personalizadas. ¿Seguro que quieres restablecer a la configuración predeterminada?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/et/messages.json b/platform/mv3/extension/_locales/et/messages.json index 7e21da9e0e4b1..5d6eaa33886ca 100644 --- a/platform/mv3/extension/_locales/et/messages.json +++ b/platform/mv3/extension/_locales/et/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Loo GitHubis uus aruanne", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Tavaline filtreerimisrežiim", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Lehe sirvimine piiratud", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite ennetas järgmise veebilehe laadimist:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Tagasi", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Sulge see aken", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Lähtesta tavaseadetele…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Kõik enda loodud seaded eemaldatakse. Tahad tõesti lähtestada tavaseadetele?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/eu/messages.json b/platform/mv3/extension/_locales/eu/messages.json index 3cd3abc2d9eeb..22eef3624600b 100644 --- a/platform/mv3/extension/_locales/eu/messages.json +++ b/platform/mv3/extension/_locales/eu/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Lehenetsitako iragazteko modua", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Blokeatutako orrialdea", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Joan atzera", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Itxi leiho hau", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/fa/messages.json b/platform/mv3/extension/_locales/fa/messages.json index 21290ad5412c0..995f635e9327e 100644 --- a/platform/mv3/extension/_locales/fa/messages.json +++ b/platform/mv3/extension/_locales/fa/messages.json @@ -148,7 +148,7 @@ "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/fi/messages.json b/platform/mv3/extension/_locales/fi/messages.json index d70ac808998ba..b73a25994e58b 100644 --- a/platform/mv3/extension/_locales/fi/messages.json +++ b/platform/mv3/extension/_locales/fi/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Luo GitHubiin uusi ilmoitus", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Oletusarvoinen suodatustila", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Sivu estettiin", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite on estänyt seuraavan sivun latauksen:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Palaa takaisin", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Sulje tämä ikkuna", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Palauta oletusasetukset…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Kaikki tehndyt asetusmuutokset perutaan. Haluatko varmasti palauttaa oletusasetukset?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/fil/messages.json b/platform/mv3/extension/_locales/fil/messages.json index 1a5929b667201..96b452872341f 100644 --- a/platform/mv3/extension/_locales/fil/messages.json +++ b/platform/mv3/extension/_locales/fil/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Gumawa ng bagong ulat sa Github", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default na mode sa pagfi-filter", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Nakaharang na page", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "Hindi pinayagan ng uBO Lite ang pagpunta sa page dahil:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Bumalik", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Isara ang window na ito", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/fr/messages.json b/platform/mv3/extension/_locales/fr/messages.json index 01104119faf99..f68a7b1e8f0e5 100644 --- a/platform/mv3/extension/_locales/fr/messages.json +++ b/platform/mv3/extension/_locales/fr/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Créer un nouveau rapport sur GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mode de filtrage par défaut", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page bloquée", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite a empêché le chargement de cette page :", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Précédent", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Fermer cette fenêtre", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Revenir aux paramètres par défaut", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Tous vos paramètres personnalisés seront supprimés. Voulez-vous vraiment revenir aux paramètres par défaut ?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/fy/messages.json b/platform/mv3/extension/_locales/fy/messages.json index 679e0f56f3dcb..a39aef1a6f4a8 100644 --- a/platform/mv3/extension/_locales/fy/messages.json +++ b/platform/mv3/extension/_locales/fy/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Nije melding meitsje", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Standert filtermodus", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Side blokkearre", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite hat it laden fan de folgjende side opkeard:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Tebek", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Dit finster slute", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Standertynstellingen weromsette…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Al jo oanpaste ynstellingen sille fuortsmiten wurde. Wolle jo de standertynstellingen echt weromsette?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/gl/messages.json b/platform/mv3/extension/_locales/gl/messages.json index 9737c2e4c35f9..0d6a94964a697 100644 --- a/platform/mv3/extension/_locales/gl/messages.json +++ b/platform/mv3/extension/_locales/gl/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Crear nova denuncia", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Modo de filtrado por defecto", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Páxina bloqueada", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite evitou que a seguinte páxina se cargase:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Volver", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Pechar esta xanela", diff --git a/platform/mv3/extension/_locales/gu/messages.json b/platform/mv3/extension/_locales/gu/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/gu/messages.json +++ b/platform/mv3/extension/_locales/gu/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/he/messages.json b/platform/mv3/extension/_locales/he/messages.json index 926fce5a813fc..bfe1ae3b38f15 100644 --- a/platform/mv3/extension/_locales/he/messages.json +++ b/platform/mv3/extension/_locales/he/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "תחומי תוכנות זדוניות", + "message": "הגנה מפני נוזקות, אבטחה", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "צור דיווח חדש", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "מצב סינון ברירת מחדל", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "הדף נחסם", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite מנע טעינה של הדפים הבאים:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "חזור", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "סגור חלון זה", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "אפס להגדרות ברירת מחדל…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "כל ההגדרות האישיות שלך ימחקו. האם באמת לאפס להגדרות ברירת מחדל?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/hi/messages.json b/platform/mv3/extension/_locales/hi/messages.json index c328798735456..e924ac7820e92 100644 --- a/platform/mv3/extension/_locales/hi/messages.json +++ b/platform/mv3/extension/_locales/hi/messages.json @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "डिफ़ॉल्ट फ़िल्टरिंग मोड", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/hr/messages.json b/platform/mv3/extension/_locales/hr/messages.json index e856f5e9dd4fa..1408ecea3ae7d 100644 --- a/platform/mv3/extension/_locales/hr/messages.json +++ b/platform/mv3/extension/_locales/hr/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Napravi novu prijavu na GitHub-u", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Zadani način filtriranja", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Stranica blokirana", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite je spriječio učitavanje sljedeće stranice:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Idi natrag", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Zatvori ovaj prozor", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Resetiraj na zadane postavke…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Sve Vaše prilagođene postavke će biti uklonjene. Želite li zaista resetirati na zadane postavke?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/hu/messages.json b/platform/mv3/extension/_locales/hu/messages.json index e787489227f71..823bdcd857679 100644 --- a/platform/mv3/extension/_locales/hu/messages.json +++ b/platform/mv3/extension/_locales/hu/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Új jelentés létrehozása GitHub-ra", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Alapértelmezett szűrési mód", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Oldal blokkolva", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "A uBO Lite megakadályozta a következő oldal betöltését:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Vissza", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Ablak bezárása", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Alapértelmezett beállításokra visszaállítás…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Az összes egyéni beállításod törlődik. Tényleg az alapbeállításokra akarsz viszzaállítani?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/hy/messages.json b/platform/mv3/extension/_locales/hy/messages.json index 6c9ad38a6581f..a61d7b8890113 100644 --- a/platform/mv3/extension/_locales/hy/messages.json +++ b/platform/mv3/extension/_locales/hy/messages.json @@ -144,7 +144,7 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Զտման լռելյայն ռեժիմ", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Հետ գնալ", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Փակել այս պատուհանը", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/id/messages.json b/platform/mv3/extension/_locales/id/messages.json index 24e06874f38d3..9a4935a0f1e29 100644 --- a/platform/mv3/extension/_locales/id/messages.json +++ b/platform/mv3/extension/_locales/id/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Domain malware", + "message": "Perlindungan malware, keamanan", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Buat laporan baru", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mode filter bawaan", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Halaman diblokir", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite telah mencegah pemuatan halaman berikut:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Kembali", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Tutup jendela ini", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Kembalikan ke pengaturan bawaan…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Semua pengaturan kustom kamu akan dihapus. Apakah kamu benar ingin kembali ke pengaturan bawaan?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/it/messages.json b/platform/mv3/extension/_locales/it/messages.json index 33a52e9934e9c..0390bcb8766a1 100644 --- a/platform/mv3/extension/_locales/it/messages.json +++ b/platform/mv3/extension/_locales/it/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Domini che diffondono virus", + "message": "Protezione dai malware, sicurezza", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Crea nuova segnalazione in GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Modalità di filtraggio predefinita", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Pagina bloccata", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite ha impedito alla seguente pagina di caricarsi:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Torna indietro", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Chiudi questa finestra", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Reimposta configurazione predefinita…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Le impostazioni personali saranno rimosse. Vuoi veramente reimpostare i valori predefiniti?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/ja/messages.json b/platform/mv3/extension/_locales/ja/messages.json index 7cba2f5ffb8b4..279638fc745ca 100644 --- a/platform/mv3/extension/_locales/ja/messages.json +++ b/platform/mv3/extension/_locales/ja/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "マルウェアドメイン", + "message": "マルウェアからの保護、セキュリティ", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "新しい報告を作成", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "デフォルトのフィルタリングモード", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "ブロックしたページ", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite はこのページの読み込みをブロックしています:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "戻る", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "このウィンドウを閉じる", diff --git a/platform/mv3/extension/_locales/ka/messages.json b/platform/mv3/extension/_locales/ka/messages.json index fff002ff3fdad..804e6ff6dab3f 100644 --- a/platform/mv3/extension/_locales/ka/messages.json +++ b/platform/mv3/extension/_locales/ka/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "შექმენით ახალი მოსხენება", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "გაფილტვრის ნაგულისხმევი რეჟიმი", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "შეზღუდული გვერდი", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite ზღუდავს მოცემული გვერდის ჩატვირთვას:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "უკან დაბრუნება", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "ამ ფანჯრის დახურვა", diff --git a/platform/mv3/extension/_locales/kk/messages.json b/platform/mv3/extension/_locales/kk/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/kk/messages.json +++ b/platform/mv3/extension/_locales/kk/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/kn/messages.json b/platform/mv3/extension/_locales/kn/messages.json index 08c8db5c634a4..bb2316d8279bb 100644 --- a/platform/mv3/extension/_locales/kn/messages.json +++ b/platform/mv3/extension/_locales/kn/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/ko/messages.json b/platform/mv3/extension/_locales/ko/messages.json index 09e61f3753671..91bb8a46e7e9c 100644 --- a/platform/mv3/extension/_locales/ko/messages.json +++ b/platform/mv3/extension/_locales/ko/messages.json @@ -4,7 +4,7 @@ "description": "extension name." }, "extShortDesc": { - "message": "효율적인 콘텐츠 차단기입니다. 설치 직후 광고, 추적기, 채굴기 등을 즉시 차단합니다.", + "message": "효율적인 콘텐츠 차단기입니다. 설치 즉시 광고, 추적기, 암호화폐 채굴기 등을 차단합니다.", "description": "this will be in the Chrome web store: must be 132 characters or less" }, "perRulesetStats": { @@ -32,7 +32,7 @@ "description": "appears as tab name in dashboard" }, "aboutPrivacyPolicy": { - "message": "개인정보취급방침", + "message": "개인정보 처리방침", "description": "Link to privacy policy on GitHub (English)" }, "popupFilteringModeLabel": { @@ -68,7 +68,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupPrivacy": { - "message": "개인 정보 보호", + "message": "개인정보 보호", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { @@ -92,7 +92,7 @@ "description": "Text label heading the import/export area of custom filters" }, "customFiltersImportTextareaPlaceholder": { - "message": "여기에 추가하려는 표면 필터 붙여넣기", + "message": "여기에 추가하려는 요소 숨김 필터 붙여넣기", "description": "Placeholder text which describes the purpose of the textarea widget" }, "aboutChangelog": { @@ -136,7 +136,7 @@ "description": "Label of 'Troubleshooting information' section in 'Report a filter issue' page" }, "supportS6P1S1": { - "message": "자원봉사자들이 중복 신고로 인해 부담을 겪지 않도록, 해당 이슈가 이미 신고되지는 않았는지 확인해 주시기 바랍니다.", + "message": "자원봉사자들의 중복 업무를 방지하기 위해, 이미 보고된 문제인지 먼저 확인해 주세요. 주의: 아래 버튼을 클릭하면 현재 페이지 주소가 GitHub로 전송됩니다.", "description": "A paragraph in the filter issue reporter section" }, "supportFindSpecificButton": { @@ -188,8 +188,8 @@ "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { - "message": "새 신고 생성", - "description": "Text for button which open an external webpage in Support pane" + "message": "GitHub에서 새 신고 생성", + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "기본 필터링 모드", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "고급 네트워크 필터링과 선택한 필터 목록을 바탕으로 특정한 확장 필터링 및 보편적인 확장 필터링을 수행합니다.\n\n모든 웹사이트에서 데이터를 읽고 쓸 수 있도록 하는 광범위한 권한이 필요합니다.\n\n보편적인 확장 필터링 기능을 이용하는 경우 웹페이지의 리소스 사용량이 증가할 수 있습니다.", + "message": "고급 네트워크 필터링과 선택한 필터 목록을 기반의 맞춤형 및 보편적인 확장 필터링을 제공합니다.\n\n모든 웹사이트에서 데이터를 읽고 변경할 수 있도록 하는 광범위한 권한이 필요합니다.\n\n보편적인 확장 필터링을 사용하면 웹페이지의 리소스 사용량이 증가할 수 있습니다.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "페이지 차단됨", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite가 다음 페이지를 불러오지 못하게 했습니다.", @@ -301,14 +301,14 @@ }, "strictblockBack": { "message": "뒤로", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "창 닫기", "description": "A button to close the current tab" }, "strictblockDontWarn": { - "message": "다시는 이 사이트에 대해 경고하지 않기", + "message": "이 사이트에 대해 다시 경고하지 않기", "description": "Label for checkbox in document-blocked page" }, "strictblockProceed": { @@ -316,11 +316,11 @@ "description": "A button to navigate to the blocked page" }, "zapperTipEnter": { - "message": "구성 요소 제거 모드로 진입", + "message": "숨길 요소 선택하기", "description": "Tooltip for the button used to enter zapper mode" }, "zapperTipQuit": { - "message": "구성 요소 제거 모드 종료", + "message": "숨길 요소 선택 종료하기", "description": "Tooltip for the button used to exit zapper mode" }, "pickerTipEnter": { @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "기본 설정으로 초기화하기…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "모든 커스텀 설정이 삭제됩니다. 정말 진행하시겠습니까?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/lt/messages.json b/platform/mv3/extension/_locales/lt/messages.json index 57b24d4f6ab4a..d2597c03fff20 100644 --- a/platform/mv3/extension/_locales/lt/messages.json +++ b/platform/mv3/extension/_locales/lt/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/lv/messages.json b/platform/mv3/extension/_locales/lv/messages.json index 24885587af46b..6d858f1dc500e 100644 --- a/platform/mv3/extension/_locales/lv/messages.json +++ b/platform/mv3/extension/_locales/lv/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Ļaunatūras domēni", + "message": "Aizsardzība pret ļaunprātīgām (inficētas vai satur vīrusus) vietnēm, drošība", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Izveidot jaunu ziņojumu", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Noklusējuma aizturēšanas veids", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Lapa aizturēta", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite novērsa šīs lapas ielādēšanu:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Doties atpakaļ", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Aizvērt šo logu", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Atiestatīt uz noklusējuma iestatījumiem…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Visi pielāgotie iestatījumi tiks noņemti. Vai tiešām atiestatīt uz noklusējuma iestatījumiem?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/mk/messages.json b/platform/mv3/extension/_locales/mk/messages.json index 4f40969547511..8af10cef6a0b3 100644 --- a/platform/mv3/extension/_locales/mk/messages.json +++ b/platform/mv3/extension/_locales/mk/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Создај нова пријава", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Режим на филтрирање по подразбирање", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Блокирана страница", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Оди назад", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Затвори го прозорецот", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/ml/messages.json b/platform/mv3/extension/_locales/ml/messages.json index 1dfd83d3cdbb5..b941e63f63a28 100644 --- a/platform/mv3/extension/_locales/ml/messages.json +++ b/platform/mv3/extension/_locales/ml/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "ഡിഫോൾട്ട് ഫിൽട്ടറിംഗ് മോഡ്", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/mr/messages.json b/platform/mv3/extension/_locales/mr/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/mr/messages.json +++ b/platform/mv3/extension/_locales/mr/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/ms/messages.json b/platform/mv3/extension/_locales/ms/messages.json index 46d5796369b36..eb273584147a8 100644 --- a/platform/mv3/extension/_locales/ms/messages.json +++ b/platform/mv3/extension/_locales/ms/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mod penapisan lalai", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/nb/messages.json b/platform/mv3/extension/_locales/nb/messages.json index 8d2786da3115b..f412787c39e56 100644 --- a/platform/mv3/extension/_locales/nb/messages.json +++ b/platform/mv3/extension/_locales/nb/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Opprett ny rapport på GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Standard filtreringsmodus", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Side blokkert", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite har forhindret innlasting av følgende side:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Gå tilbake", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Lukk dette vinduet", @@ -384,7 +384,7 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Tilbakestill til standardinnstillinger…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { diff --git a/platform/mv3/extension/_locales/nl/messages.json b/platform/mv3/extension/_locales/nl/messages.json index 6cb4216bf12d8..c36acb465f5d8 100644 --- a/platform/mv3/extension/_locales/nl/messages.json +++ b/platform/mv3/extension/_locales/nl/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Nieuwe melding op GitHub maken", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Standaard filtermodus", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Pagina geblokkeerd", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite heeft het laden van de volgende pagina voorkomen:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Teruggaan", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Dit venster sluiten", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Standaardinstellingen terugzetten…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Al uw aangepaste instellingen zullen worden verwijderd. Wilt u de standaardinstellingen echt terugzetten?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/oc/messages.json b/platform/mv3/extension/_locales/oc/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/oc/messages.json +++ b/platform/mv3/extension/_locales/oc/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/pa/messages.json b/platform/mv3/extension/_locales/pa/messages.json index d31d9d143ea68..6cb1ade840eea 100644 --- a/platform/mv3/extension/_locales/pa/messages.json +++ b/platform/mv3/extension/_locales/pa/messages.json @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "ਨਵੀਂ ਰਿਪੋਰਟ ਬਣਾਓ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "ਮੂਲ ਫਿਲਟਰ ਕਰਨ ਦਾ ਢੰਗ", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "ਸਫ਼ੇ ਉੱਤੇ ਪਾਬੰਦੀ ਹੈ", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite ਨੇ ਅੱਗੇ ਦਿੱਤੇ ਸਫ਼ੇ ਨੂੰ ਲੋਡ ਹੋਣ ਤੋਂ ਰੋਕਿਆ ਹੈ:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "ਪਿੱਛੇ ਜਾਓ", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "ਇਹ ਵਿੰਡੋ ਨੂੰ ਬੰਦ ਕਰੋ", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/pl/messages.json b/platform/mv3/extension/_locales/pl/messages.json index b94336e3b8d1f..6e01dc23c7aa3 100644 --- a/platform/mv3/extension/_locales/pl/messages.json +++ b/platform/mv3/extension/_locales/pl/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Utwórz nowy raport", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Domyślny tryb filtrowania", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Strona zablokowana", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite nie pozwolił załadować się następującej stronie:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Wstecz", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Zamknij to okno", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Przywróć ustawienia domyślne…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Wszystkie ustawienia niestandardowe zostaną usunięte. Czy na pewno chcesz przywrócić ustawienia domyślne?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/pt_BR/messages.json b/platform/mv3/extension/_locales/pt_BR/messages.json index cfe4d57237ded..570e7120d4973 100644 --- a/platform/mv3/extension/_locales/pt_BR/messages.json +++ b/platform/mv3/extension/_locales/pt_BR/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Criar um novo relatório no GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Modo de filtragem padrão", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Página bloqueada", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "O uBO Lite impediu o carregamento da seguinte página:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Voltar", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Fechar esta janela", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Reconfigurar tudo para o padrão…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Todas as suas configurações personalizadas serão removidas. Você realmente quer resetar para as configurações padrão?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/pt_PT/messages.json b/platform/mv3/extension/_locales/pt_PT/messages.json index f37ac13a47639..881a97938178e 100644 --- a/platform/mv3/extension/_locales/pt_PT/messages.json +++ b/platform/mv3/extension/_locales/pt_PT/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Criar novo relatório no GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Modo de filtragem predefinido", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Página bloqueada", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "O uBO Lite impediu a seguinte página de ser carregada:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Voltar", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Fechar esta janela", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Repor as definições predefinidas…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Todas as suas definições personalizadas serão removidas. Pretende mesmo repor as definições predefinidas?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/ro/messages.json b/platform/mv3/extension/_locales/ro/messages.json index a5acae36ee850..dde28eb985f69 100644 --- a/platform/mv3/extension/_locales/ro/messages.json +++ b/platform/mv3/extension/_locales/ro/messages.json @@ -4,7 +4,7 @@ "description": "extension name." }, "extShortDesc": { - "message": "Un blocant experimental, fără permisiuni. Blochează reclamele, urmăritorii, minerii de monede virtuale și multe altele imediat [...]", + "message": "Un blocant de conținut eficient. Blochează reclamele, urmăritorii, minerii și multe altele imediat după instalare.", "description": "this will be in the Chrome web store: must be 132 characters or less" }, "perRulesetStats": { @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Domenii malițioase", + "message": "Domenii malițioase, securitate", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Creează o nouă sesizare", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mod de filtrare implicit", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Pagină blocată", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite a împiedicat încărcarea următoarei pagini:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Înapoi", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Închide fereastra", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Restabilește setările implicite…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Toate setările personalizate vor fi eliminate. Doriți cu siguranță să resetați la setările implicite?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/ru/messages.json b/platform/mv3/extension/_locales/ru/messages.json index 2a853326c00ea..7678dd71c269f 100644 --- a/platform/mv3/extension/_locales/ru/messages.json +++ b/platform/mv3/extension/_locales/ru/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Создать новый отчёт в GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Режим фильтрации по умолчанию", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Страница заблокирована", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite предотвратил загрузку следующей страницы:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Назад", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Закрыть это окно", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Сброс до настроек по умолчанию…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Все ваши пользовательские настройки будут удалены. Уверены, что хотите восстановить настройки по умолчанию?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/si/messages.json b/platform/mv3/extension/_locales/si/messages.json index f73cdc049277c..12396c138638b 100644 --- a/platform/mv3/extension/_locales/si/messages.json +++ b/platform/mv3/extension/_locales/si/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "ද්වේශාංග වසම්", + "message": "අනිෂ්ට මෘදුකාංග ආරක්ෂාව, ආරක්ෂාව", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "නව වාර්තාවක් සාදන්න", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "පෙරනිමි පෙරීමේ ප්‍රකාරය", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "පිටුව අවහිරයි", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite විසින් පහත පිටුව පූරණය වීම වළක්වා ඇත:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "ආපසු යන්න", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "මෙම කවුළුව වසන්න", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/sk/messages.json b/platform/mv3/extension/_locales/sk/messages.json index f3ce06a9309c9..fc76770e1682b 100644 --- a/platform/mv3/extension/_locales/sk/messages.json +++ b/platform/mv3/extension/_locales/sk/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Vytvoriť nové hlásenie na Githube", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Predvolený režim filtrovania", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Zablokovaná stránka", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite zabránil načítaniu nasledujúcej stránky:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Naspäť", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Zatvoriť toto okno", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Obnoviť predvolené nastavenia…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Všetky vlastné nastavenia sa odstránia. Naozaj chcete obnoviť predvolené nastavenia?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/sl/messages.json b/platform/mv3/extension/_locales/sl/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/sl/messages.json +++ b/platform/mv3/extension/_locales/sl/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/so/messages.json b/platform/mv3/extension/_locales/so/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/so/messages.json +++ b/platform/mv3/extension/_locales/so/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/sq/messages.json b/platform/mv3/extension/_locales/sq/messages.json index d3732ecd5086a..66b5ca4eef6a6 100644 --- a/platform/mv3/extension/_locales/sq/messages.json +++ b/platform/mv3/extension/_locales/sq/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Krijoj raport të ri në GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Mënyra standarde e filtrimit", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Faqe e bllokuar", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite pengoi hapjen e faqes vijuese:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Kthehem", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Mbyll dritaren", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Rikthej parametrat standardë…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Do të hiqen gjithë parameterat e personalizuar. Vërtet doni të riktheni parametrat standardë?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/sr/messages.json b/platform/mv3/extension/_locales/sr/messages.json index 8531324da5ce6..3948ee4d86a59 100644 --- a/platform/mv3/extension/_locales/sr/messages.json +++ b/platform/mv3/extension/_locales/sr/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Креирај нови извештај", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Подразумевани режим филтрирања", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Страница је блокирана", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite је спречио учитавање следеће странице:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Иди назад", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Затвори овај прозор", diff --git a/platform/mv3/extension/_locales/sv/messages.json b/platform/mv3/extension/_locales/sv/messages.json index bdee8f0d749a9..56e7d92265842 100644 --- a/platform/mv3/extension/_locales/sv/messages.json +++ b/platform/mv3/extension/_locales/sv/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Skapa ny rapport på GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Standardfiltreringsläge", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Sidan blockerad", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite har förhindrat följande sida från att läsas in:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Gå tillbaka", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Stäng det här fönstret", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Återställ till standardinställningarna…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Alla dina anpassade inställningar kommer att tas bort. Vill du verkligen återställa till standardinställningarna?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/sw/messages.json b/platform/mv3/extension/_locales/sw/messages.json index f4ab788a6317c..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/sw/messages.json +++ b/platform/mv3/extension/_locales/sw/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/ta/messages.json b/platform/mv3/extension/_locales/ta/messages.json index f4ab788a6317c..38ef047e551af 100644 --- a/platform/mv3/extension/_locales/ta/messages.json +++ b/platform/mv3/extension/_locales/ta/messages.json @@ -16,11 +16,11 @@ "description": "English: uBO Lite — Dashboard" }, "settingsPageName": { - "message": "Settings", + "message": "அமைப்புகள்", "description": "appears as tab name in dashboard" }, "customFiltersPageName": { - "message": "Custom filters", + "message": "விருப்ப வடிகட்டிகள்", "description": "appears as tab name in dashboard" }, "developPageName": { @@ -28,11 +28,11 @@ "description": "appears as tab name in dashboard. Inspired from 'Develop' menu in Safari, see https://developer.apple.com/documentation/safari-developer-tools/develop-menu" }, "aboutPageName": { - "message": "About", + "message": "பற்றி", "description": "appears as tab name in dashboard" }, "aboutPrivacyPolicy": { - "message": "Privacy policy", + "message": "தனியுரிமை கொள்கை", "description": "Link to privacy policy on GitHub (English)" }, "popupFilteringModeLabel": { @@ -52,7 +52,7 @@ "description": "English: Click to open the dashboard" }, "popupMoreButton": { - "message": "More", + "message": "மேலும்", "description": "Label to be used to show popup panel sections" }, "popupLessButton": { @@ -64,11 +64,11 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAds": { - "message": "Ads", + "message": "விளம்பரங்கள்", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupPrivacy": { - "message": "Privacy", + "message": "தனியுரிமை", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { @@ -76,11 +76,11 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { - "message": "Annoyances", + "message": "எரிச்சல்கள்", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMisc": { - "message": "Miscellaneous", + "message": "இதர", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupRegions": { @@ -88,7 +88,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "customFiltersImportExportLabel": { - "message": "Import / Export", + "message": "இறக்குமதி / ஏற்றுமதி", "description": "Text label heading the import/export area of custom filters" }, "customFiltersImportTextareaPlaceholder": { @@ -96,7 +96,7 @@ "description": "Placeholder text which describes the purpose of the textarea widget" }, "aboutChangelog": { - "message": "Changelog", + "message": "மாற்றப்பதிவேடு", "description": "" }, "aboutCode": { @@ -104,23 +104,23 @@ "description": "English: Source code (GPLv3)" }, "aboutContributors": { - "message": "Contributors", + "message": "பங்களிப்பாளர்கள்", "description": "English: Contributors" }, "aboutSourceCode": { - "message": "Source code", + "message": "நிரல்மூலம்", "description": "Link text to source code repo" }, "aboutTranslations": { - "message": "Translations", + "message": "மொழிபெயர்ப்புகள்", "description": "Link text to translations repo" }, "aboutFilterLists": { - "message": "Filter lists", + "message": "வடிகட்டி பட்டியல்கள்", "description": "Link text to uBO's own filter lists repo" }, "aboutDependencies": { - "message": "External dependencies (GPLv3-compatible):", + "message": "வெளிப்புற சார்புகள் (GPLv3- இணக்கமானது):", "description": "Shown in the About pane" }, "supportS6H": { @@ -132,7 +132,7 @@ "description": "First paragraph of 'Filter issues' section in Support pane" }, "supportS5H": { - "message": "Troubleshooting information", + "message": "பிழைதீர்க்கும் தகவல்", "description": "Label of 'Troubleshooting information' section in 'Report a filter issue' page" }, "supportS6P1S1": { @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "வலைப்பக்கத்தின் முகவரி:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "வலைப்பக்கம்…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -156,11 +156,11 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Select1Option1": { - "message": "Shows ads or ad leftovers", + "message": "விளம்பரங்களையோ அல்லது விளம்பரக் குறிப்புகளையோ காண்பிக்கிறது", "description": "An entry in the widget used to select the type of issue" }, "supportS6Select1Option2": { - "message": "Has overlays or other nuisances", + "message": "மேலோட்டங்கள் அல்லது பிற சிரமங்களைக் கொண்டுள்ளது", "description": "An entry in the widget used to select the type of issue" }, "supportS6Select1Option3": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -200,19 +200,19 @@ "description": "This describes the default filtering mode setting" }, "filteringMode0Name": { - "message": "no filtering", + "message": "வடிகட்டு இல்லை", "description": "Name of blocking mode 0" }, "filteringMode1Name": { - "message": "basic", + "message": "அடிப்படை", "description": "Name of blocking mode 1" }, "filteringMode2Name": { - "message": "optimal", + "message": "சிறந்தது", "description": "Name of blocking mode 2" }, "filteringMode3Name": { - "message": "complete", + "message": "முழுமையான", "description": "Name of blocking mode 3" }, "basicFilteringModeDescription": { @@ -224,7 +224,7 @@ "description": "This describes the 'optimal' filtering mode" }, "completeFilteringModeDescription": { - "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher webpage resources usage.", + "message": "Advanced network filtering plus specific and generic extended filtering from selected filter lists.\n\nRequires broad permission to read and modify data on all websites.\n\nGeneric extended filtering may cause higher web page resources usage.", "description": "This describes the 'complete' filtering mode" }, "noFilteringModeDescription": { @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/te/messages.json b/platform/mv3/extension/_locales/te/messages.json index 7b9808d3aff6c..a6912b6505bbf 100644 --- a/platform/mv3/extension/_locales/te/messages.json +++ b/platform/mv3/extension/_locales/te/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Default filtering mode", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/th/messages.json b/platform/mv3/extension/_locales/th/messages.json index c69cda0791bbe..89e328acd20ad 100644 --- a/platform/mv3/extension/_locales/th/messages.json +++ b/platform/mv3/extension/_locales/th/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "สร้างรายงานใหม่", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "โหมดการกรองเริ่มต้น", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "บล๊อกเพจ", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite ได้ป้องกันเพจเหล่านี้จากการโหลด:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "ย้อนกลับ", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "ปิดหน้าต่างนี้", diff --git a/platform/mv3/extension/_locales/tr/messages.json b/platform/mv3/extension/_locales/tr/messages.json index ddd6b374c1b99..f80e64bcab16d 100644 --- a/platform/mv3/extension/_locales/tr/messages.json +++ b/platform/mv3/extension/_locales/tr/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "GitHub'da yeni rapor oluştur", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Varsayılan filtreleme modu", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Sayfa engellendi", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBo Lite aşağıdaki sayfaların yüklenmesini engelledi:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Geri git", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Bu pencereyi kapat", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Varsayılan ayarlara sıfırla... ", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Tüm özel ayarlarınız silinecektir. Gerçekten varsayılan ayarlara sıfırlamak istiyor musunuz?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/uk/messages.json b/platform/mv3/extension/_locales/uk/messages.json index 42751c051a0a6..f1dcd40ea6e63 100644 --- a/platform/mv3/extension/_locales/uk/messages.json +++ b/platform/mv3/extension/_locales/uk/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Створити новий звіт", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Типовий режим фільтрування", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Сторінку заблоковано", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite заблокував завантаження таких сторінок:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Повернутися", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Закрити це вікно", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Скинути до усталених налаштувань…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "Усі користувацькі налаштування буде вилучено. Хочете скинути налаштування до типових?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/ur/messages.json b/platform/mv3/extension/_locales/ur/messages.json index a4e4df44ddea2..fee739f926b05 100644 --- a/platform/mv3/extension/_locales/ur/messages.json +++ b/platform/mv3/extension/_locales/ur/messages.json @@ -144,11 +144,11 @@ "description": "A clickable link in the filter issue reporter section" }, "supportS6URL": { - "message": "Address of the webpage:", + "message": "Address of the web page:", "description": "Label for the URL of the page" }, "supportS6Select1": { - "message": "The webpage…", + "message": "The web page…", "description": "Label for widget to select type of issue" }, "supportS6Select1Option0": { @@ -184,12 +184,12 @@ "description": "An entry in the widget used to select the type of issue" }, "supportS6Checkbox1": { - "message": "Label the webpage as “NSFW” (“Not Safe For Work”)", + "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "ڈیفالٹ فلٹرنگ موڈ", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Page blocked", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite has prevented the following page from loading:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Go back", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Close this window", @@ -416,7 +416,7 @@ "description": "Text for the button to create the filter" }, "unpickerUsage": { - "message": "Select a filter below to highlight matching elements in the webpage. Click the trash can to remove a filter.", + "message": "Select a filter below to highlight matching elements in the web page. Click the trash can to remove a filter.", "description": "Summary description on how to use the tool to remove custom filters" } } diff --git a/platform/mv3/extension/_locales/vi/messages.json b/platform/mv3/extension/_locales/vi/messages.json index 70f6b8cecbe0e..b6c876793d17b 100644 --- a/platform/mv3/extension/_locales/vi/messages.json +++ b/platform/mv3/extension/_locales/vi/messages.json @@ -72,7 +72,7 @@ "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupMalware": { - "message": "Các tên miền nguy hiểm", + "message": "Bảo vệ phần mềm độc hại, bảo mật", "description": "Header for a ruleset section in 'Filter lists pane'" }, "3pGroupAnnoyances": { @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Tạo báo cáo mới", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "Chế độ bộ lọc mặc định", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Trang bị chặn", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite đã ngăn tải trang sau:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "Quay lại", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "Đóng cửa sổ này", diff --git a/platform/mv3/extension/_locales/zh_CN/messages.json b/platform/mv3/extension/_locales/zh_CN/messages.json index 6933643317795..7754478f911b0 100644 --- a/platform/mv3/extension/_locales/zh_CN/messages.json +++ b/platform/mv3/extension/_locales/zh_CN/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "创建新报告", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "默认过滤模式", @@ -281,14 +281,14 @@ }, "strictblockTitle": { "message": "页面已被拦截", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite 已阻止加载以下页面:", "description": "Sentence used in the strict-blocked page" }, "strictblockReasonSentence1": { - "message": "该页面由于 {{listName}} 中的匹配过滤器而被阻止。", + "message": "该页面由于 {{listname}} 中的匹配过滤器而被阻止。", "description": "Text informing about what is causing the page to be blocked" }, "strictblockRedirectSentence1": { @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "返回", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "关闭此窗口", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "重置为默认设置…", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "您的自定义设置将被清除。是否确定要重置为默认设置?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/zh_TW/messages.json b/platform/mv3/extension/_locales/zh_TW/messages.json index 9f236bc176edc..f8cc378afbe0a 100644 --- a/platform/mv3/extension/_locales/zh_TW/messages.json +++ b/platform/mv3/extension/_locales/zh_TW/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "建立新報告", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which opens an external web page in Support pane" }, "defaultFilteringModeSectionLabel": { "message": "預設過濾模式", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "已封鎖頁面", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite 已防止下列頁面載入:", @@ -301,7 +301,7 @@ }, "strictblockBack": { "message": "返回", - "description": "A button to go back to the previous webpage" + "description": "A button to go back to the previous web page" }, "strictblockClose": { "message": "關閉此視窗", @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "重設為預設設定……", "description": "Text for buttons used to reset configurations to default" }, "resetToDefaultConfirm": { - "message": "All your custom settings will be removed. Do you really want to reset to default settings?", + "message": "所有自訂設定都將被移除。您確定要重設為預設值嗎?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/css/dashboard.css b/platform/mv3/extension/css/dashboard.css index dc3a69e4478ee..45a4d98dce78c 100644 --- a/platform/mv3/extension/css/dashboard.css +++ b/platform/mv3/extension/css/dashboard.css @@ -61,11 +61,12 @@ body [data-pane-related] { padding: 0 var(--default-gap-xxsmall); } -body[data-pane="settings"] > section[data-pane="settings"], -body[data-pane="rulesets"] > section[data-pane="rulesets"], -body[data-pane="filters"] > section[data-pane="filters"], -body[data-pane="develop"] > section[data-pane="develop"], -body[data-pane="about"] > section[data-pane="about"] { +body[data-pane="settings"]:not(.busy) > section[data-pane="settings"], +body[data-pane="rulesets"]:not(.busy) > section[data-pane="rulesets"], +body[data-pane="filters"]:not(.busy) > section[data-pane="filters"], +body[data-pane="develop"]:not(.busy) > section[data-pane="develop"], +body[data-pane="about"]:not(.busy) > section[data-pane="about"], +body.busy[data-pane] > section[data-pane="busy"] { display: block; } diff --git a/platform/mv3/extension/css/popup.css b/platform/mv3/extension/css/popup.css index b2f208a7ea754..b3eea177e72ec 100644 --- a/platform/mv3/extension/css/popup.css +++ b/platform/mv3/extension/css/popup.css @@ -1,4 +1,12 @@ - /* External CSS values override */ +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } + } +@keyframes busy { + to { opacity: 90%; } +} + +/* External CSS values override */ .fa-icon.fa-icon-badged > .fa-icon-badge { bottom: auto; top: -20%; @@ -30,14 +38,40 @@ a { outline: 0; } -#main { +main { align-self: flex-start; display: flex; flex-direction: column; } -:root.portrait #main { +body.busy main { + pointer-events: none; +} +:root.portrait main { align-self: inherit; } +aside { + background-color: var(--surface-1); + bottom: 0; + display: none; + left: 0; + opacity: 0; + overflow: hidden; + position: absolute; + right: 0; + top: 0; + z-index: 1000; +} +aside .fa-icon { + animation: spin 1s steps(8) infinite; + fill: var(--surface-3); + font-size: 4em; + margin: 2em; +} +body.busy aside { + animation: busy 0s step-start 1s; + animation-fill-mode: forwards; + display: block; +} hr { margin: 0.5em 0; } @@ -185,7 +219,7 @@ body.needReload #refresh { overflow-y: auto; width: 100%; } -:root.portrait #main { +:root.portrait main { max-width: unset; } /* mouse-driven devices */ diff --git a/platform/mv3/extension/css/settings.css b/platform/mv3/extension/css/settings.css index d0efeb1b675f8..5c9a2462fe9c7 100644 --- a/platform/mv3/extension/css/settings.css +++ b/platform/mv3/extension/css/settings.css @@ -249,7 +249,7 @@ body section[data-pane="filters"] .hostnames { body section[data-pane="filters"] .hostnames:empty { display: none; } -body.busy section[data-pane="filters"] .hostnames { +body.readonly section[data-pane="filters"] .hostnames { pointer-events: none; } section[data-pane="filters"] ul { @@ -347,3 +347,15 @@ section[data-pane="filters"] aside p { justify-content: flex-start; } } + +body.busy section[data-pane="busy"] > div { + justify-content: center; + display: flex; + align-items: stretch; +} +body.busy section[data-pane="busy"] .fa-icon { + animation: spin 1s steps(8) infinite; + fill: var(--surface-3); + font-size: 4em; + margin: 2em; +} \ No newline at end of file diff --git a/platform/mv3/extension/dashboard.html b/platform/mv3/extension/dashboard.html index 7bbcec103a171..4f96966935ca9 100644 --- a/platform/mv3/extension/dashboard.html +++ b/platform/mv3/extension/dashboard.html @@ -173,6 +173,12 @@

_

+
+
+ spinner +
+
+