options: localize the title
This commit is contained in:
parent
db83ce8dc3
commit
1df76c6929
|
@ -56,6 +56,9 @@ function tNodeList(nodes) {
|
|||
case 'text':
|
||||
node.insertBefore(document.createTextNode(value), node.firstChild);
|
||||
break;
|
||||
case 'text-append':
|
||||
node.appendChild(document.createTextNode(value));
|
||||
break;
|
||||
case 'html':
|
||||
node.insertAdjacentHTML('afterbegin', value);
|
||||
break;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html id="stylus">
|
||||
<head>
|
||||
<title>Stylus Options</title>
|
||||
<title i18n-text-append="optionsHeading">Stylus </title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<script src="/dom.js"></script>
|
||||
<script src="/localization.js"></script>
|
||||
|
|
Loading…
Reference in New Issue
Block a user