aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorgorhill <rhill@raymondhill.net>2015-06-07 09:50:38 -0400
committergorhill <rhill@raymondhill.net>2015-06-07 09:50:38 -0400
commit0df09ba193fc9942f68aae2e768a5bc25441bd61 (patch)
tree0dbb0243143095b06733753841ab6fea5ab6e9b7 /src
parent40ebd3e8a83c47685879b6189b662c5961892e77 (diff)
downloaduBlock-0df09ba193fc9942f68aae2e768a5bc25441bd61.zip
uBlock-0df09ba193fc9942f68aae2e768a5bc25441bd61.tar.gz
uBlock-0df09ba193fc9942f68aae2e768a5bc25441bd61.tar.bz2
this addresses https://crowdin.com/mail/message/310194
Diffstat (limited to 'src')
-rw-r--r--src/js/logger-ui.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/logger-ui.js b/src/js/logger-ui.js
index 93bab0e..e3209fd 100644
--- a/src/js/logger-ui.js
+++ b/src/js/logger-ui.js
@@ -933,11 +933,12 @@ var filteringDialog = (function() {
var fillOriginSelect = function(select, hostname, domain) {
var option, pos;
+ var template = vAPI.i18n('loggerStaticFilteringSentencePartOrigin');
var value = hostname;
for (;;) {
option = document.createElement('option');
option.setAttribute('value', value);
- option.textContent = value;
+ option.textContent = template.replace('{{origin}}', value);
select.appendChild(option);
if ( value === domain ) {
break;