1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-03-03 06:42:41 +01: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.",
"description": ""
},
"sanitation_resolution.switchToNonPersistendRng": {
"sanitation_resolution.switchToNonPersistentRng": {
"message": "wechsle zu \"nicht persistent\"",
"description": ""
},
@ -1160,7 +1160,7 @@
"description": ""
},
"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": ""
}
}

View File

@ -1123,7 +1123,7 @@
"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": ""
},
"sanitation_nothingToComplain": {
@ -1190,8 +1190,8 @@
"message": "Do not use white random number generator with \"{blockMode}\".",
"description": ""
},
"sanitation_resolution.switchToNonPersistendRng": {
"message": "switch to \"non persistend\" rng",
"sanitation_resolution.switchToNonPersistentRng": {
"message": "switch to \"non persistent\" rng",
"description": ""
},
"sanitation_error.valueTooLow": {

View File

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