]> git.p6c8.net - policy-templates.git/commitdiff
Merge pull request #404 from AlessandroMenti/it-l10n-update
authorMichael Kaply <345868+mkaply@users.noreply.github.com>
Wed, 10 Jul 2019 15:09:56 +0000 (10:09 -0500)
committerGitHub <noreply@github.com>
Wed, 10 Jul 2019 15:09:56 +0000 (10:09 -0500)
Update the Italian translation

README.md
windows/de-DE/firefox.adml
windows/en-US/firefox.adml
windows/es-ES/firefox.adml
windows/firefox.admx
windows/fr-FR/firefox.adml
windows/it-IT/firefox.adml

index 686be3d8cdbbaad88e18e45d2913e509c1e17976..0160a0b8febed15856974792421748b4cf330883 100644 (file)
--- a/README.md
+++ b/README.md
@@ -45,6 +45,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g
 | **[`DownloadDirectory`](#downloaddirectory)** | Set and lock the download directory.
 | **[`EnableTrackingProtection`](#enabletrackingprotection)** | Configure tracking protection.
 | **[`Extensions`](#extensions)** | Control the installation, uninstallation and locking of extensions.
+| **[`ExtensionSettings`](#extensionsettings)** | Manage all aspects of extensions.
 | **[`ExtensionUpdate`](#extensionupdate)** | Control extension updates.
 | **[`FlashPlugin`](#flashplugin)** | Configure the default Flash plugin policy as well as origins for which Flash is allowed.
 | **[`FirefoxHome`](#firefoxhome)** | Customize the Firefox Home page.
@@ -1310,6 +1311,78 @@ Software\Policies\Mozilla\Firefox\Extensions\Locked\1 = "addon_id@mozilla.org"
   }
 }
 ```
+### ExtensionSettings
+Manage all aspects of extensions. This policy is based heavily on the [Chrome policy](https://dev.chromium.org/administrators/policy-list-3/extension-settings-full) of the same name.
+
+This policy maps an extension ID to its configuration. With an extension ID, configuration will be applied to the specified extension only. A default configuration can be set for the special ID "*", which will apply to all extensions that don't have a custom configuration set in this policy.
+
+To obtain an extension ID, install the extension and go to about:support. You will see the ID in the Extensions section.
+
+The configuration for each extension is another dictionary that can contain the fields documented below.
+
+| Name | Description |
+| --- | --- |
+| `installation_mode` | Maps to a string indicating the installation mode for the extension. The valid strings are `allowed`,`blocked`,`force_installed`, and `normal_installed`.
+| &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`allowed` | Allows the extension to be installed by the user. This is the default behavior.
+| &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`blocked`| Blocks installation of the extension and removes it from the device if already installed.
+| &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`force_installed`| The extension is automatically installed and can't be removed by the user. This option is not valid for the default configuration and requires an install_url.
+| &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`normal_installed`| The extension is automatically installed but can be disabled by the user. This option is not valid for the default configuration and requires an install_url.
+| `install_url`| Maps to a string indicating where Firefox can download a force_installed or normal_installed extension. If installing from the addons.mozilla.org, use the following URL (substituting SHORT_NAME from the URL on AMO), https://addons.mozilla.org/firefox/downloads/latest/SHORT_NAME/latest.xpi
+| `install_sources` | Each item in this list is an extension-style match pattern. Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.xpi file and the page where the download is started from (i.e.  the referrer) must be allowed by these patterns. This setting can be used only for the default configuration.
+| `allowed_types` | This setting whitelists the allowed types of extension/apps that can be installed in Firefox. The value is a list of strings, each of which should be one of the following: "extension", "theme", "dictionary", "langpack" This setting can be used only for the default configuration.
+| `blocked_install_message` | This maps to a string specifying the error message to display to users if they're blocked from installing an extension. This setting allows you to append text to the generic error message displayed when the extension is blocked. This could be be used to direct users to your help desk, explain why a particular extension is blocked, or something else.
+
+**Compatibility:** Firefox 68, Firefox ESR 68\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** N/A
+
+#### Windows
+Due to a bug in Firefox 68, this policy is not working via GPO on Windows. We will have a fix soon.
+#### macOS
+```
+<dict>
+  <key>ExtensionSettings</key>
+  <dict>
+    <key>*</key>
+    <dict>
+      <key>blocked_install_message</key>
+      <string>Custom error message.</string>
+      <key>install_sources</key>
+      <array>
+        <string>https://addons.mozilla.org/</string>
+      </array>
+      <key>installation_mode</key>
+      <string>blocked</string>
+    </dict>
+    <key>uBlock0@raymondhill.net</key>
+    <dict>
+      <key>installation_mode</key>
+       <string>force_installed</string>
+      <key>install_url</key>
+      <string>https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi</string>
+    </dict>
+  </dict>
+</dict>
+```
+#### JSON
+```
+{
+  "policies": {
+    "ExtensionsSettings": {
+      "*": {
+        "blocked_install_message": "Custom error message.",
+        "install_sources": ["https://addons.mozilla.org/"],
+        "installation_mode": "blocked"
+      },
+      "uBlock0@raymondhill.net": {
+        "installation_mode": "force_installed",
+        "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
+      }
+    }
+  }
+}
+```
+
 ### ExtensionUpdate
 Control extension updates.
 
index 1f24d20437928f494971f009949f2e44617b5ebb..6e06de8fd1316efcf1f0bde600e40d32d6ec8edd 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<policyDefinitionResources revision="1.5" schemaVersion="1.0" >
+<policyDefinitionResources revision="1.6" schemaVersion="1.0" >
   <displayName/>
   <description/>
   <resources >
       <string id="SUPPORTED_FF60ESR">Firefox 60 ESR oder höher</string>
       <string id="firefox">Firefox</string>
       <string id="Permissions_group">Berechtigungen</string>
-      <string id="Camera_group">Camera</string>
-      <string id="Microphone_group">Microphone</string>
-      <string id="Location_group">Location</string>
-      <string id="Notifications_group">Notifications</string>
+      <string id="Camera_group">Kamera</string>
+      <string id="Microphone_group">Mikrofon</string>
+      <string id="Location_group">Standort</string>
+      <string id="Notifications_group">Benachrichtigungen</string>
       <string id="Authentication_group">Authentifizierung</string>
       <string id="Bookmarks_group">Lesezeichen</string>
       <string id="Certificates_group">Zertifikate</string>
@@ -29,7 +29,7 @@
       <string id="Flash_group">Flash</string>
       <string id="Homepage_group">Startseite</string>
       <string id="Search_group">Suche</string>
-      <string id="Preferences_group">Preferences</string>
+      <string id="Preferences_group">Einstellungen</string>
       <string id="Allow">Erlaubte Seiten</string>
       <string id="Block">Gesperrte Seiten</string>
       <string id="AppUpdateURL">Benutzerdefinierte Update-URL</string>
@@ -516,21 +516,21 @@ Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, könn
       <string id="SearchEngines_Remove">Suchmaschinen entfernen</string>
       <string id="SearchEngines_Remove_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie die Namen der Suchmaschinen definieren welche entfernt oder ausgeblendet werden sollen.
 
-If this policy is disabled or not configured, search engines will not be removed or hidden.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden keine Suchmaschinen entfernt bzw. ausgeblendet.</string>
       <string id="SearchSuggestEnabled">Suchvorschläge</string>
       <string id="SearchSuggestEnabled_Explain">Wenn Sie die Richtlinieneinstellung deaktivieren werden die Suchvorschläge abgeschaltet.
 
-If this policy is enabled, search suggestions will be enabled.
+Wenn Sie die Richtlinieneinstellung aktivieren, werden Suchvorschläge aktiviert.
 
-If this policy is not configured, search suggestions will be enabled, but the user can turn them off.</string>
+Wenn Sie die Richtlinieneinstellung nicht konfigurieren, werden Suchvorschläge aktiviert, aber der Benutzer kann diese abschalten.</string>
       <string id="SSLVersionMin">Minimum SSL Version</string>
       <string id="SSLVersionMin_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, Firefox wird keine SSL/TLS Version unter der angegebenen Version verwenden.
 
-If this policy is disabled or not configured, Firefox defaults to a minimum of TLS 1.0.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, verwendet Firefox die Standardeinstellung von TLS 1.0.</string>
       <string id="SSLVersionMax">Maximum SSL Version</string>
       <string id="SSLVersionMax_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, Firefox wird keine höhere SSL/TLS Version als der angegebenen Version verwenden.
 
-If this policy is disabled or not configured, Firefox defaults to a maximum of TLS 1.3.</string>
+Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, verwendet Firefox die Standardeinstellung von TLS 1.3.</string>
       <string id="TLS1">TLS 1.0</string>
       <string id="TLS1_1">TLS 1.1</string>
       <string id="TLS1_2">TLS 1.2</string>
@@ -740,12 +740,12 @@ If this policy is disabled or not configured, Firefox defaults to a maximum of T
         <checkBox refId="SanitizeOnShutdown_OfflineApps">Offline-Website-Daten</checkBox>
       </presentation>
       <presentation id="FirefoxHome">
-        <checkBox refId="FirefoxHome_Search">Search</checkBox>
-        <checkBox refId="FirefoxHome_TopSites">Top Sites</checkBox>
-        <checkBox refId="FirefoxHome_Highlights">Download History</checkBox>
-        <checkBox refId="FirefoxHome_Pocket">Recommended by Pocket</checkBox>
+        <checkBox refId="FirefoxHome_Search">Suche</checkBox>
+        <checkBox refId="FirefoxHome_TopSites">Top Seiten</checkBox>
+        <checkBox refId="FirefoxHome_Highlights">Download Verlauf</checkBox>
+        <checkBox refId="FirefoxHome_Pocket">Von Pocket empfohlen</checkBox>
         <checkBox refId="FirefoxHome_Snippets">Snippets</checkBox>
-        <checkBox refId="FirefoxHome_Locked">Don't allow settings to be changed</checkBox>
+        <checkBox refId="FirefoxHome_Locked">Es ist nicht erlaubt, dass Einstellungen geändert werden.</checkBox>
       </presentation>
     </presentationTable>
   </resources>
index 218646cdd28fbe3de1ea0f22f5086ec9dd1423b5..0f6ee8ecc00ee96f773b12f53b4ec296239ed5eb 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<policyDefinitionResources revision="1.5" schemaVersion="1.0" >
+<policyDefinitionResources revision="1.6" schemaVersion="1.0" >
   <displayName/>
   <description/>
   <resources >
index a20caed2d54b8957433e8f36fbc680f6432423d6..4c988a4d043898adb7b20d4a5f0346f2b6ce52d9 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<policyDefinitionResources revision="1.5" schemaVersion="1.0" >
+<policyDefinitionResources revision="1.6" schemaVersion="1.0" >
   <displayName/>
   <description/>
   <resources >
index dbba525d5b3b5f69a080d49081096476b9fa03f1..d0f0ce5decfdaab9ed451517f5d265cec2c565fb 100644 (file)
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="utf-8"?>
-<policyDefinitions revision="1.5" schemaVersion="1.0">
+<policyDefinitions revision="1.6" schemaVersion="1.0">
   <policyNamespaces>
     <target prefix="firefox" namespace="Mozilla.Policies.Firefox"/>
     <using prefix="Mozilla" namespace="Mozilla.Policies"/>
   </policyNamespaces>
-  <resources minRequiredRevision="1.5"/>
+  <resources minRequiredRevision="1.6"/>
   <supportedOn>
     <definitions>
       <definition name="SUPPORTED_WINXPSP2" displayName="$(string.SUPPORTED_WINXPSP2)"/>
index 64d82d6ab366eb78bcc54382c466a7d0df006c99..b64ecd3c2aa26e9a76612becc7677f6d18326267 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>\r
-<policyDefinitionResources revision="1.5" schemaVersion="1.0" >\r
+<policyDefinitionResources revision="1.6" schemaVersion="1.0" >\r
   <displayName/>\r
   <description/>\r
   <resources >\r
index 7cdbdea03dc4e909d9f72a17ae72607ae7945534..aabc1f2e24bce33afa0ba732a87d5ce316f9ecd7 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<policyDefinitionResources revision="1.5" schemaVersion="1.0" >
+<policyDefinitionResources revision="1.6" schemaVersion="1.0" >
   <displayName/>
   <description/>
   <resources >

patrick-canterino.de