mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fix i18n issue in strict-block page
This commit is contained in:
parent
85f587162f
commit
3cea60be0f
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@
|
|||
<p class="why code"> </p>
|
||||
</template>
|
||||
<template class="why-reason">
|
||||
<details><summary><span data-i18n="docBlockedReasonLabel"></span> <span></span></summary>
|
||||
<details><summary><span data-i18n="docblockedReasonLabel"></span> <span></span></summary>
|
||||
<p data-i18n="docblockedPrompt2">_</p>
|
||||
<p class="why code"> </p>
|
||||
</details>
|
||||
|
|
|
|||
|
|
@ -255,7 +255,7 @@ lookupFilterLists().then((lists = []) => {
|
|||
i18n.render(why);
|
||||
dom.text(qs$(why, '.why'), details.fs);
|
||||
if ( reason ) {
|
||||
dom.text(qs$(why, 'summary'), `Reason: ${reason}`);
|
||||
dom.text(qs$(why, 'summary'), `${i18n$('docblockedReasonLabel')} ${reason}`);
|
||||
}
|
||||
qs$('#why').append(why);
|
||||
dom.cl.remove(dom.body, 'loading');
|
||||
|
|
|
|||
Loading…
Reference in a new issue