Skip to content

Instantly share code, notes, and snippets.

@AWolf81
Created July 12, 2016 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AWolf81/b5660bad15ea00a7de96476d2af1bebe to your computer and use it in GitHub Desktop.
Save AWolf81/b5660bad15ea00a7de96476d2af1bebe to your computer and use it in GitHub Desktop.
Localization of radio simplePrefs issue
# ------------------ Einstellungen -----------------------------
whitelist_title = Urls in der White-list sind klickbar
whitelist_description = Jeder Link der in der White-list aufgeführt ist, lässt sich öffnen. Leer oder * lässt jede Url zu. Mehrere Urls werden mit Leerzeichen getrennt. Wildcards sind zuläassig z.B. *.trello.com
enableExecutables_title = Aktiviert Links zu lokalen ausführbaren Dateien
enableExecutables_description = Wenn aktiviert, kann jedes Programm vom Addon gestartet werden. (Achtung! Eine Seite von einem Betrüger könnte das für einen Denial-Of-Service-Angriff verwenden.)
enableLinkIcons_title = Aktiviert Link icons
enableLinkIcons_description = Wenn aktiviert, wird ein Link-Icon jedem lokalen File-Link hinzugefügt.
revealOpenOption_title = Standard Link-Text Klick Verhalten
revealOpenOption_options.0 = Open test German
revealOpenOption_options.1 = Reveal test German
{
"title": "Local Filesystem Links",
"name": "alien-local-filesystem-links",
"version": "0.99.42",
"description": "Scans pages for file:/// links and makes it possible to open them with the system's file browser.",
"main": "index.js",
"author": "austrALIENsun",
"scripts": {
"jpm": "jpm run",
"jpmLinux": "jpm run -b $(which firefox)"
},
"engines": {
"firefox": ">=38.0a1",
"fennec": ">=38.0a1"
},
"license": "MPL 1.1/GPL 3.0",
"id": "jid1-JAzC7z53jemo5Q@jetpack",
"permissions": {
"multiprocess": true
},
"preferences": [{
"name": "whitelist",
"title": "Urls added to white-list will be clickable",
"description": "Any link that will be added to the white-list will be clickable. Empty or * will enable all. Multiple urls are space separated. Wildcards are allowed e.g. *.trello.com",
"type": "string",
"value": "*"
},
{
"name": "enableExecutables",
"title": "Enable links to local executable files",
"description": "if enabled any progam file can be launched by the addon. (Attention! A malicious site could use this for denial-of-service attack!)",
"type": "bool",
"value": false
},
{
"name": "enableLinkIcons",
"title": "Enable link icons",
"description": "if checked there will be a link added to every local link",
"type": "bool",
"value": true
},
{
"name": "revealOpenOption",
"type": "radio",
"title": "Default link text click behaviour",
"value": 0,
"options": [
{
"value": "0",
"label": "Open"
},
{
"value": "1",
"label": "Reveal"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment