From 024019094f84deb0f60f89b0ead2028c796e651e Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 09:22:42 -0500 Subject: [PATCH 01/70] Fix `specifichide` option Related internal feedback: https://github.com/uBlockOrigin/uBlock-discussions/discussions/964 --- src/js/cosmetic-filtering.js | 73 +++++++++++++++++------------------- 1 file changed, 35 insertions(+), 38 deletions(-) diff --git a/src/js/cosmetic-filtering.js b/src/js/cosmetic-filtering.js index 7cb520a988063..4b4e561d5612c 100644 --- a/src/js/cosmetic-filtering.js +++ b/src/js/cosmetic-filtering.js @@ -758,11 +758,9 @@ CosmeticFilteringEngine.prototype.retrieveSpecificSelectors = function( disableSurveyor: this.lowlyGeneric.size === 0, }; const injectedCSS = []; + const exceptionSet = new Set(); - if ( - options.noSpecificCosmeticFiltering !== true || - options.noGenericCosmeticFiltering !== true - ) { + if ( options.noSpecificCosmeticFiltering !== true ) { // Cached cosmetic filters: these are always declarative. const specificSet = new Set(); if ( cacheEntry !== undefined ) { @@ -785,7 +783,6 @@ CosmeticFilteringEngine.prototype.retrieveSpecificSelectors = function( // Split filters in different groups const proceduralSet = new Set(); - const exceptionSet = new Set(); for ( const s of allSet ) { const selector = s.slice(1); if ( s.charCodeAt(0) === 0x2D /* - */ ) { @@ -837,44 +834,44 @@ CosmeticFilteringEngine.prototype.retrieveSpecificSelectors = function( } out.proceduralFilters.push(...proceduralSet); } + } - // Highly generic cosmetic filters: sent once along with specific ones. - // A most-recent-used cache is used to skip computing the resulting set - // of high generics for a given set of exceptions. - // The resulting set of high generics is stored as a string, ready to - // be used as-is by the content script. The string is stored - // indirectly in the mru cache: this is to prevent duplication of the - // string in memory, which I have observed occurs when the string is - // stored directly as a value in a Map. - if ( options.noGenericCosmeticFiltering !== true ) { - const exceptionSetHash = out.exceptionFilters.join(); - for ( const key in this.highlyGeneric ) { - const entry = this.highlyGeneric[key]; - let str = entry.mru.lookup(exceptionSetHash); - if ( str === undefined ) { - str = { s: entry.str, excepted: [] }; - let genericSet = entry.dict; - let hit = false; + // Highly generic cosmetic filters: sent once along with specific ones. + // A most-recent-used cache is used to skip computing the resulting set + // of high generics for a given set of exceptions. + // The resulting set of high generics is stored as a string, ready to + // be used as-is by the content script. The string is stored + // indirectly in the mru cache: this is to prevent duplication of the + // string in memory, which I have observed occurs when the string is + // stored directly as a value in a Map. + if ( options.noGenericCosmeticFiltering !== true ) { + const exceptionSetHash = out.exceptionFilters.join(); + for ( const key in this.highlyGeneric ) { + const entry = this.highlyGeneric[key]; + let str = entry.mru.lookup(exceptionSetHash); + if ( str === undefined ) { + str = { s: entry.str, excepted: [] }; + let genericSet = entry.dict; + let hit = false; + for ( const exception of exceptionSet ) { + if ( (hit = genericSet.has(exception)) ) { break; } + } + if ( hit ) { + genericSet = new Set(entry.dict); for ( const exception of exceptionSet ) { - if ( (hit = genericSet.has(exception)) ) { break; } - } - if ( hit ) { - genericSet = new Set(entry.dict); - for ( const exception of exceptionSet ) { - if ( genericSet.delete(exception) ) { - str.excepted.push(exception); - } + if ( genericSet.delete(exception) ) { + str.excepted.push(exception); } - str.s = Array.from(genericSet).join(',\n'); } - entry.mru.add(exceptionSetHash, str); - } - if ( str.excepted.length !== 0 ) { - out.exceptedFilters.push(...str.excepted); - } - if ( str.s.length !== 0 ) { - injectedCSS.push(`${str.s}\n{display:none!important;}`); + str.s = Array.from(genericSet).join(',\n'); } + entry.mru.add(exceptionSetHash, str); + } + if ( str.excepted.length !== 0 ) { + out.exceptedFilters.push(...str.excepted); + } + if ( str.s.length !== 0 ) { + injectedCSS.push(`${str.s}\n{display:none!important;}`); } } } From c053361d3092ee84c0b0ee677e58f122f0da3bd6 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 09:28:26 -0500 Subject: [PATCH 02/70] Mind id/class changes in generic cosmetic filtering surveyor Related issue: https://github.com/uBlockOrigin/uBlock-issues/issues/3904 --- src/js/contentscript.js | 174 +++++++++++++++++++++------------------- 1 file changed, 91 insertions(+), 83 deletions(-) diff --git a/src/js/contentscript.js b/src/js/contentscript.js index 0874918e74663..5d0bd66ee4eed 100644 --- a/src/js/contentscript.js +++ b/src/js/contentscript.js @@ -373,13 +373,11 @@ vAPI.SafeAnimationFrame = class { let i = mutations.length; while ( i-- ) { const mutation = mutations[i]; - let nodeList = mutation.addedNodes; - if ( nodeList.length !== 0 ) { - addedNodeLists.push(nodeList); - } - nodeList = mutation.removedNodes; - if ( nodeList.length !== 0 ) { - removedNodeLists.push(nodeList); + if ( mutation.addedNodes.length !== 0 ) { + addedNodeLists.push(mutation.addedNodes); + } + if ( mutation.removedNodes.length !== 0 ) { + removedNodeLists.push(mutation.removedNodes); } } if ( addedNodeLists.length !== 0 || removedNodeLists.length !== 0 ) { @@ -393,8 +391,6 @@ vAPI.SafeAnimationFrame = class { if ( domLayoutObserver !== undefined ) { return; } domLayoutObserver = new MutationObserver(observerHandler); domLayoutObserver.observe(document, { - //attributeFilter: [ 'class', 'id' ], - //attributes: true, childList: true, subtree: true }); @@ -928,6 +924,22 @@ vAPI.DOMFilterer = class { // vAPI.domSurveyor { + const queriedHashes = new Set(); + const newHashes = new Set(); + const maxSurveyNodes = 65536; + const pendingLists = []; + const pendingNodes = []; + const processedSet = new Set(); + const ignoreTags = Object.assign(Object.create(null), { + br: 1, head: 1, link: 1, meta: 1, script: 1, style: 1 + }); + let domObserver; + let domFilterer; + let hostname = ''; + let domChanged = false; + let scannedCount = 0; + let stopped = false; + // http://www.cse.yorku.ca/~oz/hash.html#djb2 // Must mirror cosmetic filtering compiler's version const hashFromStr = (type, s) => { @@ -946,20 +958,12 @@ vAPI.DOMFilterer = class { } }; - const queriedHashes = new Set(); - const maxSurveyNodes = 65536; - const pendingLists = []; - const pendingNodes = []; - const processedSet = new Set(); - let domFilterer; - let hostname = ''; - let domChanged = false; - let scannedCount = 0; - let stopped = false; + const qsa = (context, selector) => + Array.from(context.querySelectorAll(selector)); const addPendingList = list => { if ( list.length === 0 ) { return; } - pendingLists.push(Array.from(list)); + pendingLists.push(list); }; const nextPendingNodes = ( ) => { @@ -986,7 +990,7 @@ vAPI.DOMFilterer = class { }; const hasPendingNodes = ( ) => { - return pendingLists.length !== 0; + return pendingLists.length !== 0 || newHashes.size !== 0 ; }; // Extract all classes/ids: these will be passed to the cosmetic @@ -997,18 +1001,18 @@ vAPI.DOMFilterer = class { // http://www.w3.org/TR/2014/REC-html5-20141028/infrastructure.html#space-separated-tokens // http://jsperf.com/enumerate-classes/6 - const idFromNode = (node, out) => { + const idFromNode = node => { const raw = node.id; if ( typeof raw !== 'string' || raw.length === 0 ) { return; } const hash = hashFromStr(0x23 /* '#' */, raw.trim()); if ( queriedHashes.has(hash) ) { return; } queriedHashes.add(hash); - out.push(hash); + newHashes.add(hash); }; // https://github.com/uBlockOrigin/uBlock-issues/discussions/2076 // Performance: avoid using Element.classList - const classesFromNode = (node, out) => { + const classesFromNode = node => { const s = node.getAttribute('class'); if ( typeof s !== 'string' ) { return; } const len = s.length; @@ -1022,32 +1026,29 @@ vAPI.DOMFilterer = class { const hash = hashFromStr(0x2E /* '.' */, token); if ( queriedHashes.has(hash) ) { continue; } queriedHashes.add(hash); - out.push(hash); + newHashes.add(hash); } }; - const getSurveyResults = (hashes, safeOnly) => { - if ( self.vAPI.messaging instanceof Object === false ) { - stop(); return; - } - const promise = hashes.length === 0 + const getSurveyResults = safeOnly => { + if ( Boolean(self.vAPI?.messaging) === false ) { return stop(); } + const promise = newHashes.size === 0 ? Promise.resolve(null) : self.vAPI.messaging.send('contentscript', { what: 'retrieveGenericCosmeticSelectors', hostname, - hashes, + hashes: Array.from(newHashes), exceptions: domFilterer.exceptions, safeOnly, }); promise.then(response => { processSurveyResults(response); }); + newHashes.clear(); }; const doSurvey = ( ) => { - if ( self.vAPI instanceof Object === false ) { return; } const t0 = performance.now(); - const hashes = []; const nodes = pendingNodes; const deadline = t0 + 4; let scanned = 0; @@ -1060,8 +1061,8 @@ vAPI.DOMFilterer = class { if ( processedSet.has(node) ) { continue; } processedSet.add(node); } - idFromNode(node, hashes); - classesFromNode(node, hashes); + idFromNode(node); + classesFromNode(node); scanned += 1; } if ( performance.now() >= deadline ) { break; } @@ -1071,7 +1072,7 @@ vAPI.DOMFilterer = class { stop(); } processedSet.clear(); - getSurveyResults(hashes); + getSurveyResults(); }; const surveyTimer = new vAPI.SafeAnimationFrame(doSurvey); @@ -1121,66 +1122,73 @@ vAPI.DOMFilterer = class { }); }; - const domWatcherInterface = { - onDOMCreated: function() { - domFilterer = vAPI.domFilterer; - // https://github.com/uBlockOrigin/uBlock-issues/issues/1692 - // Look-up safe-only selectors to mitigate probability of - // html/body elements of erroneously being targeted. - const hashes = []; - if ( document.documentElement !== null ) { - idFromNode(document.documentElement, hashes); - classesFromNode(document.documentElement, hashes); - } - if ( document.body !== null ) { - idFromNode(document.body, hashes); - classesFromNode(document.body, hashes); - } - if ( hashes.length !== 0 ) { - getSurveyResults(hashes, true); - } - addPendingList(document.querySelectorAll( - '[id]:not(html):not(body),[class]:not(html):not(body)' - )); - if ( hasPendingNodes() ) { - surveyTimer.start(); - } - }, - onDOMChanged: function(addedNodes) { - if ( addedNodes.length === 0 ) { return; } - domChanged = true; - for ( const node of addedNodes ) { - addPendingList([ node ]); - if ( node.firstElementChild === null ) { continue; } - addPendingList( - node.querySelectorAll( - '[id]:not(html):not(body),[class]:not(html):not(body)' - ) - ); - } - if ( hasPendingNodes() ) { - surveyTimer.start(1); + const onDomChanged = mutations => { + domChanged = true; + for ( const mutation of mutations ) { + if ( mutation.type === 'childList' ) { + const { addedNodes } = mutation; + if ( addedNodes.length === 0 ) { continue; } + for ( const node of addedNodes ) { + if ( node.nodeType !== 1 ) { continue; } + if ( ignoreTags[node.localName] ) { continue; } + if ( node.parentElement === null ) { continue; } + addPendingList([ node ]); + if ( node.firstElementChild === null ) { continue; } + addPendingList(qsa(node, '[id],[class]')); + } + } else if ( mutation.attributeName === 'class' ) { + classesFromNode(mutation.target); + } else { + idFromNode(mutation.target); } } + if ( hasPendingNodes() ) { + surveyTimer.start(); + } }; const start = details => { - if ( self.vAPI instanceof Object === false ) { return; } - if ( self.vAPI.domFilterer instanceof Object === false ) { return; } - if ( self.vAPI.domWatcher instanceof Object === false ) { return; } + if ( Boolean(self.vAPI?.domFilterer) === false ) { return stop(); } hostname = details.hostname; - self.vAPI.domWatcher.addListener(domWatcherInterface); + domFilterer = vAPI.domFilterer; + // https://github.com/uBlockOrigin/uBlock-issues/issues/1692 + // Look-up safe-only selectors to mitigate probability of + // html/body elements of erroneously being targeted. + if ( document.documentElement !== null ) { + idFromNode(document.documentElement); + classesFromNode(document.documentElement); + } + if ( document.body !== null ) { + idFromNode(document.body); + classesFromNode(document.body); + } + if ( newHashes.size !== 0 ) { + getSurveyResults(newHashes, true); + } + addPendingList(qsa(document, '[id],[class]')); + if ( hasPendingNodes() ) { + surveyTimer.start(); + } + domObserver = new MutationObserver(onDomChanged); + domObserver.observe(document, { + attributeFilter: [ 'class', 'id' ], + attributes: true, + childList: true, + subtree: true + }); }; const stop = ( ) => { stopped = true; pendingLists.length = 0; surveyTimer.clear(); - if ( self.vAPI instanceof Object === false ) { return; } - if ( self.vAPI.domWatcher instanceof Object ) { - self.vAPI.domWatcher.removeListener(domWatcherInterface); + if ( domObserver ) { + domObserver.disconnect(); + domObserver = undefined; + } + if ( self.vAPI?.domSurveyor ) { + self.vAPI.domSurveyor = null; } - self.vAPI.domSurveyor = null; }; self.vAPI.domSurveyor = { start, addHashes }; From 5a2905c023906ef8ac8f595c05020ee679e2792c Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 09:31:21 -0500 Subject: [PATCH 03/70] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2054a3064709..ee4a282cb04dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +- [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) From b253c0bc0b5fba81c96b4215bc4b97a48f6bef47 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 09:31:42 -0500 Subject: [PATCH 04/70] New revision for dev build --- dist/version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/version b/dist/version index 56cf934a6aa8e..1d21834de9ce5 100644 --- a/dist/version +++ b/dist/version @@ -1 +1 @@ -1.68.1.7 \ No newline at end of file +1.68.1.8 \ No newline at end of file From e7f91cdd95077692edd3faa29bb50b75a0e9a1d6 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 10:47:50 -0500 Subject: [PATCH 05/70] Import translation work from https://crowdin.com/project/ublock --- platform/mv3/description/webstore.ko.txt | 2 +- .../mv3/extension/_locales/ca/messages.json | 4 ++-- .../mv3/extension/_locales/da/messages.json | 4 ++-- .../mv3/extension/_locales/de/messages.json | 4 ++-- .../mv3/extension/_locales/el/messages.json | 4 ++-- .../mv3/extension/_locales/es/messages.json | 4 ++-- .../mv3/extension/_locales/fr/messages.json | 4 ++-- .../mv3/extension/_locales/he/messages.json | 4 ++-- .../mv3/extension/_locales/it/messages.json | 4 ++-- .../mv3/extension/_locales/ko/messages.json | 18 +++++++++--------- .../mv3/extension/_locales/nl/messages.json | 4 ++-- .../mv3/extension/_locales/pl/messages.json | 4 ++-- .../mv3/extension/_locales/pt_BR/messages.json | 4 ++-- .../mv3/extension/_locales/pt_PT/messages.json | 4 ++-- .../mv3/extension/_locales/ru/messages.json | 4 ++-- .../mv3/extension/_locales/sk/messages.json | 4 ++-- .../mv3/extension/_locales/tr/messages.json | 2 +- .../mv3/extension/_locales/zh_CN/messages.json | 4 ++-- .../mv3/extension/_locales/zh_TW/messages.json | 4 ++-- src/_locales/ko/messages.json | 16 ++++++++-------- src/_locales/zh_TW/messages.json | 12 ++++++------ 21 files changed, 57 insertions(+), 57 deletions(-) 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/ca/messages.json b/platform/mv3/extension/_locales/ca/messages.json index d3cfd54544797..c271d050d41b5 100644 --- a/platform/mv3/extension/_locales/ca/messages.json +++ b/platform/mv3/extension/_locales/ca/messages.json @@ -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/da/messages.json b/platform/mv3/extension/_locales/da/messages.json index 17e52d43b4d70..fc803f5aba253 100644 --- a/platform/mv3/extension/_locales/da/messages.json +++ b/platform/mv3/extension/_locales/da/messages.json @@ -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..cea10758411e4 100644 --- a/platform/mv3/extension/_locales/de/messages.json +++ b/platform/mv3/extension/_locales/de/messages.json @@ -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..05b045aab3070 100644 --- a/platform/mv3/extension/_locales/el/messages.json +++ b/platform/mv3/extension/_locales/el/messages.json @@ -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/es/messages.json b/platform/mv3/extension/_locales/es/messages.json index 55dd1ae3eba4b..6bd1f1a9dccc1 100644 --- a/platform/mv3/extension/_locales/es/messages.json +++ b/platform/mv3/extension/_locales/es/messages.json @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Restablecer a 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": "Todos tus ajustes personalizados serán removidos. ¿Realmente quieres restablecer a los ajustes predeterminados?", "description": "Message asking user to confirm reset to default settings" }, "dnrRulesWarning": { diff --git a/platform/mv3/extension/_locales/fr/messages.json b/platform/mv3/extension/_locales/fr/messages.json index 01104119faf99..4efde298f8c12 100644 --- a/platform/mv3/extension/_locales/fr/messages.json +++ b/platform/mv3/extension/_locales/fr/messages.json @@ -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/he/messages.json b/platform/mv3/extension/_locales/he/messages.json index 926fce5a813fc..bc234ddf5801d 100644 --- a/platform/mv3/extension/_locales/he/messages.json +++ b/platform/mv3/extension/_locales/he/messages.json @@ -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/it/messages.json b/platform/mv3/extension/_locales/it/messages.json index 33a52e9934e9c..a9bfe54120ebc 100644 --- a/platform/mv3/extension/_locales/it/messages.json +++ b/platform/mv3/extension/_locales/it/messages.json @@ -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/ko/messages.json b/platform/mv3/extension/_locales/ko/messages.json index 09e61f3753671..988f051fca6d6 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": { @@ -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": { @@ -308,7 +308,7 @@ "description": "A button to close the current tab" }, "strictblockDontWarn": { - "message": "다시는 이 사이트에 대해 경고하지 않기", + "message": "이 사이트에 대해 다시 경고하지 않기", "description": "Label for checkbox in document-blocked page" }, "strictblockProceed": { @@ -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/nl/messages.json b/platform/mv3/extension/_locales/nl/messages.json index 6cb4216bf12d8..dcd1b4e5b0f9e 100644 --- a/platform/mv3/extension/_locales/nl/messages.json +++ b/platform/mv3/extension/_locales/nl/messages.json @@ -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/pl/messages.json b/platform/mv3/extension/_locales/pl/messages.json index b94336e3b8d1f..af1937ba0a675 100644 --- a/platform/mv3/extension/_locales/pl/messages.json +++ b/platform/mv3/extension/_locales/pl/messages.json @@ -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..d645e17e49987 100644 --- a/platform/mv3/extension/_locales/pt_BR/messages.json +++ b/platform/mv3/extension/_locales/pt_BR/messages.json @@ -384,11 +384,11 @@ "description": "Text for buttons used to restore content" }, "resetToDefaultButton": { - "message": "Reset to default settings…", + "message": "Resetar para as configurações 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..126edc366f47c 100644 --- a/platform/mv3/extension/_locales/pt_PT/messages.json +++ b/platform/mv3/extension/_locales/pt_PT/messages.json @@ -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/ru/messages.json b/platform/mv3/extension/_locales/ru/messages.json index 2a853326c00ea..387776a858b37 100644 --- a/platform/mv3/extension/_locales/ru/messages.json +++ b/platform/mv3/extension/_locales/ru/messages.json @@ -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/sk/messages.json b/platform/mv3/extension/_locales/sk/messages.json index f3ce06a9309c9..b991791e11d60 100644 --- a/platform/mv3/extension/_locales/sk/messages.json +++ b/platform/mv3/extension/_locales/sk/messages.json @@ -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/tr/messages.json b/platform/mv3/extension/_locales/tr/messages.json index ddd6b374c1b99..6344dda696fc7 100644 --- a/platform/mv3/extension/_locales/tr/messages.json +++ b/platform/mv3/extension/_locales/tr/messages.json @@ -388,7 +388,7 @@ "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/zh_CN/messages.json b/platform/mv3/extension/_locales/zh_CN/messages.json index 6933643317795..132a097af4c22 100644 --- a/platform/mv3/extension/_locales/zh_CN/messages.json +++ b/platform/mv3/extension/_locales/zh_CN/messages.json @@ -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..1df8f2af4aa53 100644 --- a/platform/mv3/extension/_locales/zh_TW/messages.json +++ b/platform/mv3/extension/_locales/zh_TW/messages.json @@ -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/src/_locales/ko/messages.json b/src/_locales/ko/messages.json index 31132589b0814..f3163acde798f 100644 --- a/src/_locales/ko/messages.json +++ b/src/_locales/ko/messages.json @@ -160,11 +160,11 @@ "description": "Tooltip for the no-cosmetic-filtering per-site switch" }, "popupTipNoCosmeticFiltering1": { - "message": "클릭하여 이 사이트에서 시각적 필터링을 끕니다.", + "message": "클릭하여 이 사이트에서 요소 숨김 필터링을 끕니다", "description": "Tooltip for the no-cosmetic-filtering per-site switch" }, "popupTipNoCosmeticFiltering2": { - "message": "클릭하여 이 사이트에서 시각적 필터링을 켭니다.", + "message": "클릭하여 이 사이트에서 요소 숨김 필터링을 켭니다", "description": "Tooltip for the no-cosmetic-filtering per-site switch" }, "popupTipNoRemoteFonts": { @@ -196,7 +196,7 @@ "description": "Caption for the no-large-media per-site switch" }, "popupNoCosmeticFiltering_v2": { - "message": "표면 필터링", + "message": "요소 숨김 필터링", "description": "Caption for the no-cosmetic-filtering per-site switch" }, "popupNoRemoteFonts_v2": { @@ -352,7 +352,7 @@ "description": "" }, "settingsAdvancedUserPrompt": { - "message": "고급 사용자 모드 (필수로 읽어보세요.)", + "message": "저는 고급 사용자입니다", "description": "Checkbox to let user access advanced, technical features" }, "settingsPrefetchingDisabledPrompt": { @@ -444,7 +444,7 @@ "description": "English: Parse and enforce Adblock+ element hiding filters." }, "3pParseAllABPHideFiltersInfo": { - "message": "

