diff --git a/.vscode/settings.json b/.vscode/settings.json index 2e8407f..c748d82 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -19,7 +19,9 @@ "ignorelist", "onloaded", "prefs", - "webgl" + "spodermenpls", + "webgl", + "yfdyh" ], - "cSpell.language": "en,de" + "cSpell.language": "en,de,en-GB" } \ No newline at end of file diff --git a/_locales/en/messages.json b/_locales/en/messages.json index e44d20d..b1e6411 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -791,7 +791,7 @@ "description": "" }, "audioUseFixedIndices_description": { - "message": "If some of the used indices should be always faked.", + "message": "If some of the used indices should always be faked.", "description": "" }, "audioFixedIndices_title": { diff --git a/test/detectionTest.js b/test/detectionTest.js index e4df686..8a784c7 100644 --- a/test/detectionTest.js +++ b/test/detectionTest.js @@ -2,7 +2,7 @@ var addTest = (function(){ "use strict"; - var stati = [ + var statusDefinitions = [ {className: "notRun", text: "not run"}, {className: "loud", text: "CB detected"}, {className: "stealthy", text: "CB not detected"}, @@ -23,7 +23,7 @@ var addTest = (function(){ status = 3; } var li = document.createElement("li"); - li.className = stati[status].className; + li.className = statusDefinitions[status].className; var nameNode = document.createElement("span"); nameNode.className = "name"; nameNode.textContent = name; @@ -32,7 +32,7 @@ var addTest = (function(){ li.appendChild(document.createTextNode(": ")); var statusNode = document.createElement("span"); statusNode.className = "status"; - statusNode.textContent = stati[status].text; + statusNode.textContent = statusDefinitions[status].text; statusNode.title = logs.join("\n"); li.appendChild(statusNode); ul.appendChild(li);