1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-05-25 09:13:27 +02:00
This commit is contained in:
kkapsner 2018-10-10 00:24:15 +02:00
parent ce3699a03c
commit 5d77a6a1be
3 changed files with 6 additions and 6 deletions

View File

@ -1139,7 +1139,7 @@
"message": "Der weiße Zufallszahlengenerator soll nicht mit \"{blockMode}\" verwendet werden.", "message": "Der weiße Zufallszahlengenerator soll nicht mit \"{blockMode}\" verwendet werden.",
"description": "" "description": ""
}, },
"sanitation_resolution.switchToNonPersistendRng": { "sanitation_resolution.switchToNonPersistentRng": {
"message": "wechsle zu \"nicht persistent\"", "message": "wechsle zu \"nicht persistent\"",
"description": "" "description": ""
}, },
@ -1160,7 +1160,7 @@
"description": "" "description": ""
}, },
"sanitation_error.storeImage": { "sanitation_error.storeImage": {
"message": "Bilder für Betrachtung zu speichern hat einen hohen RAM Verbrauch.", "message": "Bilder für Betrachtung zu speichern führt zu einem hohen RAM-Verbrauch.",
"description": "" "description": ""
} }
} }

View File

@ -1123,7 +1123,7 @@
"description": "" "description": ""
}, },
"sanitation_description": { "sanitation_description": {
"message": "This page helps to find misconfigurations in the CanvasBlocker settings. It also gives advices for suboptimal settings. But it is not recommended to blindly correct all suggestions.", "message": "This page helps to find misconfigurations in the CanvasBlocker settings. It also gives advice on suboptimal settings. But it is not recommended to blindly correct all suggestions.",
"description": "" "description": ""
}, },
"sanitation_nothingToComplain": { "sanitation_nothingToComplain": {
@ -1190,8 +1190,8 @@
"message": "Do not use white random number generator with \"{blockMode}\".", "message": "Do not use white random number generator with \"{blockMode}\".",
"description": "" "description": ""
}, },
"sanitation_resolution.switchToNonPersistendRng": { "sanitation_resolution.switchToNonPersistentRng": {
"message": "switch to \"non persistend\" rng", "message": "switch to \"non persistent\" rng",
"description": "" "description": ""
}, },
"sanitation_error.valueTooLow": { "sanitation_error.valueTooLow": {

View File

@ -159,7 +159,7 @@
.replace(/{blockMode}/g, blockModeName), .replace(/{blockMode}/g, blockModeName),
severity: "low", severity: "low",
resolutions: [switchMode, { resolutions: [switchMode, {
label: browser.i18n.getMessage("sanitation_resolution.switchToNonPersistendRng"), label: browser.i18n.getMessage("sanitation_resolution.switchToNonPersistentRng"),
callback: function(){ callback: function(){
settings.rng = "nonPersistent"; settings.rng = "nonPersistent";
} }