이 옵션은 애드블록 플러스-호환 “구성 요소 감추기” 필터를 분석하고 적용하는 것을 활성화합니다. 이 필터는 기본적으로 웹 페이지에서 시각적 방해 요소들을 숨기는 역할을 하며, 네트워크 요청에 기반한 필터링 엔진에서 차단될 수 없습니다.

이 기능을 활성화하면 uBlock₀의 메모리 사용량이 증가합니다.

", + "message": "요소 숨김 필터링은 네트워크 요청 차단 방식으로는 막을 수 없는, 웹 페이지 내의 시각적으로 거슬리는 요소들을 숨기는 역할을 합니다.", "description": "Describes the purpose of the 'Parse and enforce cosmetic filters' feature." }, "3pIgnoreGenericCosmeticFilters": { @@ -452,7 +452,7 @@ "description": "This will cause uBO to ignore all generic cosmetic filters." }, "3pIgnoreGenericCosmeticFiltersInfo": { - "message": "

전체적 표면 필터들은 방문하는 모든 사이트에 적용하는 표면 필터입니다.

uBlock₀는 이를 효율적으로 적용하지만, 전체적 표면 필터들은 사이트의 크기와 유지시간에 따라 확연할 정도의 메모리 및 CPU 오버헤드를 줄 수 있습니다.

이 옵션을 활성화하면 전체적 표면 필터 적용으로 메모리 및 CPU 오버헤드를 제거하고, uBlock₀ 자체의 메모리 사용량도 줄입니다.

