Browse Source

this fixes #44 completely

pull/2/head
gorhill 10 years ago
parent
commit
df6bdbe464
  1. 24
      src/info.html
  2. 22
      tools/_locales/en/messages.json

24
src/info.html

@ -44,7 +44,7 @@
<span data-i18n="statsPageImages"></span><br> <span data-i18n="statsPageImages"></span><br>
<span data-i18n="statsPagePlugins"></span><br> <span data-i18n="statsPagePlugins"></span><br>
<span data-i18n="statsPageScripts"></span><br> <span data-i18n="statsPageScripts"></span><br>
<span data-i18n="statsPageXHR"></span><br>
<span data-i18n="statsPageXHRs"></span><br>
<span data-i18n="statsPageFrames"></span><br> <span data-i18n="statsPageFrames"></span><br>
<span data-i18n="statsPageOthers"></span><br> <span data-i18n="statsPageOthers"></span><br>
</div> </div>
@ -86,17 +86,17 @@
<p id="requestsFilters"> <p id="requestsFilters">
<button id="refreshRequests" class="fa" type="button">&#xf021;</button> <button id="refreshRequests" class="fa" type="button">&#xf021;</button>
<button id="clearRequests" class="fa" type="button">&#xf12d;</button> <button id="clearRequests" class="fa" type="button">&#xf12d;</button>
<label><input id="show-doc" type="checkbox" checked value="1">Pages</label>
<label><input id="show-blocked" type="checkbox" checked value="1"><span style="color:#c00" data-i18n="statsPageBlocked">Blocked</span></label>
<label><input id="show-allowed" type="checkbox" checked value="1"><span style="color:#070" data-i18n="statsPageAllowed">Allowed</span></label>
<label><input id="show-cookie" type="checkbox" checked value="1">Cookies</label>
<label><input id="show-image" type="checkbox" checked value="1">Images</label>
<label><input id="show-css" type="checkbox" checked value="1">CSS</label>
<label><input id="show-plugin" type="checkbox" checked value="1">Plugins</label>
<label><input id="show-script" type="checkbox" checked value="1">Scripts</label>
<label><input id="show-xhr" type="checkbox" checked value="1">XHRs</label>
<label><input id="show-frame" type="checkbox" checked value="1">Frames</label>
<label><input id="show-other" type="checkbox" checked value="1">Others</label>
<label><input id="show-doc" type="checkbox" checked value="1"><span data-i18n="statsPagePages"></span></label>
<label><input id="show-blocked" type="checkbox" checked value="1"><span style="color:#c00" data-i18n="statsPageBlocked"></span></label>
<label><input id="show-allowed" type="checkbox" checked value="1"><span style="color:#070" data-i18n="statsPageAllowed"></span></label>
<label><input id="show-cookie" type="checkbox" checked value="1"><span data-i18n="statsPageCookies"></span></label>
<label><input id="show-css" type="checkbox" checked value="1"><span data-i18n="statsPageCSS"></span></label>
<label><input id="show-image" type="checkbox" checked value="1"><span data-i18n="statsPageImages"></span></label>
<label><input id="show-plugin" type="checkbox" checked value="1"><span data-i18n="statsPagePlugins"></span></label>
<label><input id="show-script" type="checkbox" checked value="1"><span data-i18n="statsPageScripts"></span></label>
<label><input id="show-xhr" type="checkbox" checked value="1"><span data-i18n="statsPageXHRs"></span></label>
<label><input id="show-frame" type="checkbox" checked value="1"><span data-i18n="statsPageFrames"></span></label>
<label><input id="show-other" type="checkbox" checked value="1"><span data-i18n="statsPageOthers"></span></label>
</p> </p>
</div> </div>
<div id="requests-log" style="overflow-y:hidden"> <div id="requests-log" style="overflow-y:hidden">

22
tools/_locales/en/messages.json

@ -170,43 +170,43 @@
"description": "header for the blocked requests column" "description": "header for the blocked requests column"
}, },
"statsPageAll" : { "statsPageAll" : {
"message": "All:",
"message": "All",
"description": "" "description": ""
}, },
"statsPagePages" : { "statsPagePages" : {
"message": "Pages:",
"message": "Pages",
"description": "" "description": ""
}, },
"statsPageCookies" : { "statsPageCookies" : {
"message": "Cookies:",
"message": "Cookies",
"description": "" "description": ""
}, },
"statsPageCSS" : { "statsPageCSS" : {
"message": "CSS:",
"message": "CSS",
"description": "" "description": ""
}, },
"statsPageImages" : { "statsPageImages" : {
"message": "Images:",
"message": "Images",
"description": "" "description": ""
}, },
"statsPagePlugins" : { "statsPagePlugins" : {
"message": "Plugins:",
"message": "Plugins",
"description": "" "description": ""
}, },
"statsPageScripts" : { "statsPageScripts" : {
"message": "Scripts:",
"message": "Scripts",
"description": "" "description": ""
}, },
"statsPageXHR" : {
"message": "XHRs:",
"statsPageXHRs" : {
"message": "XHRs",
"description": "" "description": ""
}, },
"statsPageFrames" : { "statsPageFrames" : {
"message": "Frames:",
"message": "Frames",
"description": "" "description": ""
}, },
"statsPageOthers" : { "statsPageOthers" : {
"message": "Others:",
"message": "Others",
"description": "" "description": ""
}, },
"statsPageDetailed" : { "statsPageDetailed" : {

Loading…
Cancel
Save