No point making the noscript text translatable.

It won't get loaded if JS is disabled...
This commit is contained in:
WrinklyNinja
2014-05-12 19:11:43 +01:00
parent 2dd271e83d
commit 2146b69253
3 changed files with 2 additions and 8 deletions
+1 -4
View File
@@ -4,7 +4,6 @@
<meta charset="utf-8" />
<title>LOOT Report</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/ico" href="../icon.ico">
<script src="polyfill.js"></script>
<script src="require.js"></script>
</head>
@@ -15,9 +14,7 @@
<div class="button hidden" id="filtersToggle"></div>
</div>
<div id="main">
<noscript>
<div id="txtNoscript"></div>
</noscript>
<noscript>The LOOT Report requires Javascript to be enabled in order to function.</noscript>
<div id="plugins" class="hidden">
<ul id="pluginsList">
</ul>
+1 -1
View File
@@ -26,7 +26,7 @@ body {
margin:0;
background:#f8f8f8;
}
noscript div {
noscript {
background:#c00;
display:block;
padding:10px 5px;
-3
View File
@@ -308,9 +308,6 @@ namespace loot {
yout << YAML::Key << "l10n"
<< YAML::BeginMap
<< YAML::Key << "txtNoscript"
<< YAML::Value << boost::locale::translate("The LOOT Report requires Javascript to be enabled in order to function.").str()
<< YAML::Key << "txtSummarySec"
<< YAML::Value << boost::locale::translate("Summary").str()