저전력 기기에 사용하는 것을 권장합니다.", + "message": "범용 요소 숨김 필터는 모든 웹사이트에 공통적으로 적용되는 필터입니다. 이 옵션을 활성화하면 범용 요소 숨김 필터링을 처리하는 과정에서 발생하는 웹 페이지의 메모리 및 CPU 부하를 제거할 수 있습니다.\n\n사양이 낮은 기기에서는 이 옵션을 활성화하는 것을 권장합니다.", "description": "Describes the purpose of the 'Ignore generic cosmetic filters' feature." }, "3pSuspendUntilListsAreLoaded": { @@ -512,7 +512,7 @@ "description": "The label for the checkbox used to import external filter lists" }, "3pExternalListsHint": { - "message": "한 줄에 한 개의 URL을 입력하세요. 시작 부분이 ‘!’ 로 시작되면 무시됩니다. 존재하지 않는 URL은 자동으로 무시됩니다.", + "message": "한 줄에 한 개의 URL을 입력하세요. 존재하지 않는 URL은 자동으로 무시됩니다.", "description": "Short information about how to use the textarea to import external filter lists by URL" }, "3pExternalListObsolete": { @@ -1284,7 +1284,7 @@ "description": "Label for buttons used to select all text in editor" }, "toggleCosmeticFiltering": { - "message": "시각 요소 필터 토글", + "message": "요소 숨김 필터링 토글", "description": "Label for keyboard shortcut used to toggle cosmetic filtering" }, "toggleJavascript": { diff --git a/src/_locales/zh_TW/messages.json b/src/_locales/zh_TW/messages.json index 165bd97c7aa25..9f76918fdbf00 100644 --- a/src/_locales/zh_TW/messages.json +++ b/src/_locales/zh_TW/messages.json @@ -356,7 +356,7 @@ "description": "Checkbox to let user access advanced, technical features" }, "settingsPrefetchingDisabledPrompt": { - "message": "停用預先取回連結(避免連接至已阻擋的網路請求)", + "message": "停用預先擷取功能(以避免對被封鎖的網路請求產生任何連線)", "description": "English: " }, "settingsHyperlinkAuditingDisabledPrompt": { @@ -364,7 +364,7 @@ "description": "English: " }, "settingsWebRTCIPAddressHiddenPrompt": { - "message": "防止 WebRTC 洩漏本地 IP 位址", + "message": "防止 WebRTC 洩漏本機 IP 位址", "description": "English: " }, "settingPerSiteSwitchGroup": { @@ -404,7 +404,7 @@ "description": "Section for controlling advanced-user settings" }, "settingsAdvancedSynopsis": { - "message": "僅合適技術使用者的功能", + "message": "僅適合技術使用者的功能", "description": "Description of section controlling advanced-user settings" }, "settingsAdvancedUserSettings": { @@ -480,7 +480,7 @@ "description": "Filter lists section name" }, "3pGroupMalware": { - "message": "惡意軟體保護及保安", + "message": "惡意軟體防護與安全性", "description": "Filter lists section name" }, "3pGroupSocial": { @@ -524,7 +524,7 @@ "description": "used as a tooltip for eye icon beside a list" }, "3pLastUpdate": { - "message": "上次更新:{{ago}}。\n點擊此處以強制更新。", + "message": "上次更新時間:{{ago}}。\n按這裡以強制更新。", "description": "used as a tooltip for the clock icon beside a list" }, "3pUpdating": { @@ -848,7 +848,7 @@ "description": "A logger setting" }, "loggerSettingPerTabMaxLoads": { - "message": "每個分頁最多保留 {{input}} 次內容加載產生的記錄", + "message": "每個分頁最多保留 {{input}} 次內容載入產生的記錄", "description": "A logger setting" }, "loggerSettingPerTabMaxEntries": { From 0bd6d0973632c7bb5fb504e16268b62928c638e1 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 10:50:26 -0500 Subject: [PATCH 06/70] Fix source strings as per feedback --- .../mv3/extension/_locales/en/messages.json | 16 ++++++------ src/_locales/en/messages.json | 25 +++++-------------- 2 files changed, 14 insertions(+), 27 deletions(-) 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/src/_locales/en/messages.json b/src/_locales/en/messages.json index 0c062100aca1a..f89db83ea5bda 100644 --- a/src/_locales/en/messages.json +++ b/src/_locales/en/messages.json @@ -12,7 +12,7 @@ "description": "English: uBlock₀ — Dashboard" }, "dashboardUnsavedWarning": { - "message": "Warning! You have unsaved changes", + "message": "Warning: you have unsaved changes!", "description": "A warning in the dashboard when navigating away from unsaved changes" }, "dashboardUnsavedWarningStay": { @@ -898,11 +898,11 @@ "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -973,7 +973,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1020,15 +1020,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, - "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1101,10 +1092,6 @@ "message": "Network error: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribe", "description": "For the button used to subscribe to a filter list" @@ -1154,7 +1141,7 @@ "description": "Used in the strict-blocking page" }, "docblockedPrompt2": { - "message": "Because of the following filter:", + "message": "This happened because of the following filter:", "description": "Used in the strict-blocking page" }, "docblockedNoParamsPrompt": { @@ -1162,7 +1149,7 @@ "description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png" }, "docblockedFoundIn": { - "message": "Found in:", + "message": "The filter has been found in:", "description": "English: List of filter list names follows" }, "docblockedBack": { From ede231b9c233a11feca468623f4e66c47bdfbd43 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 10:51:37 -0500 Subject: [PATCH 07/70] Import translation work from https://crowdin.com/project/ublock --- .../mv3/extension/_locales/ar/messages.json | 6 ++--- .../mv3/extension/_locales/az/messages.json | 16 ++++++------- .../mv3/extension/_locales/be/messages.json | 6 ++--- .../mv3/extension/_locales/bg/messages.json | 6 ++--- .../mv3/extension/_locales/bn/messages.json | 8 +++---- .../extension/_locales/br_FR/messages.json | 6 ++--- .../mv3/extension/_locales/bs/messages.json | 6 ++--- .../mv3/extension/_locales/ca/messages.json | 6 ++--- .../mv3/extension/_locales/cs/messages.json | 6 ++--- .../mv3/extension/_locales/cv/messages.json | 16 ++++++------- .../mv3/extension/_locales/cy/messages.json | 12 +++++----- .../mv3/extension/_locales/da/messages.json | 6 ++--- .../mv3/extension/_locales/de/messages.json | 6 ++--- .../mv3/extension/_locales/el/messages.json | 6 ++--- .../extension/_locales/en_GB/messages.json | 6 ++--- .../mv3/extension/_locales/eo/messages.json | 16 ++++++------- .../mv3/extension/_locales/es/messages.json | 6 ++--- .../mv3/extension/_locales/et/messages.json | 6 ++--- .../mv3/extension/_locales/eu/messages.json | 14 +++++------ .../mv3/extension/_locales/fa/messages.json | 14 +++++------ .../mv3/extension/_locales/fi/messages.json | 6 ++--- .../mv3/extension/_locales/fil/messages.json | 8 +++---- .../mv3/extension/_locales/fr/messages.json | 6 ++--- .../mv3/extension/_locales/fy/messages.json | 6 ++--- .../mv3/extension/_locales/gl/messages.json | 6 ++--- .../mv3/extension/_locales/gu/messages.json | 16 ++++++------- .../mv3/extension/_locales/he/messages.json | 6 ++--- .../mv3/extension/_locales/hi/messages.json | 10 ++++---- .../mv3/extension/_locales/hr/messages.json | 6 ++--- .../mv3/extension/_locales/hu/messages.json | 6 ++--- .../mv3/extension/_locales/hy/messages.json | 12 +++++----- .../mv3/extension/_locales/id/messages.json | 6 ++--- .../mv3/extension/_locales/it/messages.json | 6 ++--- .../mv3/extension/_locales/ja/messages.json | 6 ++--- .../mv3/extension/_locales/ka/messages.json | 6 ++--- .../mv3/extension/_locales/kk/messages.json | 16 ++++++------- .../mv3/extension/_locales/kn/messages.json | 16 ++++++------- .../mv3/extension/_locales/ko/messages.json | 6 ++--- .../mv3/extension/_locales/lt/messages.json | 16 ++++++------- .../mv3/extension/_locales/lv/messages.json | 6 ++--- .../mv3/extension/_locales/mk/messages.json | 8 +++---- .../mv3/extension/_locales/ml/messages.json | 14 +++++------ .../mv3/extension/_locales/mr/messages.json | 16 ++++++------- .../mv3/extension/_locales/ms/messages.json | 14 +++++------ .../mv3/extension/_locales/nb/messages.json | 6 ++--- .../mv3/extension/_locales/nl/messages.json | 6 ++--- .../mv3/extension/_locales/oc/messages.json | 16 ++++++------- .../mv3/extension/_locales/pa/messages.json | 10 ++++---- .../mv3/extension/_locales/pl/messages.json | 6 ++--- .../extension/_locales/pt_BR/messages.json | 6 ++--- .../extension/_locales/pt_PT/messages.json | 6 ++--- .../mv3/extension/_locales/ro/messages.json | 6 ++--- .../mv3/extension/_locales/ru/messages.json | 6 ++--- .../mv3/extension/_locales/si/messages.json | 8 +++---- .../mv3/extension/_locales/sk/messages.json | 6 ++--- .../mv3/extension/_locales/sl/messages.json | 16 ++++++------- .../mv3/extension/_locales/so/messages.json | 16 ++++++------- .../mv3/extension/_locales/sq/messages.json | 6 ++--- .../mv3/extension/_locales/sr/messages.json | 6 ++--- .../mv3/extension/_locales/sv/messages.json | 6 ++--- .../mv3/extension/_locales/sw/messages.json | 16 ++++++------- .../mv3/extension/_locales/ta/messages.json | 16 ++++++------- .../mv3/extension/_locales/te/messages.json | 14 +++++------ .../mv3/extension/_locales/th/messages.json | 6 ++--- .../mv3/extension/_locales/tr/messages.json | 6 ++--- .../mv3/extension/_locales/uk/messages.json | 6 ++--- .../mv3/extension/_locales/ur/messages.json | 14 +++++------ .../mv3/extension/_locales/vi/messages.json | 6 ++--- .../extension/_locales/zh_CN/messages.json | 6 ++--- .../extension/_locales/zh_TW/messages.json | 6 ++--- src/_locales/ar/messages.json | 16 ++----------- src/_locales/az/messages.json | 16 ++----------- src/_locales/be/messages.json | 16 ++----------- src/_locales/bg/messages.json | 16 ++----------- src/_locales/bn/messages.json | 16 ++----------- src/_locales/br_FR/messages.json | 16 ++----------- src/_locales/bs/messages.json | 16 ++----------- src/_locales/ca/messages.json | 16 ++----------- src/_locales/cs/messages.json | 16 ++----------- src/_locales/cv/messages.json | 18 +++----------- src/_locales/cy/messages.json | 22 ++++------------- src/_locales/da/messages.json | 16 ++----------- src/_locales/de/messages.json | 16 ++----------- src/_locales/el/messages.json | 16 ++----------- src/_locales/en_GB/messages.json | 16 ++----------- src/_locales/eo/messages.json | 18 +++----------- src/_locales/es/messages.json | 16 ++----------- src/_locales/et/messages.json | 16 ++----------- src/_locales/eu/messages.json | 16 ++----------- src/_locales/fa/messages.json | 16 ++----------- src/_locales/fi/messages.json | 16 ++----------- src/_locales/fil/messages.json | 16 ++----------- src/_locales/fr/messages.json | 16 ++----------- src/_locales/fy/messages.json | 16 ++----------- src/_locales/gl/messages.json | 16 ++----------- src/_locales/gu/messages.json | 22 ++++------------- src/_locales/he/messages.json | 16 ++----------- src/_locales/hi/messages.json | 16 ++----------- src/_locales/hr/messages.json | 16 ++----------- src/_locales/hu/messages.json | 16 ++----------- src/_locales/hy/messages.json | 16 ++----------- src/_locales/id/messages.json | 16 ++----------- src/_locales/it/messages.json | 16 ++----------- src/_locales/ja/messages.json | 16 ++----------- src/_locales/ka/messages.json | 16 ++----------- src/_locales/kk/messages.json | 18 +++----------- src/_locales/kn/messages.json | 22 ++++------------- src/_locales/ko/messages.json | 16 ++----------- src/_locales/lt/messages.json | 18 +++----------- src/_locales/lv/messages.json | 16 ++----------- src/_locales/mk/messages.json | 16 ++----------- src/_locales/ml/messages.json | 18 +++----------- src/_locales/mr/messages.json | 24 +++++-------------- src/_locales/ms/messages.json | 16 ++----------- src/_locales/nb/messages.json | 16 ++----------- src/_locales/nl/messages.json | 16 ++----------- src/_locales/oc/messages.json | 18 +++----------- src/_locales/pa/messages.json | 16 ++----------- src/_locales/pl/messages.json | 16 ++----------- src/_locales/pt_BR/messages.json | 16 ++----------- src/_locales/pt_PT/messages.json | 16 ++----------- src/_locales/ro/messages.json | 16 ++----------- src/_locales/ru/messages.json | 16 ++----------- src/_locales/si/messages.json | 16 ++----------- src/_locales/sk/messages.json | 16 ++----------- src/_locales/sl/messages.json | 18 +++----------- src/_locales/so/messages.json | 18 +++----------- src/_locales/sq/messages.json | 16 ++----------- src/_locales/sr/messages.json | 16 ++----------- src/_locales/sv/messages.json | 16 ++----------- src/_locales/sw/messages.json | 18 +++----------- src/_locales/ta/messages.json | 18 +++----------- src/_locales/te/messages.json | 18 +++----------- src/_locales/th/messages.json | 16 ++----------- src/_locales/tr/messages.json | 16 ++----------- src/_locales/uk/messages.json | 16 ++----------- src/_locales/ur/messages.json | 22 ++++------------- src/_locales/vi/messages.json | 16 ++----------- src/_locales/zh_CN/messages.json | 16 ++----------- src/_locales/zh_TW/messages.json | 16 ++----------- 140 files changed, 480 insertions(+), 1320 deletions(-) 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..11d5f7164a818 100644 --- a/platform/mv3/extension/_locales/bg/messages.json +++ b/platform/mv3/extension/_locales/bg/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/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..4f10bcc2ed9c4 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ñ", diff --git a/platform/mv3/extension/_locales/bs/messages.json b/platform/mv3/extension/_locales/bs/messages.json index 40f6d31faa226..33c9e208630a6 100644 --- a/platform/mv3/extension/_locales/bs/messages.json +++ b/platform/mv3/extension/_locales/bs/messages.json @@ -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 c271d050d41b5..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", diff --git a/platform/mv3/extension/_locales/cs/messages.json b/platform/mv3/extension/_locales/cs/messages.json index 8817de42d1321..90fbbec72ba70 100644 --- a/platform/mv3/extension/_locales/cs/messages.json +++ b/platform/mv3/extension/_locales/cs/messages.json @@ -189,7 +189,7 @@ }, "supportReportSpecificButton": { "message": "Vytvořit nové hlášení", - "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": "Výchozí filtrovací režim", @@ -281,7 +281,7 @@ }, "strictblockTitle": { "message": "Stránka zablokována", - "description": "Webpage title for the strict-blocked page" + "description": "Web page title for the strict-blocked page" }, "strictblockSentence1": { "message": "uBO Lite zabránil načtení následující stránky:", @@ -301,7 +301,7 @@ }, "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", 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 fc803f5aba253..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", diff --git a/platform/mv3/extension/_locales/de/messages.json b/platform/mv3/extension/_locales/de/messages.json index cea10758411e4..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", diff --git a/platform/mv3/extension/_locales/el/messages.json b/platform/mv3/extension/_locales/el/messages.json index 05b045aab3070..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": "Κλείσιμο του παραθύρου", diff --git a/platform/mv3/extension/_locales/en_GB/messages.json b/platform/mv3/extension/_locales/en_GB/messages.json index f8bc50c13a107..4de9441b2b613 100644 --- a/platform/mv3/extension/_locales/en_GB/messages.json +++ b/platform/mv3/extension/_locales/en_GB/messages.json @@ -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 6bd1f1a9dccc1..c2fbd1675dc36 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", diff --git a/platform/mv3/extension/_locales/et/messages.json b/platform/mv3/extension/_locales/et/messages.json index 7e21da9e0e4b1..9d3f76f7aa1ff 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", 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..7db7e9535210c 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", 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 4efde298f8c12..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", diff --git a/platform/mv3/extension/_locales/fy/messages.json b/platform/mv3/extension/_locales/fy/messages.json index 679e0f56f3dcb..8da25a69a6357 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", 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 bc234ddf5801d..a2cd4dc43d2b0 100644 --- a/platform/mv3/extension/_locales/he/messages.json +++ b/platform/mv3/extension/_locales/he/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/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..9475faca04742 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", diff --git a/platform/mv3/extension/_locales/hu/messages.json b/platform/mv3/extension/_locales/hu/messages.json index e787489227f71..9c2b5c41b1d6c 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", 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..581135c43797a 100644 --- a/platform/mv3/extension/_locales/id/messages.json +++ b/platform/mv3/extension/_locales/id/messages.json @@ -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", diff --git a/platform/mv3/extension/_locales/it/messages.json b/platform/mv3/extension/_locales/it/messages.json index a9bfe54120ebc..c5a604c988851 100644 --- a/platform/mv3/extension/_locales/it/messages.json +++ b/platform/mv3/extension/_locales/it/messages.json @@ -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", diff --git a/platform/mv3/extension/_locales/ja/messages.json b/platform/mv3/extension/_locales/ja/messages.json index 7cba2f5ffb8b4..eaf69a9072bf9 100644 --- a/platform/mv3/extension/_locales/ja/messages.json +++ b/platform/mv3/extension/_locales/ja/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/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 988f051fca6d6..a804582f685bc 100644 --- a/platform/mv3/extension/_locales/ko/messages.json +++ b/platform/mv3/extension/_locales/ko/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/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..8e473ecdcdf55 100644 --- a/platform/mv3/extension/_locales/lv/messages.json +++ b/platform/mv3/extension/_locales/lv/messages.json @@ -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", 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..f5e10d4fdc201 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", diff --git a/platform/mv3/extension/_locales/nl/messages.json b/platform/mv3/extension/_locales/nl/messages.json index dcd1b4e5b0f9e..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", 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 af1937ba0a675..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", diff --git a/platform/mv3/extension/_locales/pt_BR/messages.json b/platform/mv3/extension/_locales/pt_BR/messages.json index d645e17e49987..3adab2d36fccc 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", diff --git a/platform/mv3/extension/_locales/pt_PT/messages.json b/platform/mv3/extension/_locales/pt_PT/messages.json index 126edc366f47c..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", diff --git a/platform/mv3/extension/_locales/ro/messages.json b/platform/mv3/extension/_locales/ro/messages.json index a5acae36ee850..c03d9d3e491f7 100644 --- a/platform/mv3/extension/_locales/ro/messages.json +++ b/platform/mv3/extension/_locales/ro/messages.json @@ -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", diff --git a/platform/mv3/extension/_locales/ru/messages.json b/platform/mv3/extension/_locales/ru/messages.json index 387776a858b37..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": "Закрыть это окно", diff --git a/platform/mv3/extension/_locales/si/messages.json b/platform/mv3/extension/_locales/si/messages.json index f73cdc049277c..77237a4624f3d 100644 --- a/platform/mv3/extension/_locales/si/messages.json +++ b/platform/mv3/extension/_locales/si/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": "මෙම කවුළුව වසන්න", @@ -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 b991791e11d60..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", 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..57b360dd9a0ac 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", 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..8dbb4cdfa8546 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", 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..486ab7a1cda95 100644 --- a/platform/mv3/extension/_locales/ta/messages.json +++ b/platform/mv3/extension/_locales/ta/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/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 6344dda696fc7..0c5a55e54811f 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", diff --git a/platform/mv3/extension/_locales/uk/messages.json b/platform/mv3/extension/_locales/uk/messages.json index 42751c051a0a6..096bdebdd9c3c 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": "Закрити це вікно", 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..ee7f8c47a8619 100644 --- a/platform/mv3/extension/_locales/vi/messages.json +++ b/platform/mv3/extension/_locales/vi/messages.json @@ -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 132a097af4c22..fe72b637b20e2 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,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/zh_TW/messages.json b/platform/mv3/extension/_locales/zh_TW/messages.json index 1df8f2af4aa53..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": "關閉此視窗", diff --git a/src/_locales/ar/messages.json b/src/_locales/ar/messages.json index dcbd50fee0ab8..646c758e96fd2 100644 --- a/src/_locales/ar/messages.json +++ b/src/_locales/ar/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "افتح", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "إنشاء تقرير جديد", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "العثور على تقارير مماثلة", @@ -1019,14 +1019,6 @@ "message": "ضع علامة على صفحة الويب بـ ”NSFW“ (”غير آمن للعمل“)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "تنقيح", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "غير منقح", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "سياسة الخصوصية", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "خطأ في الشبكة: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "µBlock : أضف الرابط التالي لقائمة الفلترة الخاصة بك؟\n\nعنوان : \"{{title}}\"\nرابط : {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "اشترك", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/az/messages.json b/src/_locales/az/messages.json index d94ab38a6d46a..5165f9abdb27b 100644 --- a/src/_locales/az/messages.json +++ b/src/_locales/az/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Aç", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Yeni hesabat yaradın", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Oxşar hesabat tap", @@ -1019,14 +1019,6 @@ "message": "Veb-səhifəni uyğun olmayan (“NSFW”) olaraq işarələ (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Məxfilik siyasəti", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Şəbəkə xətası: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Aşağıdakı URL ünvanı fərdi filtr siyahılarınıza əlavə edilsin?\n\nAdı: \"{{title}}\"\nURL ünvanı: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abunə ol", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/be/messages.json b/src/_locales/be/messages.json index b76f0339a3a5d..177d95b0214e8 100644 --- a/src/_locales/be/messages.json +++ b/src/_locales/be/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Адкрыць", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Стварыць новую справаздачу", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Знайсці падобныя справаздачы", @@ -1019,14 +1019,6 @@ "message": "Пазначыць вэб-старонку як “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Палітыка прыватнасці", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Памылка сеткі: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Дадаць наступны URL-адрас да вашага спіса фільтраў?\n\nНазва: \"{{title}}\"\nURL-адрас: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Падпісацца", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/bg/messages.json b/src/_locales/bg/messages.json index b0d4ddaa22744..82c130610a2c9 100644 --- a/src/_locales/bg/messages.json +++ b/src/_locales/bg/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Отваряне", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Нов доклад", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Намиране на подобни доклади", @@ -1019,14 +1019,6 @@ "message": "Маркиране на уеб страницата като “NSFW” (“не е безопасна за работа”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Редактиран вид", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Нередактиран вид", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Политика за поверителност", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Грешка в мрежата: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Добавяне на следния адрес към списъците с потребителски филтри?\n\nИме: \"{{title}}\"\nURL адрес: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Абониране", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/bn/messages.json b/src/_locales/bn/messages.json index ea9b8f66667b4..9a7c391217e31 100644 --- a/src/_locales/bn/messages.json +++ b/src/_locales/bn/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "খুলুন", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "নতুন অভিযোগ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "একই রকম অভিযোগ দেখুন", @@ -1019,14 +1019,6 @@ "message": "ওয়েব পৃষ্ঠাটিকে “NSFW” হিসাবে লেবেল করুন (“কাজের জন্য নিরাপদ নয়”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "গোপনীয়তার নীতি", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "{{url}} -এ সংযোগ করতে অক্ষম", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: আপনার নিজস্ব ফিল্টার তালিকায় নিম্নলিখিত URL যোগ করবেন?\n\nশিরোনাম: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "সদস্যতা নাও", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/br_FR/messages.json b/src/_locales/br_FR/messages.json index 04e3bc91715df..64933bf832ea6 100644 --- a/src/_locales/br_FR/messages.json +++ b/src/_locales/br_FR/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Digeriñ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Sevel ur rentañ-kont nevez", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Klask danevelloù koulz ha homañ", @@ -1019,14 +1019,6 @@ "message": "Merkañ ar bejenn evel \"NSFW\" (“Not Safe For Work”) hag a dalv ez eus danvez noazus pe kizidik enni", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Politikerezh ar vuhez prevez", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Fazi rouedad: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Fellout a ra deoc'h ouzhpennañ an URL-mañ d'ho rolloù siloù?\n\nTitl: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Koumanantiñ", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/bs/messages.json b/src/_locales/bs/messages.json index 6f117a238c90e..9e2de71effe14 100644 --- a/src/_locales/bs/messages.json +++ b/src/_locales/bs/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Otvori", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Napravite novu prijavu", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Pronađite slične prijave", @@ -1019,14 +1019,6 @@ "message": "Označite web stranicu kao “NSZP” (“Ne-Sigurna-Za-Posao”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Zakloni", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Odzakloni", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Pravila privatnosti", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Greška sa mrežom: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Dodajte slijedeću URL adresu u vašu listu prilagođenih filtera?\n\nNaziv: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Pretplatite se", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ca/messages.json b/src/_locales/ca/messages.json index 4265a155da9b7..b96cd61599788 100644 --- a/src/_locales/ca/messages.json +++ b/src/_locales/ca/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Obre", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Crea un informe nou al GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Cerca informes similars al GitHub", @@ -1019,14 +1019,6 @@ "message": "Marca aquesta pàgina com a “NSFW” (“No segur per al treball”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redacta", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "No redactis", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Política de privadesa", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Error de xarxa: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Voleu afegir aquest URL a la llista de filtres personalitzats?\n\nTítol: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscriu-me", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/cs/messages.json b/src/_locales/cs/messages.json index 2a895a3bfb813..e3287f4f17a69 100644 --- a/src/_locales/cs/messages.json +++ b/src/_locales/cs/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Otevřít", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Vytvořit nové hlášení", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Vyhledat podobná hlášení", @@ -1019,14 +1019,6 @@ "message": "Označit webovou stránku jako “NSFW” (“Není bezpečné pro práci”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Upravit", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Odstranit", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Ochrana soukromí", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Chyba sítě: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Přidat následující URL adresu do seznamů vlastních filtrů?\n\nNázev: „{{title}}“\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Odebírat", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/cv/messages.json b/src/_locales/cv/messages.json index c5b11cea5f9c0..ab60e1e50ac2f 100644 --- a/src/_locales/cv/messages.json +++ b/src/_locales/cv/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Network error: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribe", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/cy/messages.json b/src/_locales/cy/messages.json index 3e3b778437bea..dbffeac0fcbec 100644 --- a/src/_locales/cy/messages.json +++ b/src/_locales/cy/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Agor", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Creu adroddiad newydd", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Canfod adroddiadau tebyg", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Rhoi label “NSFW” (“Not Safe For Work”) ar y dudalen we", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Polisi preifatrwydd", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Gwall rhwydwaith: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Tanysgrifio", "description": "For the button used to subscribe to a filter list" @@ -1152,7 +1140,7 @@ "description": "Used in the strict-blocking page" }, "docblockedPrompt2": { - "message": "Because of the following filter:", + "message": "This happened because of the following filter:", "description": "Used in the strict-blocking page" }, "docblockedNoParamsPrompt": { @@ -1160,7 +1148,7 @@ "description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png" }, "docblockedFoundIn": { - "message": "Found in:", + "message": "The filter has been found in:", "description": "English: List of filter list names follows" }, "docblockedBack": { diff --git a/src/_locales/da/messages.json b/src/_locales/da/messages.json index b21025b52078a..8b9340f72b641 100644 --- a/src/_locales/da/messages.json +++ b/src/_locales/da/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Åbn", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Opret ny anmeldelse på GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find lign. anmeldelser på GitHub", @@ -1019,14 +1019,6 @@ "message": "Markér websiden som “NSFW” (“Ikke sikker til arbejdsbrug”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Bortredigér", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Bortredigér ikke", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Fortrolighedspolitik", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Netværksfejl: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Føj følgende URL til dine tilpassede filterlister?\n\nTitel: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonnér", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/de/messages.json b/src/_locales/de/messages.json index 97c851687575c..a4c8774f549dd 100644 --- a/src/_locales/de/messages.json +++ b/src/_locales/de/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Öffnen", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Neue Meldung auf GitHub erstellen", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Ähnliche Meldungen auf GitHub finden", @@ -1019,14 +1019,6 @@ "message": "Webseite als »NSFW« kennzeichnen (»Unpassend für den Arbeitsplatz«)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Unkenntlich machen", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Kenntlich machen", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Datenschutzhinweise", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Netzwerkfehler: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Folgende URL zu den eigenen Filterlisten hinzufügen?\n\nTitel: »{{title}}«\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonnieren", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/el/messages.json b/src/_locales/el/messages.json index 48bb567f0fb60..670c0e171afa6 100644 --- a/src/_locales/el/messages.json +++ b/src/_locales/el/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Άνοιγμα", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Δημιουργία νέας αναφοράς στο Github", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Εύρεση παρόμοιων αναφορών στο GitHub", @@ -1019,14 +1019,6 @@ "message": "Επισημάνετε την ιστοσελίδα ως “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Πολιτική απορρήτου", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Σφάλμα δικτύου: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Προσθήκη της ακόλουθης διεύθυνσης URL στις λίστες προσαρμοσμένων φίλτρων σας;\n\nΤίτλος: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Εγγραφή", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/en_GB/messages.json b/src/_locales/en_GB/messages.json index 69968e16765fb..7aa36b1bce046 100644 --- a/src/_locales/en_GB/messages.json +++ b/src/_locales/en_GB/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports", @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Network error: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribe", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/eo/messages.json b/src/_locales/eo/messages.json index 8bc3bc7d825f2..9b2e45c2e817f 100644 --- a/src/_locales/eo/messages.json +++ b/src/_locales/eo/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Malfermi", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Krei novan raporton", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Serĉi similajn raportojn", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Marki la paĝon kiel «nelabortaŭgan»", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Reguloj pri privateco", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "{{url}} ne konekteblas", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Ĉu vi volas aldoni la sekvan ligilon al viaj tajloritaj listoj de filtriloj?\n\nTitolo: \"{{title}}\"\nLigilo: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Sekvi", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/es/messages.json b/src/_locales/es/messages.json index 206a0fd22222a..0d87fb79c0344 100644 --- a/src/_locales/es/messages.json +++ b/src/_locales/es/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Abrir", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Crear nuevo reporte en GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Encontrar reportes similares en GitHub", @@ -1019,14 +1019,6 @@ "message": "Etiquetar la página web como “NSFW” (“no es seguro/apropiado para el trabajo”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redactar", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Sin redactar", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Política de privacidad", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Error de red: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "¿Deseas añadir la siguiente URL a tus listas de filtros personalizados?\n\nTítulo: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Suscribirse", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/et/messages.json b/src/_locales/et/messages.json index 2186026cfbc55..8dde2c8907a30 100644 --- a/src/_locales/et/messages.json +++ b/src/_locales/et/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Ava", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Loo GitHubis uus aruanne", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Leia GitHubist sarnaseid aruandeid", @@ -1019,14 +1019,6 @@ "message": "Sildista veebileht kui „NSFW“ (“tööks sobimatu”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Kata info", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Ära kata infot", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privaatsusteatis", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Võrgu viga: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Kas lisada järgnev URL sinu kohandatud filtrite nimekirja?\n\nPealkiri: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Telli", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/eu/messages.json b/src/_locales/eu/messages.json index f016d13ed9c07..d3f19476d99e3 100644 --- a/src/_locales/eu/messages.json +++ b/src/_locales/eu/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Ireki", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Txosten berri bat sortu", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Antzeko txostenak aurkitu", @@ -1019,14 +1019,6 @@ "message": "Web orria «NSFW» moduan jarri (“Not Safe For Work” )", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Erredaktatu", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Desegin erredakzioa", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Pribatutasun politika", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Sare-errorea: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Gehitu honako URL hauek zure iragazki pertsonalizatuen zerrendara?\n\nIzenburua: \"{{title}}\"\nURLa: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Harpidetu", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/fa/messages.json b/src/_locales/fa/messages.json index c462afe308a07..1ab6969c62b94 100644 --- a/src/_locales/fa/messages.json +++ b/src/_locales/fa/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "باز کردن", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "ایجاد گزارش جدید", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "یافتن گزارش‌های مشابه", @@ -1019,14 +1019,6 @@ "message": "علامت زدن صفحه به عنوان \"NSFW\" (\"نامناسب برای کار\")", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "قوانین حریم خصوصی", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "خطای شبکه: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: آدرس اینترنتی زیر به فهرست فیلتر های سفارشی شما اضافه شود؟\n\nعنوان: \"{{title}}\"\nآدرس: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "آبونه شدن", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/fi/messages.json b/src/_locales/fi/messages.json index fd6f6b5cd5fc3..4ea1c83a1e4d2 100644 --- a/src/_locales/fi/messages.json +++ b/src/_locales/fi/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Avaa", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Luo GitHubiin uusi ilmoitus", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Etsi GitHubista vastaavia ilmoituksia", @@ -1019,14 +1019,6 @@ "message": "Luokittele verkkosivu ns. työpaikalle sopimattomaksi, \"NSFW\" (\"Not Safe For Work\")", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Älä sisällytä", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Sisällytä", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Tietosuojakäytäntö", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Verkkovirhe: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Lisätäänkö seuraava URL-osoite omiin suodatinlistoihisi?\n\nOtsikko: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Tilaa", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/fil/messages.json b/src/_locales/fil/messages.json index 6619ba7587160..bfb7828b5df3a 100644 --- a/src/_locales/fil/messages.json +++ b/src/_locales/fil/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Buksan", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Gumawa ng bagong ulat", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Maghanap ng mga magkahawig na ulat", @@ -1019,14 +1019,6 @@ "message": "Markahan bilang hindi dapat tinitignan sa pook-trabahuan (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Itago", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Huwag itago", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Patakaran sa pagkapribado", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Error sa network: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Idagdag ang sumusunod na mga URL sa iyong listahan ng mga pinasadyang filter?\n\nPangalan: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subaybayan", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/fr/messages.json b/src/_locales/fr/messages.json index a67c9f2e4fd38..385bd8e3e64a2 100644 --- a/src/_locales/fr/messages.json +++ b/src/_locales/fr/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Ouvrir", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "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 open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Trouver des rapports similaires sur GitHub", @@ -1019,14 +1019,6 @@ "message": "Marquer le site Web en tant que \"NSFW\" (\"Not Safe For Work\", c'est-à-dire pour public averti/inapproprié au travail)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Retirer les informations potentiellement privées ou sensibles", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Restaurer les informations potentiellement privées ou sensibles", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Politique de confidentialité", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Erreur réseau : {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Ajouter le lien suivant à votre sélection de listes de filtrage ?\n\nTitre : \"{{title}}\"\nLien : {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Souscrire", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/fy/messages.json b/src/_locales/fy/messages.json index 61e5bfdae13df..41831f54f4596 100644 --- a/src/_locales/fy/messages.json +++ b/src/_locales/fy/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Iepenje", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Nije melding meitsje", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Soartgelikense meldingen sykje", @@ -1019,14 +1019,6 @@ "message": "De webside labelje as ‘NSFW’ (‘Not Safe For Work’)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redigearje", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Redigearje ûngedien meitsje", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacybelied", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Netwurkflater: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: De folgjende URL oan jo oanpaste filterlisten tafoegje?\n\nTitel: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonnearje", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/gl/messages.json b/src/_locales/gl/messages.json index 314aba10856b3..d9c6c6e179db9 100644 --- a/src/_locales/gl/messages.json +++ b/src/_locales/gl/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Abrir", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Crear nova denuncia", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Atopar denuncias parecidas", @@ -1019,14 +1019,6 @@ "message": "Etiqueta a páxina como \"NSFW\" (\"Non é Segura No Traballo\")", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Política de privacidade", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Erro da rede: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Engadir o seguinte enderezo á túa lista de filtros personalizados?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribir", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/gu/messages.json b/src/_locales/gu/messages.json index 1f109b80476de..79524fae6d0dd 100644 --- a/src/_locales/gu/messages.json +++ b/src/_locales/gu/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Network error: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribe", "description": "For the button used to subscribe to a filter list" @@ -1152,7 +1140,7 @@ "description": "Used in the strict-blocking page" }, "docblockedPrompt2": { - "message": "Because of the following filter:", + "message": "This happened because of the following filter:", "description": "Used in the strict-blocking page" }, "docblockedNoParamsPrompt": { @@ -1160,7 +1148,7 @@ "description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png" }, "docblockedFoundIn": { - "message": "Found in:", + "message": "The filter has been found in:", "description": "English: List of filter list names follows" }, "docblockedBack": { diff --git a/src/_locales/he/messages.json b/src/_locales/he/messages.json index 274d15c83be2c..3bcf0fdffb7b8 100644 --- a/src/_locales/he/messages.json +++ b/src/_locales/he/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "לפתוח", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "צור דוח חדש", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "חיפוש דוחות דומים", @@ -1019,14 +1019,6 @@ "message": "תיוג דף האינטרנט כ- לב\"ל ('לא בטוח לעבודה')", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "הסר מידע פרטי או רגיש", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "שחזר מידע פרטי או רגיש", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "מדיניות פרטיות", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "בעיית רשת: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "הוסף את הכתובת הבאה לרשימת הפילטרים המותאמים אישית שלך?\n\nכותרת: \"{{title}}\"\nכתובת URL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "הירשם כמנוי", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/hi/messages.json b/src/_locales/hi/messages.json index 3b064814f7585..9011dd92b5628 100644 --- a/src/_locales/hi/messages.json +++ b/src/_locales/hi/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "खोलें", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "नई रिपोर्ट बनाएं", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "ऐसी ही रिपोर्ट खोजें", @@ -1019,14 +1019,6 @@ "message": "वेब पेज को इस रूप में लेबल करें “NSFW” (“काम करने के लिए सुरक्षित नहीं”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "संपादन", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "असंशोधित", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "गोपनीयता नीति", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "नेटवर्क त्रुटि: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: इस यूआरएल को अपने कस्टम लिस्ट में डालें?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "फ़िल्टर सूची का उपयोग करें", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/hr/messages.json b/src/_locales/hr/messages.json index 4af22495b574b..4d597d436a8da 100644 --- a/src/_locales/hr/messages.json +++ b/src/_locales/hr/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Otvori", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "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 open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Nađi slične prijave na GitHub-u", @@ -1019,14 +1019,6 @@ "message": "Označite web stranicu kao “NSFW” (“nije sigurno za pregledavanje na poslu“)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redigiraj", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Vratiti na prijašnje", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Pravila privatnosti", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Mrežna greška {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Dodajte slijedeći izvor u vaš izbor filter lista?\n\nNaslov: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Prijava", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/hu/messages.json b/src/_locales/hu/messages.json index c464637dc0f8c..8ace4e19bb1ab 100644 --- a/src/_locales/hu/messages.json +++ b/src/_locales/hu/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Megnyitás", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Hiba bejelentése", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Hasonló hibák keresése", @@ -1019,14 +1019,6 @@ "message": "A weboldal megjelölése felnőtt tartalomként", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Elrejtés", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Megjelenítés", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Adatvédelmi irányelvek", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Hálózati hiba: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Hozzáadja a következő webcímet a saját szűrőlistáihoz?\n\nNév: „{{title}}”\nWebcím: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Feliratkozás", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/hy/messages.json b/src/_locales/hy/messages.json index 8fb8c53306bae..3456767a38cee 100644 --- a/src/_locales/hy/messages.json +++ b/src/_locales/hy/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Բացել", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Նոր զեկույց ստեղծել", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Գտնել նման զեկույցներ", @@ -1019,14 +1019,6 @@ "message": "Նշել վեբ էջը որպես «NSFW» («Աշխատանքի համար անվտանգ չէ»)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Խմբագրել", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Չեղարկել խմբագրումը", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Գաղտնիության քաղաքականություն", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Ցանցի սխալ՝ {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Ավելացնե՞լ հետևյալ հասցեն զտիչների օգտվողային ցանկին։\n\nՎերնագիր՝ «{{title}}»\nURL՝ {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Բաժանորդագրվել", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/id/messages.json b/src/_locales/id/messages.json index 0268d73230abd..a0f403a6060fb 100644 --- a/src/_locales/id/messages.json +++ b/src/_locales/id/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Buka", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Buat laporan baru di Github", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Temukan laporan serupa di Github", @@ -1019,14 +1019,6 @@ "message": "Beri label halaman web sebagai “TAUSB” (“Tidak Aman Untuk Saat Bekerja”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Sensor", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Batal sensor", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Kebijakan privasi", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Galat jaringan: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Tambah URL berikut ke ke daftar filter khusus Anda?\n\nJudul: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Berlangganan", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/it/messages.json b/src/_locales/it/messages.json index 6cce7a94ffc6c..0eddd481ce6c4 100644 --- a/src/_locales/it/messages.json +++ b/src/_locales/it/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Apri", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Crea una nuova segnalazione", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Trova segnalazioni simili", @@ -1019,14 +1019,6 @@ "message": "Etichetta la pagina web come “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Oscura", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Non oscurare", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Informativa sulla privacy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Errore di rete: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Aggiungere il seguente URL alla tua lista dei filtri personalizzata?\n\nTitolo: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Sottoscrivi", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ja/messages.json b/src/_locales/ja/messages.json index 3aa8efe3c32d2..eff16ce7072db 100644 --- a/src/_locales/ja/messages.json +++ b/src/_locales/ja/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "開く", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "新しい報告を作成", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "似た報告を探す", @@ -1019,14 +1019,6 @@ "message": "ウェブページに“NSFW” (閲覧注意、“Not Safe For Work”) とラベルをつける", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "編集済にする", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "無編集にする", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "プライバシーポリシー", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "ネットワークエラー: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "以下の URL をカスタムフィルターリストに追加しますか?\n\nフィルター名: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "購読", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ka/messages.json b/src/_locales/ka/messages.json index 10c0c72200055..8d24487a2fd54 100644 --- a/src/_locales/ka/messages.json +++ b/src/_locales/ka/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "გახსნა", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "შექმენით ახალი მოსხენება", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "იპოვეთ მსგავსი მოხსენებები", @@ -1019,14 +1019,6 @@ "message": "გვერდი მოინიშნოს, როგორც „NSFW“ („შეუსაბამო“)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "შეკვეცილი", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "შეუკვეცელი", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "პირადულობის დებულება", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "ქსელის შეცდომა: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: გსურთ შემდეგი URL ბმულის საკუთარ ფილტრის წესებში ჩამატება?\n\nდასახელება: „{{title}}“\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "გამოწერა", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/kk/messages.json b/src/_locales/kk/messages.json index 3205a862c7c33..b776f2626c6d3 100644 --- a/src/_locales/kk/messages.json +++ b/src/_locales/kk/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Желілік қате: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Келесі URL-ді өзіңіздің теңшелетін сүзгілер тізіміне қосыңыз?\n\nТақырып: «{{title}}»\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Жазылу", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/kn/messages.json b/src/_locales/kn/messages.json index 22279279ee7b4..0ca4f062a8b33 100644 --- a/src/_locales/kn/messages.json +++ b/src/_locales/kn/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "ತೆರೆ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "ಗೌಪ್ಯತಾ ನೀತಿ\n", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Network error: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "ಫಿಲ್ಟರ್ ಪಟ್ಟಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", "description": "For the button used to subscribe to a filter list" @@ -1152,7 +1140,7 @@ "description": "Used in the strict-blocking page" }, "docblockedPrompt2": { - "message": "Because of the following filter:", + "message": "This happened because of the following filter:", "description": "Used in the strict-blocking page" }, "docblockedNoParamsPrompt": { @@ -1160,7 +1148,7 @@ "description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png" }, "docblockedFoundIn": { - "message": "Found in:", + "message": "The filter has been found in:", "description": "English: List of filter list names follows" }, "docblockedBack": { diff --git a/src/_locales/ko/messages.json b/src/_locales/ko/messages.json index f3163acde798f..fa2b3490384ee 100644 --- a/src/_locales/ko/messages.json +++ b/src/_locales/ko/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "열기", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "새 신고 생성", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "유사한 신고 탐색", @@ -1019,14 +1019,6 @@ "message": "웹페이지를 \"NSFW\" (“Not Safe For Work”)로 분류", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "지우기", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "지우지 않기", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "개인정보취급방침", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "네트워크 오류: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: 선택한 URL을 사용자 지정 필터 목록에 추가하시겠습니까?\n\n제목: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "구독", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/lt/messages.json b/src/_locales/lt/messages.json index 4a8e8d9dc8ddb..fe30e86171262 100644 --- a/src/_locales/lt/messages.json +++ b/src/_locales/lt/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Atidaryti", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Sukurti naują ataskaitą", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Rasti panašias ataskaitas", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privatumo politika", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Tinklo klaida: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Pridėti šį URL į jūsų adaptuotų filtrų sąrašą?\n\nPavadinimas: „{{title}}“\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Prenumeruoti", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/lv/messages.json b/src/_locales/lv/messages.json index 2a1aad790a584..7b9446d6edffd 100644 --- a/src/_locales/lv/messages.json +++ b/src/_locales/lv/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Atvērt", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Izveidot jaunu ziņojumu", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Meklēt līdzīgus ziņojumus", @@ -1019,14 +1019,6 @@ "message": "Iezīmēt tīmekļa lapu kā \"NSFW\" (\"Not Safe for Work (nav droša darbam))", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Izņemt", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Atdarīt izņemšanu", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privātuma nosacījumi", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Tīkla kļūda: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Pievienot sekojošo URL Jūsu lietotāja filtru sarakstiem?\n\nNosaukums: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonēt", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/mk/messages.json b/src/_locales/mk/messages.json index f350101f6a485..b6abbb12ae3db 100644 --- a/src/_locales/mk/messages.json +++ b/src/_locales/mk/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Отвори", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Создај нова пријава", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Најди слични пријави", @@ -1019,14 +1019,6 @@ "message": "Означи ја веб-страницата како “NSFW” (“Не е безбедно за работа”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Политика на приватност", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Мрежна грешка: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Дали да ја додадете следната URL адреса на вашите прилагодени листи со филтри?\n\nНаслов: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Пријави се", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ml/messages.json b/src/_locales/ml/messages.json index 9d6b0cb6dab1f..4f2681b3b07aa 100644 --- a/src/_locales/ml/messages.json +++ b/src/_locales/ml/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "തുറക്കുക", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "പുതിയ റിപ്പോർട്ട് നിർമ്മിക്കുക", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "സമാനമായ റിപോർട്ടുകൾ കാണുക", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "സ്വകാര്യതാ നയം", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "{{url}} എന്നതിലേക്ക് കണക്റ്റ് ചെയ്യാനാകുന്നില്ല", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "യുബ്ലോക്ക്ഒ: താഴെ പറയുന്ന യുആര്‍എല്‍ താങ്കളുടെ കസ്റ്റം ഫില്‍റ്ററില്‍ ചേര്‍ക്കട്ടേയോ?\n\nടൈറ്റില്‍: \"{{title}}\"\nയുആര്‍എല്‍: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "സബ്‌സ്‌ക്രൈബുചെയ്യുക", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/mr/messages.json b/src/_locales/mr/messages.json index b0f355ade34de..ff81179b518a5 100644 --- a/src/_locales/mr/messages.json +++ b/src/_locales/mr/messages.json @@ -12,7 +12,7 @@ "description": "English: uBlock₀ — Dashboard" }, "dashboardUnsavedWarning": { - "message": "Warning! You have unsaved changes", + "message": "Warning: you have unsaved changes!", "description": "A warning in the dashboard when navigating away from unsaved changes" }, "dashboardUnsavedWarningStay": { @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "{{url}} ला कनेक्ट करण्यात अक्षम", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribe", "description": "For the button used to subscribe to a filter list" @@ -1152,7 +1140,7 @@ "description": "Used in the strict-blocking page" }, "docblockedPrompt2": { - "message": "Because of the following filter:", + "message": "This happened because of the following filter:", "description": "Used in the strict-blocking page" }, "docblockedNoParamsPrompt": { @@ -1160,7 +1148,7 @@ "description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png" }, "docblockedFoundIn": { - "message": "Found in:", + "message": "The filter has been found in:", "description": "English: List of filter list names follows" }, "docblockedBack": { diff --git a/src/_locales/ms/messages.json b/src/_locales/ms/messages.json index 1dfa943d00d9e..bb7819f778269 100644 --- a/src/_locales/ms/messages.json +++ b/src/_locales/ms/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Buka", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Cipta laporan baru", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Cari laporan yang serupa", @@ -1019,14 +1019,6 @@ "message": "Labelkan laman web itu sebagai \"NSFW\" (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Hitamkan", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Nyahhitamkan", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Dasar privasi", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Ralat rangkaian: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Tambahkan URL berikut ke senarai penapis tersuai anda?\n\nTajuk: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Langgan", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/nb/messages.json b/src/_locales/nb/messages.json index d16ba40b17134..7130bfc91c1c5 100644 --- a/src/_locales/nb/messages.json +++ b/src/_locales/nb/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Åpne", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Opprett ny rapport på GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Finn lignende rapporter på GitHub", @@ -1019,14 +1019,6 @@ "message": "Merk nettsiden som “NSFW” (“Not Safe For Work”) (advarsel mot sider med upassende innhold)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Rediger", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Ikke rediger", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Personvernpraksis", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Nettverksfeil: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Legge til følgende nettadresse i din egendefinerte filterliste?\n\nTittel: \"{{title}}\"\nNettadresse: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonner", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/nl/messages.json b/src/_locales/nl/messages.json index 72caabbdea683..8e93f7ecae643 100644 --- a/src/_locales/nl/messages.json +++ b/src/_locales/nl/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Openen", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Nieuwe melding op GitHub maken", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Soortgelijke meldingen op GitHub zoeken", @@ -1019,14 +1019,6 @@ "message": "De webpagina labelen als ‘NSFW’ (‘Not Safe For Work’)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redigeren", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Redigeren ongedaan maken", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacybeleid", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Netwerkfout: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "De volgende URL aan uw lijsten met aangepaste filters toevoegen?\n\nTitel: ‘{{title}}’\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonneren", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/oc/messages.json b/src/_locales/oc/messages.json index 483ecfeda771d..80a9d724a5b90 100644 --- a/src/_locales/oc/messages.json +++ b/src/_locales/oc/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Dobrir", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Politica de confidencialitat", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Network error: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "S'abonar", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/pa/messages.json b/src/_locales/pa/messages.json index 5caa7221cfd3b..179311e549c32 100644 --- a/src/_locales/pa/messages.json +++ b/src/_locales/pa/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "ਖੋਲ੍ਹੋ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "ਨਵੀਂ ਰਿਪੋਰਟ ਬਣਾਓ", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "ਰਲਦੀਆਂ ਰਿਪੋਰਟਾਂ ਲੱਭੋ", @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "ਪਰਦੇਦਾਰੀ ਨੀਤੀ", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "ਨੈੱਟਵਰਕ ਗਲਤੀ: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "ਕੀ ਅੱਗੇ ਦਿੱਤੇ URL ਨੂੰ ਤੁਹਾਡੀਆਂ ਕਸਟਮ ਫਿਲਟਰ ਸੂਚੀਆਂ ਵਿੱਚ ਜੋੜਨਾ ਹੈ?\n\nਨਾਂ: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "ਮੈਂਬਰ ਬਣੋ", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/pl/messages.json b/src/_locales/pl/messages.json index 430ff3ee45d58..b96caa22f3f1a 100644 --- a/src/_locales/pl/messages.json +++ b/src/_locales/pl/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Otwórz", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Utwórz nowy raport", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Znajdź podobne raporty", @@ -1019,14 +1019,6 @@ "message": "Oznacz stronę internetową jako „NSFW” („Not Safe For Work (nieodpowiednią w pracy)”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Ocenzuruj", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Nie cenzuruj", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Polityka prywatności", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Błąd sieci: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Dodać następujący URL do twoich list filtrów?\n\nTytuł: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subskrybuj", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/pt_BR/messages.json b/src/_locales/pt_BR/messages.json index 59a7772f2d6cc..03db7a3ed92fd 100644 --- a/src/_locales/pt_BR/messages.json +++ b/src/_locales/pt_BR/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Abrir", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "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 open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Achar relatórios similares no GitHub", @@ -1019,14 +1019,6 @@ "message": "Rotular a página da web como \"NSFW\" (\"Não é Seguro no Trabalho\")", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redigir", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Não redigir", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Política de privacidade", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Erro da rede: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Adicionar a seguinte URL a sua lista de filtros personalizados?\n\nTítulo: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscrever", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/pt_PT/messages.json b/src/_locales/pt_PT/messages.json index 0c3028d70918f..2addb6bb8f8f6 100644 --- a/src/_locales/pt_PT/messages.json +++ b/src/_locales/pt_PT/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Abrir", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "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 open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Encontrar relatórios semelhantes no GitHub", @@ -1019,14 +1019,6 @@ "message": "Rotular a página web como “NSFW” (“Não seguro para o trabalho”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redigir", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Não redigir", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Política de privacidade", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Erro de rede: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Adicionar o seguinte URL à sua lista de filtros personalizados?\n\nTítulo: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscrever", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ro/messages.json b/src/_locales/ro/messages.json index 16c05adfd5eb2..401253ae18fce 100644 --- a/src/_locales/ro/messages.json +++ b/src/_locales/ro/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Deschide", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Crează o nouă sesizare", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Găsește sesizări similare", @@ -1019,14 +1019,6 @@ "message": "Etichetează pagina ca fiind „NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redactează", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Anulează redactarea", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Politică de confidențialitate", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Eroare de rețea: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock: Adaugă următorul URL în lista ta de filtre personalizate?\n\nTitlu: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonează-te", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ru/messages.json b/src/_locales/ru/messages.json index 16561e3393a46..7a27029a6509b 100644 --- a/src/_locales/ru/messages.json +++ b/src/_locales/ru/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Открыть", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Создать новый отчёт в GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Найти похожие отчёты в GitHub", @@ -1019,14 +1019,6 @@ "message": "Пометить веб-страницу как “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Редактировать", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Отменить редактирование", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Политика конфиденциальности", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Ошибка сети: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Добавить следующий адрес к пользовательским спискам фильтров?\n\nЗаголовок: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Подписаться", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/si/messages.json b/src/_locales/si/messages.json index 0b9219d1da867..2f07eeb4b70fe 100644 --- a/src/_locales/si/messages.json +++ b/src/_locales/si/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "අරින්න", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "නව වාර්තාවක් සාදන්න", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "සමාන වාර්තා සොයන්න", @@ -1019,14 +1019,6 @@ "message": "වෙබ් පිටුව “NSFW” ලෙස ලේබල් කරන්න (“වැඩ සඳහා ආරක්ෂිත නොවේ”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "රහස්‍යතා ප්‍රතිපත්තිය", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "ජාලයේ දෝෂය: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "ඔබගේ අභිරුචි පෙරහන් ලැයිස්තුවලට පහත URL එක එක් කරන්නද?\n\nමාතෘකාව: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "දායක වන්න", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/sk/messages.json b/src/_locales/sk/messages.json index 997b1c7bec35e..18cacf2c810d7 100644 --- a/src/_locales/sk/messages.json +++ b/src/_locales/sk/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Otvoriť", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Vytvoriť nové hlásenie", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Vyhľadať podobné hlásenia", @@ -1019,14 +1019,6 @@ "message": "Označiť webstránku ako “NSFW” (Nie je bezpečné pre prácu”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Upraviť", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Neupravovať", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Zásady ochrany osobných údajov", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Chyba siete: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Pridať nasledujúcu URL do zoznamu vlastných filtrov?\n\nNázov: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Pridať", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/sl/messages.json b/src/_locales/sl/messages.json index f804810067d4f..116e000c3af06 100644 --- a/src/_locales/sl/messages.json +++ b/src/_locales/sl/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Odpri", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Ustvari novo poročilo", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Najdi podobna poročila", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Pravilnik o zasebnosti", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Ne morem se povezati do {{url}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Dodam sledeči URL na listo lastnih filtrov?\n\nNaslov: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Naročite se", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/so/messages.json b/src/_locales/so/messages.json index 86636dd3e9f03..44c81013d99c0 100644 --- a/src/_locales/so/messages.json +++ b/src/_locales/so/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "{{Input}} Waqtiga", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Ka warbixi arrimaha shaandhaynta shabakadaha gaarka ah uBlockOrigin/uAssets soo saara raadraacayaasha. Wuxuu u baahan yahay akoon GitHub", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Muhiim: Iska ilaali isticmaalka xannibaadaha kale ee la midka ah oo ay la socdaan uBlock Origin, sababtoo ah tani waxay sababi kartaa arrimo shaandhaynta shabakadaha gaarka ah.", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Talooyin: Hubi in liisaska shaandhayntaadu ay cusub yihiin. Logger waa aaladda koowaad ee lagu baadho arrimaha shaandhada la xiriira.", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "CDN si aan kala sooc lahayn loo soo doortay ayaa la isticmaalaa marka liiska shaandhada loo baahan yahay in la cusboonaysiiyo", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Ku soo celi faylka", - "description": "No longer used" - }, "subscribeButton": { "message": "my-ublock-backup_{{datetime}}.txt", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/sq/messages.json b/src/_locales/sq/messages.json index bb5441314eabd..039f156b812f9 100644 --- a/src/_locales/sq/messages.json +++ b/src/_locales/sq/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Hap", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "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 open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Gjej raporte të ngjashme në GitHub", @@ -1019,14 +1019,6 @@ "message": "Etiketoj faqen si “NSFW” (“E papërshtatshme për punë”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Censuroj", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Nuk censuroj", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Politika e privatësisë", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Problem me rrjetin kompjuterik: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Do e shtoni adresën në listën e personalizuar të filtrave?\n\nTitulli: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abonohem", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/sr/messages.json b/src/_locales/sr/messages.json index b1fd74e38ef50..ac1ffe8882e86 100644 --- a/src/_locales/sr/messages.json +++ b/src/_locales/sr/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Отвори", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Креирај нови извештај на ГитХабу", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Пронађи сличне извештаје на ГитХабу", @@ -1019,14 +1019,6 @@ "message": "Изначите веб страницу као „NSFW“ (“Није безбедна за рад”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Редигуј", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Поништи редиговање", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Политика приватности", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Грешка на мрежи: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Додати следећу URL адресу у вашу прилагођену листу филтера?\n\nНазив: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Претплати се", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/sv/messages.json b/src/_locales/sv/messages.json index 18242867a9372..ddb4a2f54e358 100644 --- a/src/_locales/sv/messages.json +++ b/src/_locales/sv/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Öppna", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Skapa ny rapport på GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Hitta liknande rapporter på GitHub", @@ -1019,14 +1019,6 @@ "message": "Märk webbsidan som \"NSFW\" (“Inte lämplig på jobbet”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Bortredigerad", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Oredigerad", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Integritetspolicy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Nätverksfel: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Lägg till följande webbadress till dina anpassade filterlistor?\n\nTitel: \"{{title}}\"\nWebbadress: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Prenumerera", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/sw/messages.json b/src/_locales/sw/messages.json index 29c1508598031..7152fd350b984 100644 --- a/src/_locales/sw/messages.json +++ b/src/_locales/sw/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Fungua", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Unda ripoti mpya", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Pata ripoti sawia", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Ipe tovuti lebo ya \"NSFW\" (\"Haifai Kazini\")", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Sera ya faragha", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Tatizo la mtandao: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: Ongeza URL ifuatayo kwenye orodha za uchujaji zinazokufaa?\n\nKicha: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Jisajili", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ta/messages.json b/src/_locales/ta/messages.json index 4efbf7c209204..b0ccb2dc446ef 100644 --- a/src/_locales/ta/messages.json +++ b/src/_locales/ta/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "திற", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "புதிய புகாரை உருவாக்கு", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "ஒரேமாதிரியான புகார்களைக் கண்டறி", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "தனியுரிமை கொள்கை", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "பிணையத்தில் பிழை: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: பின்வரும் உரலியை உங்களுடைய தனிபயன் வடிகட்டியில் சேர்க்கலாமா?\n\nதலைப்பு: \"{{title}}\"\nஉரலி: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "சந்தாதராகு", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/te/messages.json b/src/_locales/te/messages.json index 68c48afe08438..db3798cf15237 100644 --- a/src/_locales/te/messages.json +++ b/src/_locales/te/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "తెరవండి", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "కొత్త నివేదికను సృష్టించండి", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "సారూప్య నివేదికలను కనుగొనండి", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "వెబ్ పేజీని “NSFW”గా లేబుల్ చేయండి (“పని కోసం సురక్షితం కాదు”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "గోప్యతా విధానం", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "అనుసంధాన వైఫల్యం: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: ఈ URLని మీ నిర్దేశిత ఫిల్టర్ పట్టికకు జతపరచాలా?\n\nశీర్షిక: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "సభ్యత్వాన్ని పొందండి", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/th/messages.json b/src/_locales/th/messages.json index 2fdbb4c469d3e..ec7cd3e7d1a28 100644 --- a/src/_locales/th/messages.json +++ b/src/_locales/th/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "เปิด", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "สร้างรายงานใหม่", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "ค้นหารายงานคล้ายกันบน GitHub", @@ -1019,14 +1019,6 @@ "message": "ติดป้ายเว็บเพจว่าเป็น “NSFW” (“ไม่ปลอดภัยกับงาน (Not Safe For Work)”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "นโยบายความเป็นส่วนตัว", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "เครือข่ายผิดพลาด: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "uBlock₀: เพิ่ม URL ต่อไปนี้ในรายการตัวกรองแบบกำหนดเองของคุณหรือไม่ ?\n\nชื่อ: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "สมัครสมาชิก", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/tr/messages.json b/src/_locales/tr/messages.json index 17d2a5ba27153..3a70863fa412b 100644 --- a/src/_locales/tr/messages.json +++ b/src/_locales/tr/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Aç", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "GitHub üzerinde yeni rapor oluştur", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "GitHub'da benzer raporları bul", @@ -1019,14 +1019,6 @@ "message": "Web sayfasını uygunsuz (“NSFW”) olarak etiketle (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Kısalt", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Kısaltma", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Gizlilik ilkesi", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Ağ hatası: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Bu URL, özel filtre listenize eklensin mi?\n\nBaşlık: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Abone ol", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/uk/messages.json b/src/_locales/uk/messages.json index f985433fc4ee7..8068ea8ed9c8d 100644 --- a/src/_locales/uk/messages.json +++ b/src/_locales/uk/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Відкрити", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Створити новий звіт", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Знайти подібні звіти", @@ -1019,14 +1019,6 @@ "message": "Позначити цю сторінку «NSFW» («Небезпечно для роботи»)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Редагувати", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Скасувати редагування", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Політика конфіденційності", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Помилка мережі: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "µBlock: Додати це посилання до списку ваших фільтрів?\n\nНазва: \"{{title}}\"\nПосилання: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Підписатись", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/ur/messages.json b/src/_locales/ur/messages.json index 367155757aedc..e88adf5bd1621 100644 --- a/src/_locales/ur/messages.json +++ b/src/_locales/ur/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Open", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "Create new report on GitHub", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Find similar reports on GitHub", @@ -972,7 +972,7 @@ "description": "A paragraph in the filter issue reporter section" }, "supportS6P2S2": { - "message": "Verify that the issue still exists after reloading the problematic webpage.", + "message": "Verify that the issue still exists after reloading the problematic web page.", "description": "A paragraph in the filter issue reporter section" }, "supportS6URL": { @@ -1019,14 +1019,6 @@ "message": "Label the web page as “NSFW” (“Not Safe For Work”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Redact", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Unredact", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Privacy policy", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "نیٹورک مسئلہ: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Add the following URL to your custom filter lists?\n\nTitle: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Subscribe", "description": "For the button used to subscribe to a filter list" @@ -1152,7 +1140,7 @@ "description": "Used in the strict-blocking page" }, "docblockedPrompt2": { - "message": "Because of the following filter:", + "message": "This happened because of the following filter:", "description": "Used in the strict-blocking page" }, "docblockedNoParamsPrompt": { @@ -1160,7 +1148,7 @@ "description": "label to be used for the parameter-less URL: https://cloud.githubusercontent.com/assets/585534/9832014/bfb1b8f0-593b-11e5-8a27-fba472a5529a.png" }, "docblockedFoundIn": { - "message": "Found in:", + "message": "The filter has been found in:", "description": "English: List of filter list names follows" }, "docblockedBack": { diff --git a/src/_locales/vi/messages.json b/src/_locales/vi/messages.json index 7f5300ee5d240..629aec485b926 100644 --- a/src/_locales/vi/messages.json +++ b/src/_locales/vi/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "Mở", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "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 open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "Tìm các báo cáo tương tự", @@ -1019,14 +1019,6 @@ "message": "Đánh dấu \"NFSW\" - Not Safe For Work cho trang web.( Tìm hiểu về \"Not Safe For Work\")", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "Ẩn bớt", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "Hiện thêm", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "Chính sách bảo mật", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "Lỗi kết nối: {{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "Thêm URL dưới đây vào bộ lọc tuỳ biến của bạn?\n\nTên: \"{{title}}\"\nURL: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "Đăng ký", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/zh_CN/messages.json b/src/_locales/zh_CN/messages.json index 79e9e692463c6..13a9beaa72d1d 100644 --- a/src/_locales/zh_CN/messages.json +++ b/src/_locales/zh_CN/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "打开", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "创建新报告", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "查找类似报告", @@ -1019,14 +1019,6 @@ "message": "将该网页标记为 “NSFW”(“工作场所不宜”)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "自动删改", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "取消删改", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "隐私政策", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "网络错误:{{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "添加下列网址到您的自定义规则列表吗?\n\n标题: “{{title}}”\n网址: {{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "订阅", "description": "For the button used to subscribe to a filter list" diff --git a/src/_locales/zh_TW/messages.json b/src/_locales/zh_TW/messages.json index 9f76918fdbf00..b3dc24d41762d 100644 --- a/src/_locales/zh_TW/messages.json +++ b/src/_locales/zh_TW/messages.json @@ -897,11 +897,11 @@ }, "supportOpenButton": { "message": "開啟", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportReportSpecificButton": { "message": "建立新報告", - "description": "Text for button which open an external webpage in Support pane" + "description": "Text for button which open an external web page in Support pane" }, "supportFindSpecificButton": { "message": "尋找類似報告", @@ -1019,14 +1019,6 @@ "message": "將網頁標記為「NSFW」(工作場所不宜)", "description": "A checkbox to use for NSFW sites" }, - "supportRedact": { - "message": "替換", - "description": "Text for 'Redact' button" - }, - "supportUnredact": { - "message": "不要替換", - "description": "Text for 'Unredact' button" - }, "aboutPrivacyPolicy": { "message": "隱私權條款", "description": "Link to privacy policy on GitHub (English)" @@ -1099,10 +1091,6 @@ "message": "網路錯誤:{{msg}}", "description": "English: Network error: {{msg}}" }, - "subscriberConfirm": { - "message": "確定要新增下列網址至自訂過濾規則清單?\n\n標題:「{{title}}」\n網址:{{url}}", - "description": "No longer used" - }, "subscribeButton": { "message": "訂閱", "description": "For the button used to subscribe to a filter list" From 6f8edc3ac6d68c289b434ca233d6422490d8b435 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 26 Dec 2025 12:07:40 -0500 Subject: [PATCH 08/70] Improve `google-ima.js` shim Add expected keywords. --- src/web_accessible_resources/google-ima.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/web_accessible_resources/google-ima.js b/src/web_accessible_resources/google-ima.js index 1e7fb56c208c6..a3f6126628524 100644 --- a/src/web_accessible_resources/google-ima.js +++ b/src/web_accessible_resources/google-ima.js @@ -659,3 +659,11 @@ if (!window.google || !window.google.ima || !window.google.ima.VERSION) { window.google.ima = ima; } + +/* +ad.doubleclick.net bid.g.doubleclick.net ggpht.com google.co.uk google.com +googleads.g.doubleclick.net googleads4.g.doubleclick.net googleadservices.com +googlesyndication.com googleusercontent.com gstatic.com gvt1.com prod.google.com +pubads.g.doubleclick.net s0.2mdn.net static.doubleclick.net +surveys.g.doubleclick.net youtube.com ytimg.com +*/ From bb34a4b83bdae06f2332ffe788b405757073527e Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 27 Dec 2025 09:37:30 -0500 Subject: [PATCH 09/70] Unescape unduly escaped `|` in regex-based domain options Related issue: https://github.com/uBlockOrigin/uAssets/issues/31261#issuecomment-3693496669 --- src/js/static-filtering-parser.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/js/static-filtering-parser.js b/src/js/static-filtering-parser.js index 9993acb6b4a27..18b15fa4250eb 100644 --- a/src/js/static-filtering-parser.js +++ b/src/js/static-filtering-parser.js @@ -2239,7 +2239,10 @@ export class AstFilterParser { const regex = before.startsWith('[$domain=/') ? `${before.slice(9, -1)}` : before; - const source = this.normalizeRegexPattern(regex); + // TODO: Remove unescaping of `|` once AdGuard filters no longer unduly + // escape. In the mean time, if a literal `|` is needed in a path-based + // regex, the solution is to use `\x7C` instead of `|`. + const source = this.normalizeRegexPattern(regex.replace(/\\\|/g, '|')); if ( source === '' ) { return ''; } const after = `/${source}/`; if ( after === before ) { return; } From df0d21d92e868e4f66205822e880c659d32316b5 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 27 Dec 2025 09:45:25 -0500 Subject: [PATCH 10/70] [mv3] Avoid instantiating regexes by using simple needle first Related issue: https://github.com/uBlockOrigin/uBOL-home/issues/223 --- platform/mv3/extension/js/scripting/isolated-api.js | 11 ++++++----- platform/mv3/make-rulesets.js | 13 ++++++++----- platform/mv3/make-scriptlets.js | 11 +++++++++-- platform/mv3/scriptlets/scriptlet.template.js | 11 ++++++++--- src/js/regex-analyzer.js | 10 ++++++++++ tools/make-mv3.sh | 2 ++ 6 files changed, 43 insertions(+), 15 deletions(-) diff --git a/platform/mv3/extension/js/scripting/isolated-api.js b/platform/mv3/extension/js/scripting/isolated-api.js index 837b161317fd3..774517268ca78 100644 --- a/platform/mv3/extension/js/scripting/isolated-api.js +++ b/platform/mv3/extension/js/scripting/isolated-api.js @@ -149,12 +149,13 @@ selectorsFromListIndex(data, data.selectorListRefs[listref]); } const { fromRegexes } = data; - for ( let i = 0, n = fromRegexes.length; i < n; i += 2 ) { - if ( typeof fromRegexes[i+0] === 'string' ) { - fromRegexes[i+0] = new RegExp(fromRegexes[i+0]); + for ( let i = 0, n = fromRegexes.length; i < n; i += 3 ) { + if ( hostname.includes(fromRegexes[i+0]) === false ) { continue; } + if ( typeof fromRegexes[i+1] === 'string' ) { + fromRegexes[i+1] = new RegExp(fromRegexes[i+1]); } - if ( fromRegexes[i+0].test(hostname) === false ) { continue; } - selectorsFromListIndex(data, fromRegexes[i+1]); + if ( fromRegexes[i+1].test(hostname) === false ) { continue; } + selectorsFromListIndex(data, fromRegexes[i+2]); } }; diff --git a/platform/mv3/make-rulesets.js b/platform/mv3/make-rulesets.js index 969747f21e3a9..d17aa5218faf2 100644 --- a/platform/mv3/make-rulesets.js +++ b/platform/mv3/make-rulesets.js @@ -33,6 +33,7 @@ import { import { execSync } from 'node:child_process'; import fs from 'fs/promises'; +import { literalStrFromRegex } from './js/regex-analyzer.js'; import path from 'path'; import process from 'process'; import redirectResourcesMap from './js/redirect-resources.js'; @@ -888,7 +889,7 @@ async function processCosmeticFilters(assetDetails, realm, mapin) { return a < b ? -1 : 1; }); - const data = JSON.stringify({ + const data = { selectors: Array.from(allSelectors.keys()), selectorLists: Array.from(allSelectorLists.keys()), selectorListRefs: sortedHostnames.map(a => allHostnames.get(a)), @@ -896,10 +897,12 @@ async function processCosmeticFilters(assetDetails, realm, mapin) { hasEntities, fromRegexes: Array.from(allRegexesOrPaths) .filter(a => a[0].startsWith('/') && a[0].endsWith('/')) - .map(a => [ a[0].slice(1, -1), a[1] ]) - .flat(), - }); - writeFile(`${scriptletDir}/${realm}/${assetDetails.id}.json`, data); + .map(a => { + const restr = a[0].slice(1,-1); + return [ literalStrFromRegex(restr).slice(0,8), restr, a[1] ] + }).flat(), + }; + writeFile(`${scriptletDir}/${realm}/${assetDetails.id}.json`, JSON.stringify(data)); // The cosmetic filters will be injected programmatically as content // script and the decisions to activate the cosmetic filters will be diff --git a/platform/mv3/make-scriptlets.js b/platform/mv3/make-scriptlets.js index a64a853a46079..8a6b2d3475a29 100644 --- a/platform/mv3/make-scriptlets.js +++ b/platform/mv3/make-scriptlets.js @@ -21,6 +21,7 @@ import { builtinScriptlets } from './js/resources/scriptlets.js'; import fs from 'fs/promises'; +import { literalStrFromRegex } from './js/regex-analyzer.js'; import { safeReplace } from './safe-replace.js'; /******************************************************************************/ @@ -191,8 +192,14 @@ export async function commit(rulesetId, path, writeFn) { }).map(a => ([ a[0], JSON.stringify(Array.from(a[1]).map(a => JSON.parse(a))).slice(1,-1)])); const scriptletFromRegexes = Array.from(worldDetails.regexesOrPaths) .filter(a => a[0].startsWith('/') && a[0].endsWith('/')) - .map(a => [ a[0].slice(1, -1), JSON.stringify(Array.from(a[1])).slice(1,-1) ]) - .flat(); + .map(a => { + const restr = a[0].slice(1,-1); + return [ + literalStrFromRegex(restr).slice(0,8), + restr, + JSON.stringify(Array.from(a[1])).slice(1,-1), + ]; + }).flat(); let content = safeReplace(scriptletTemplate, 'self.$hasEntities$', JSON.stringify(worldDetails.hasEntities)); content = safeReplace(content, 'self.$hasAncestors$', JSON.stringify(worldDetails.hasAncestors)); content = safeReplace(content, 'self.$hasRegexes$', JSON.stringify(scriptletFromRegexes.length !== 0)); diff --git a/platform/mv3/scriptlets/scriptlet.template.js b/platform/mv3/scriptlets/scriptlet.template.js index fa6f65ddb337d..6655d3ca9b211 100644 --- a/platform/mv3/scriptlets/scriptlet.template.js +++ b/platform/mv3/scriptlets/scriptlet.template.js @@ -149,11 +149,16 @@ if ( todoIndices.size !== 0 ) { } if ( $hasRegexes$ ) { const { hns } = entries[0]; - for ( let i = 0, n = $scriptletFromRegexes$.length; i < n; i += 2 ) { - const regex = new RegExp($scriptletFromRegexes$[i+0]); + for ( let i = 0, n = $scriptletFromRegexes$.length; i < n; i += 3 ) { + const needle = $scriptletFromRegexes$[i+0]; + let regex; for ( const hn of hns ) { + if ( hn.includes(needle) === false ) { continue; } + if ( regex === undefined ) { + regex = new RegExp($scriptletFromRegexes$[i+1]); + } if ( regex.test(hn) === false ) { continue; } - for ( const ref of JSON.parse(`[${$scriptletFromRegexes$[i+1]}]`) ) { + for ( const ref of JSON.parse(`[${$scriptletFromRegexes$[i+2]}]`) ) { todo.add(ref); } } diff --git a/src/js/regex-analyzer.js b/src/js/regex-analyzer.js index 0a885047f934d..a46ac60277b78 100644 --- a/src/js/regex-analyzer.js +++ b/src/js/regex-analyzer.js @@ -40,6 +40,16 @@ export function tokenizableStrFromRegex(reStr) { return _literalStrFromRegex(reStr); } +export function literalStrFromRegex(reStr) { + let literals = tokenizableStrFromRegex(reStr) + .split(/[\x00\x01]+/) + .sort((a, b) => b.length - a.length); + if ( literals.length > 1 ) { + literals = literals.filter(a => (/^(\.?com|\.?net|www\.?)$/).test(a) === false); + } + return literals[0] || ''; +} + /******************************************************************************/ function _isRE2(node) { diff --git a/tools/make-mv3.sh b/tools/make-mv3.sh index 403ad7e6636b6..77a5a6414e7eb 100755 --- a/tools/make-mv3.sh +++ b/tools/make-mv3.sh @@ -129,6 +129,8 @@ cp platform/mv3/*.json "$UBOL_BUILD_DIR"/ cp platform/mv3/*.js "$UBOL_BUILD_DIR"/ cp platform/mv3/*.mjs "$UBOL_BUILD_DIR"/ cp platform/mv3/extension/js/utils.js "$UBOL_BUILD_DIR"/js/ +cp "$UBO_DIR"/src/js/regex-analyzer.js "$UBOL_BUILD_DIR"/js/ +cp -R "$UBO_DIR"/src/lib/regexanalyzer "$UBOL_BUILD_DIR"/ cp -R "$UBO_DIR"/src/js/resources "$UBOL_BUILD_DIR"/js/ cp -R platform/mv3/scriptlets "$UBOL_BUILD_DIR"/ mkdir -p "$UBOL_BUILD_DIR"/web_accessible_resources From 2bb3f8c97432bbfe6216573ea9517586b61c5107 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 27 Dec 2025 09:51:22 -0500 Subject: [PATCH 11/70] Fix comment --- src/js/static-filtering-parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/static-filtering-parser.js b/src/js/static-filtering-parser.js index 18b15fa4250eb..761dbf6b7f812 100644 --- a/src/js/static-filtering-parser.js +++ b/src/js/static-filtering-parser.js @@ -2241,7 +2241,7 @@ export class AstFilterParser { : before; // TODO: Remove unescaping of `|` once AdGuard filters no longer unduly // escape. In the mean time, if a literal `|` is needed in a path-based - // regex, the solution is to use `\x7C` instead of `|`. + // regex, the solution is to use `\x7C` instead of `\|`. const source = this.normalizeRegexPattern(regex.replace(/\\\|/g, '|')); if ( source === '' ) { return ''; } const after = `/${source}/`; From f7f96140d9ba31bbd1f33940900625e193e8a10f Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 27 Dec 2025 10:12:34 -0500 Subject: [PATCH 12/70] [mv3] Add page-wide spinner when restoring/resetting settings --- platform/mv3/extension/css/dashboard.css | 11 +++-- platform/mv3/extension/css/settings.css | 12 +++++ platform/mv3/extension/dashboard.html | 6 +++ platform/mv3/extension/js/settings.js | 60 ++++++++++++++---------- 4 files changed, 59 insertions(+), 30 deletions(-) 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/settings.css b/platform/mv3/extension/css/settings.css index d0efeb1b675f8..b1cb4b067be21 100644 --- a/platform/mv3/extension/css/settings.css +++ b/platform/mv3/extension/css/settings.css @@ -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 +
+
+