1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 08:52:26 +02:00

Add logger "Export"-related strings for i18n

This commit is contained in:
Raymond Hill 2019-01-17 08:03:50 -05:00
parent 801eb43572
commit 4df8e9be41
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 25 additions and 5 deletions

View File

@ -743,6 +743,22 @@
"message":"{{input}} Partyness", "message":"{{input}} Partyness",
"description":"A label for the partyness column" "description":"A label for the partyness column"
}, },
"loggerExportFormatList":{
"message":"List",
"description":"Label for radio-button to pick export format"
},
"loggerExportFormatTable":{
"message":"Table",
"description":"Label for radio-button to pick export format"
},
"loggerExportEncodePlain":{
"message":"Plain",
"description":"Label for radio-button to pick export text format"
},
"loggerExportEncodeMarkdown":{
"message":"Markdown",
"description":"Label for radio-button to pick export text format"
},
"aboutChangelog":{ "aboutChangelog":{
"message":"Changelog", "message":"Changelog",
"description":"" "description":""
@ -931,6 +947,10 @@
"message":"Toggle locked scrolling", "message":"Toggle locked scrolling",
"description":"Tooltip for the button used to lock scrolling between the views in the 'My rules' pane" "description":"Tooltip for the button used to lock scrolling between the views in the 'My rules' pane"
}, },
"genericCopyToClipboard":{
"message":"Copy to clipboard",
"description":"Label for buttons used to copy something to the clipboard"
},
"dummy":{ "dummy":{
"message":"This entry must be the last one", "message":"This entry must be the last one",
"description":"so we dont need to deal with comma for last entry" "description":"so we dont need to deal with comma for last entry"

View File

@ -176,15 +176,15 @@
<div id="loggerExportDialog"> <div id="loggerExportDialog">
<div class="options"> <div class="options">
<div data-radio="format"> <div data-radio="format">
<span data-i18n="" data-radio-item="list">List</span> <span data-i18n="loggerExportFormatList" data-radio-item="list"></span>
<span data-i18n="" data-radio-item="table">Table</span> <span data-i18n="loggerExportFormatTable" data-radio-item="table"></span>
</div> </div>
<div data-radio="encoding"> <div data-radio="encoding">
<span data-i18n="" data-radio-item="plain">Plain</span> <span data-i18n="loggerExportEncodePlain" data-radio-item="plain"></span>
<span data-i18n="" data-radio-item="markdown">Markdown</span> <span data-i18n="loggerExportEncodeMarkdown" data-radio-item="markdown"></span>
</div> </div>
<div> <div>
<span data-i18n="" class="pushbutton">Copy to clipboard</span> <span data-i18n="genericCopyToClipboard" class="pushbutton"></span>
</div> </div>
</div> </div>
<textarea class="output" readonly spellcheck="false"></textarea> <textarea class="output" readonly spellcheck="false"></textarea>