diff --git a/src/content/content.js b/src/content/content.js index dc493c2..e7fb331 100644 --- a/src/content/content.js +++ b/src/content/content.js @@ -1,6 +1,16 @@ 'use strict'; // debug = () => {}; // REL_ONLY -var _ = browser.i18n.getMessage; +function _(...args) { + let fakeLang = navigator.language === "en-US" && + browser.i18n.getUILanguage() !== "en-US"; + return (_ = (template, ...substitutions) => { + let [key, defTemplate] = template.split("|"); + return fakeLang + ? (defTemplate || key).replace(/\$([1-9])/g, + (m, p) => substitutions[parseInt(p) - 1] || "$" + p) + : browser.i18n.getMessage(template, ...substitutions); + })(...args); +} function createHTMLElement(name) { return document.createElementNS("http://www.w3.org/1999/xhtml", name); diff --git a/src/ui/prompt.css b/src/ui/prompt.css index b85762b..abada75 100644 --- a/src/ui/prompt.css +++ b/src/ui/prompt.css @@ -4,6 +4,8 @@ body { font-family: sans-serif; font-size: 12px; color: #222; + margin: 0px; + padding: 8px; } #header { @@ -84,6 +86,7 @@ body { .choices label { display: block; padding-bottom: .5em; + word-break: break-all; } #buttons {