]> git.p6c8.net - policy-templates.git/commitdiff
Merge branch 'master' into DNSOverHTTPS_ExcludedDomains
authorMichael Kaply <345868+mkaply@users.noreply.github.com>
Mon, 6 Apr 2020 20:31:42 +0000 (15:31 -0500)
committerGitHub <noreply@github.com>
Mon, 6 Apr 2020 20:31:42 +0000 (15:31 -0500)
1  2 
README.md
mac/org.mozilla.firefox.plist
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
windows/zh-TW/firefox.adml

diff --combined README.md
index 071ebcdeed6461ce2f77679b3ed50d568ae78d03,df2ccf43d2f394a6461315f337fb9b5436d0c24b..3ec95889d08cbcd1a023ee1b897667b53d4ff598
+++ b/README.md
@@@ -6,6 -6,7 +6,7 @@@ Policies can be specified using the Gro
  
  | Policy Name | Description
  | --- | --- |
+ | **[`AppAutoUpdate`](#AppAutoUpdate)** |  Enable or disable automatic application update.
  | **[`AppUpdateURL`](#AppUpdateURL)** | Change the URL for application update.
  | **[`Authentication`](#Authentication)** | Configure sites that support integrated authentication.
  | **[`BlockAboutAddons`](#blockaboutaddons)** | Block access to the Add-ons Manager (about:addons).
@@@ -22,6 -23,7 +23,7 @@@
  | **[`DisableMasterPasswordCreation`](#disablemasterpasswordcreation)** | Remove the master password functionality.
  | **[`DisableAppUpdate`](#disableappupdate)** | Turn off application updates.
  | **[`DisableBuiltinPDFViewer`](#disablebuiltinpdfviewer)** | Disable the built in PDF viewer.
+ | **[`DisableDefaultBrowserAgent`](#disabledefaultbrowseragent)** | Prevent the default browser agent from taking any actions (Windows only).
  | **[`DisableDeveloperTools`](#disabledevelopertools)** | Remove access to all developer tools.
  | **[`DisableFeedbackCommands`](#disablefeedbackcommands)** | Disable the menus for reporting sites.
  | **[`DisableFirefoxScreenshots`](#disablefirefoxscreenshots)** | Remove access to Firefox Screenshots.
@@@ -31,6 -33,7 +33,7 @@@
  | **[`DisableFormHistory`](#disableformhistory)** | Turn off saving information on web forms and the search bar.
  | **[`DisablePocket`](#disablepocket)** | Remove Pocket in the Firefox UI.
  | **[`DisablePrivateBrowsing`](#disableprivatebrowsing)** | Remove access to private browsing.
+ | **[`DisablePasswordReveal`](#disablepasswordreveal)** | Do not allow passwords to be revealed in saved logins.
  | **[`DisableProfileImport`](#disableprofileimport)** | Disables the "Import data from another browser" option in the bookmarks window.
  | **[`DisableProfileRefresh`](#disableprofilerefresh)** | Disable the Refresh Firefox button on about:support and support.mozilla.org
  | **[`DisableSafeMode`](#disablesafemode)** | Disable safe mode within the browser.
  | **[`SSLVersionMax`](#sslversionmax)** | Set and lock the maximum version of TLS.
  | **[`SSLVersionMin`](#sslversionmin)** | Set and lock the minimum version of TLS.
  | **[`SupportMenu`](#supportmenu)** | Add a menuitem to the help menu for specifying support information.
+ | **[`UserMessaging`](#usermessaging)** | Don't show certain messages to the user.
  | **[`WebsiteFilter`](#websitefilter)** | Block websites from being visited.
  
+ ### AppAutoUpdate
+ Enable or disable **automatic** application update.
+ If set to true, application updates are installed without user approval.
+ If set to false, application updates are downloaded but the user can choose when to install the update.
+ If you have disabled updates via DisableAppUpdate, this policy has no effect.
+ **Compatibility:** Firefox 75, Firefox ESR 68.7\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** app.update.auto
+ #### Windows (GPO)
+ ```
+ Software\Policies\Mozilla\Firefox\AppAutoUpdate = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+   <key>AppAutoUpdate</key>
+   <true/> | <false/>
+ </dict>
+ ```
+ #### policies.json
+ ```
+ {
+   "policies": {
+     "AppAutoUpdate": true | false
+   }
+ }
+ ```
  ### AppUpdateURL
  
  Change the URL for application update.
@@@ -653,6 -690,26 +690,26 @@@ Software\Policies\Mozilla\Firefox\Disab
    }
  }
  ```
+ ### DisableDefaultBrowserAgent
+ Prevent the default browser agent from taking any actions. Only applicable to Windows; other platforms don’t have the agent.
+ **Compatibility:** Firefox 75, Firefox ESR 68.7 (Windows only)\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** N/A
+ #### Windows (GPO)
+ ```
+ Software\Policies\Mozilla\Firefox\DisableDefaultBrowserAgent = 0x1 | 0x0
+ ```
+ #### policies.json
+ ```
+ {
+   "policies": {
+     "DisableDefaultBrowserAgent": true | false
+   }
+ }
+ ```
  ### DisableDeveloperTools
  Remove access to all developer tools.
  
@@@ -1182,9 -1239,7 +1239,9 @@@ Configure DNS over HTTPS
  
  `Locked` prevents the user from changing DNS over HTTPS preferences.
  
 -**Compatibility:** Firefox 63, Firefox ESR 68\
 +`ExcludedDomains` excludes domains from DNS over HTTPS.
 +
 +**Compatibility:** Firefox 63, Firefox ESR 68 (ExcludedDomains added in 75/68.7)\
  **CCK2 Equivalent:** N/A\
  **Preferences Affected:** `network.trr.mode`,`network.trr.uri`
  
  Software\Policies\Mozilla\Firefox\DNSOverHTTPS\Enabled = 0x1 | 0x0
  Software\Policies\Mozilla\Firefox\DNSOverHTTPS\ProviderURL = "URL_TO_ALTERNATE_PROVIDER"
  Software\Policies\Mozilla\Firefox\DNSOverHTTPS\Locked = 0x1 | 0x0
 +Software\Policies\Mozilla\Firefox\DNSOverHTTPS\ExcludedDomains\1 = "example.com"
  ```
  #### macOS
  ```
      <string>URL_TO_ALTERNATE_PROVIDER</string>
      <key>Locked</key>
      <true/> | <false/>
 +    <key>ExcludedDomains</key>
 +    <array>
 +      <string>example.com</string>
 +    </array>
    </dict>
  </dict>
  ```
      "DNSOverHTTPS": {
        "Enabled":  true | false,
        "ProviderURL": "URL_TO_ALTERNATE_PROVIDER",
 -      "Locked": true | false
 +      "Locked": true | false,
 +      "ExcludedDomains": ["example.com"]
      }
    }
  }
@@@ -2264,7 -2313,7 +2321,7 @@@ Set and lock certain preferences
  | --- | --- | --- | ---
  | accessibility.force_disabled | integer | Firefox 70, Firefox ESR 68.2 | 0
  | &nbsp;&nbsp;&nbsp;&nbsp;If set to 1, platform accessibility is disabled.
- | app.update.auto | boolean | Firefox 68, Firefox ESR 68 | true
+ | app.update.auto (Deprecated - Switch to AppAutoUpdate policy) | boolean | Firefox 68, Firefox ESR 68 | true
  | &nbsp;&nbsp;&nbsp;&nbsp;If false, Firefox doesn't automatically install update.
  | browser.bookmarks.autoExportHTML | boolean | Firefox 70, Firefox ESR 68.2 | false
  | &nbsp;&nbsp;&nbsp;&nbsp;If true, bookmarks are exported on shutdown.
@@@ -3028,6 -3077,58 +3085,58 @@@ Software\Policies\Mozilla\Firefox\Suppo
    }
  }
  ```
+ ### UserMessaging
+ Prevent installing search engines from webpages.
+ `WhatsNew` Remove the "What's New" icon and menuitem. (Firefox 75 only)
+ `ExtensionRecommendations` Don't recommend extensions.
+ `FeatureRecommendations` Don't recommend browser features.
+ `UrlbarInterventions` Don't offer Firefox specific suggestions in the URL bar. (Firefox 75 only)
+ **Compatibility:** Firefox 75, Firefox ESR 68.7\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features`
+ #### Windows (GPO)
+ ```
+ Software\Policies\Mozilla\Firefox\UserMessaging\WhatsNew = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\UserMessaging\ExtensionRecommendations = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\UserMessaging\FeatureRecommendations = 0x1 | 0x0
+ Software\Policies\Mozilla\Firefox\UserMessaging\UrlbarInterventions = 0x1 | 0x0
+ ```
+ #### macOS
+ ```
+ <dict>
+   <key>UserMessaging</key>
+   <dict>
+     <key>WhatsNew</key>
+     <true/> | <false/>
+     <key>ExtensionRecommendations</key>
+     <true/> | <false/>
+     <key>FeatureRecommendations</key>
+     <true/> | <false/>
+     <key>UrlbarInterventions</key>
+     <true/> | <false/>
+   </dict>
+ </dict>
+ ```
+ #### policies.json
+ ```
+ {
+   "policies": {
+     "UserMessaging": {
+       "WhatsNew": true | false,
+       "ExtensionRecommendations": true | false,
+       "FeatureRecommendations": true | false,
+       "UrlbarInterventions": true | false
+     }
+   }
+ }
+ ```
  ### WebsiteFilter
  Block websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. The arrays are limited to 1000 entries each.
  
  
  #### Windows (GPO)
  ```
- Software\Policies\Mozilla\Firefox\WebsiteFilters\Block\1 = "<all_urls>"
- Software\Policies\Mozilla\Firefox\WebsiteFilters\Exceptions\1 = "http://example.org/*"
+ Software\Policies\Mozilla\Firefox\WebsiteFilter\Block\1 = "<all_urls>"
+ Software\Policies\Mozilla\Firefox\WebsiteFilter\Exceptions\1 = "http://example.org/*"
  ```
  #### macOS
  ```
index 9ac6498845fcbe4231ff2b8f333a6ff279877812,1fb7f4db6acd949367807439e18b1a07208c9096..a0813c1c2c8614462a1ac51511115a79b1e9541b
@@@ -4,6 -4,8 +4,8 @@@
  <dict>
        <key>EnterprisePoliciesEnabled</key>
        <false/>
+       <key>AppAutoUpdate</key>
+       <true/>
        <key>AppUpdateURL</key>
        <string>https://www.example.com/update.xml</string>
        <key>Authentication</key>
                <string>URL_TO_ALTERNATE_PROVIDER</string>
                <key>Locked</key>
                <true/>
 +              <key>ExcludedDomains</key>
 +              <array>
 +                      <string>example.com</string>
 +              </array>
        </dict>
        <key>DisableAppUpdate</key>
        <true/>
        <true/>
        <key>SearchBar</key>
        <string>separate</string>
+       <key>UserMessaging</key>
+       <dict>
+               <key>WhatsNew</key>
+               <false/>
+               <key>ExtensionRecommendations</key>
+               <false/>
+               <key>FeatureRecommendations</key>
+               <false/>
+               <key>UrlbarInterventions</key>
+               <false/>
+       </dict>
        <key>WebsiteFilter</key>
        <dict>
                <key>Block</key>
index 3d8bcd1815d9db5e74545bb6c67342940c477e13,98a4b80a3fe3e57a207d251c1f20af1935374199..8778bfdc8c5f7eca9dbe2bae6ee587c7ce8f9d9f
        <string id="SUPPORTED_FF72">Firefox 72 oder höher, Firefox 68.4 ESR oder höher</string>
        <string id="SUPPORTED_FF73">Firefox 73 oder höher, Firefox 68.5 ESR oder höher</string>
        <string id="SUPPORTED_FF74">Firefox 74 oder höher, Firefox 68.6 ESR oder höher</string>
+       <string id="SUPPORTED_FF75">Firefox 75 oder höher, Firefox 68.7 ESR oder höher</string>
+       <string id="SUPPORTED_FF75_ONLY">Firefox 75 oder höher</string>
+       <string id="SUPPORTED_FF76">Firefox 76 oder höher, Firefox 68.8 ESR oder höher</string>
+       <string id="SUPPORTED_FF77">Firefox 77 oder höher, Firefox 68.9 ESR oder höher</string>
        <string id="firefox">Firefox</string>
        <string id="Permissions_group">Berechtigungen</string>
        <string id="Camera_group">Kamera</string>
        <string id="Homepage_group">Startseite</string>
        <string id="Search_group">Suche</string>
        <string id="Preferences_group">Einstellungen</string>
+       <string id="UserMessaging_group">User Messaging</string>
        <string id="Allow">Erlaubte Seiten</string>
        <string id="Block">Gesperrte Seiten</string>
+       <string id="AppAutoUpdate">Application Autoupdate</string>
+       <string id="AppAutoUpdate_Explain">If this policy is enabled, Firefox is automatically updated without user approval.
+ If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+ If this policy is not configured, the user can choose whether not Firefox is automatically updated.</string>
        <string id="AppUpdateURL">Benutzerdefinierte Update-URL</string>
        <string id="AppUpdateURL_Explain">Wenn diese Policy aktiviert ist, dann können Sie eine URL zu einem Update-Server setzen, die eine andere ist, als die standardmäßige. Dies kann hilfreich sein, in dem Fall, wenn Sie einen eigenen Update-Server in Ihrem Netzwerk betreiben.
  
@@@ -116,25 -127,7 +127,25 @@@ Wenn Sie die Richtlinieneinstellung dea
        <string id="DownloadDirectory_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können Sie das Standard Verzeichnis für Downloads definieren und sperren. ${home} kann für den nativen Profilpfad verwendet werden.
  
  Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird das Standard Firefox Download Verzeichnis benutzt und der Benutzer kann dies ändern.</string>
 -      <string id="DNSOverHTTPS">DNS Over HTTPS konfigurieren</string>
 +      <string id="DNSOverHTTPS_group">DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_Enabled">Enabled</string>
 +      <string id="DNSOverHTTPS_Enabled_Explain">If this policy is disabled, DNS over HTTPS is disabled.
 +
 +If this policy is enabled or not configured, DNS Over HTTPS is enabled.</string>
 +      <string id="DNSOverHTTPS_ProviderURL">Provider URL</string>
 +      <string id="DNSOverHTTPS_ProviderURL_Explain">If this policy is enabled, the URL specified is used as the provider URL.
 +
 +If this policy is disabled or not configured, the default provider is used.</string>
 +
 +      <string id="DNSOverHTTPS_Locked">Locked</string>
 +      <string id="DNSOverHTTPS_Locked_Explain">If this policy is enabled, DNS over HTTPS settings cannot be changed by the user.
 +
 +If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user.</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains">Excluded Domains</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains_Explain">If this policy is enabled, the specified domains are excluded from DNS over HTTPS.
 +
 +If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS.</string>
 +      <string id="DNSOverHTTPS">DNS Over HTTPS konfigurieren (Moved)</string>
        <string id="DNSOverHTTPS_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können die Standardeinstellungen für DNS over HTTPS geändert werden.
  
  Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden von Mozilla Firefox die Standardeinstellungen zu DNS Over HTTPS benutzt.</string>
@@@ -150,6 -143,12 +161,12 @@@ Wenn Sie die Richtlinieneinstellung dea
        <string id="DisableBuiltinPDFViewer_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, werden PDF-Dateien nicht in Firefox angezeigt.
  
  Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden PDF-Dateien in Firefox angezeigt.</string>
+       <string id="DisableDefaultBrowserAgent">Disable the default browser agent.</string>
+       <string id="DisableDefaultBrowserAgent_Explain">If this policy is enabled, the default browser agent is disabled.
+ If this policy is disabled or not configured, the default browser agent is enabled.
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html</string>
        <string id="DisableDeveloperTools">Werkzeuge für Webentwickler deaktivieren</string>
        <string id="DisableDeveloperTools_Explain">Wenn Sie die Richtlinieneinstellung aktivieren, können die Werkzeuge für Webentwickler in Firefox nicht benutzt werden.
  
@@@ -675,6 -674,22 +692,22 @@@ Wenn Sie die Richtlinieneinstellung dea
        <string id="SupportMenu_Explain">Wenn diese Richtlinieneinstellung aktiviert ist, wird ein Menüeintrag mit spezifizierten Supportinformationen zum "Hilfe"-Menü hinzugefügt.
  
  Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird kein Menüeintrag hinzugefügt.</string>
+       <string id="UserMessaging_WhatsNew">What's New</string>
+       <string id="UserMessaging_WhatsNew_Explain">If this policy is disabled, the What's new icon and menuitem will not be displayed.
+ If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.</string>
+       <string id="UserMessaging_ExtensionRecommendations">Extension Recommendations</string>
+       <string id="UserMessaging_ExtensionRecommendations_Explain">If this policy is disabled, extensions will not be recommended as the user visits websites.
+ If this policy is enabled or not configured, extensions will be recommended as the user visits websites.</string>
+       <string id="UserMessaging_FeatureRecommendations">Feature Recommendations</string>
+       <string id="UserMessaging_FeatureRecommendations_Explain">If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+ If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.</string>
+       <string id="UserMessaging_UrlbarInterventions">Urlbar Interventions</string>
+       <string id="UserMessaging_UrlbarInterventions_Explain">If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+ If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.</string>
        <string id="Preferences_Boolean_Explain">Wenn diese Richtlinieneinstellung aktiviert ist, ist die Einstellung auf true gesperrt. Wenn diese Richtlinieneinstellung deaktiviert ist, ist die Einstellung auf false gesperrt.
  
  Für eine Beschreibung der Einstellung, siehe:
@@@ -965,14 -980,6 +998,14 @@@ https://github.com/mozilla/policy-templ
        <presentation id="DisplayMenuBar">
          <dropdownList refId="DisplayMenuBar"/>
        </presentation>
 +      <presentation id="String">
 +        <textBox refId="String">
 +          <label/>
 +        </textBox>
 +      </presentation>
 +      <presentation id="List">
 +        <listBox refId="List"/>
 +      </presentation>
      </presentationTable>
    </resources>
  </policyDefinitionResources>
index 942d68bcb736c85037c7ce7ae0845a74abca3f3f,1147813f8926367e2475a4a82b68dfdb20c62785..140949574e1be86775a11453c57039398f2a59b1
        <string id="SUPPORTED_FF72">Firefox 72 or later, Firefox 68.4 ESR or later</string>
        <string id="SUPPORTED_FF73">Firefox 73 or later, Firefox 68.5 ESR or later</string>
        <string id="SUPPORTED_FF74">Firefox 74 or later, Firefox 68.6 ESR or later</string>
+       <string id="SUPPORTED_FF75">Firefox 75 or later, Firefox 68.7 ESR or later</string>
+       <string id="SUPPORTED_FF75_ONLY">Firefox 75 or later</string>
+       <string id="SUPPORTED_FF76">Firefox 76 or later, Firefox 68.8 ESR or later</string>
+       <string id="SUPPORTED_FF77">Firefox 77 or later, Firefox 68.9 ESR or later</string>
        <string id="firefox">Firefox</string>
        <string id="Permissions_group">Permissions</string>
        <string id="Camera_group">Camera</string>
        <string id="Homepage_group">Home page</string>
        <string id="Search_group">Search</string>
        <string id="Preferences_group">Preferences</string>
+       <string id="UserMessaging_group">User Messaging</string>
        <string id="Allow">Allowed Sites</string>
        <string id="Block">Blocked Sites</string>
+       <string id="AppAutoUpdate">Application Autoupdate</string>
+       <string id="AppAutoUpdate_Explain">If this policy is enabled, Firefox is automatically updated without user approval.
+ If this policy is disabled Firefox updates are downloaded, but the user can choose when to install the update.
+ If this policy is not configured, the user can choose whether not Firefox is automatically updated.</string>
        <string id="AppUpdateURL">Custom Update URL</string>
        <string id="AppUpdateURL_Explain">If this policy is enabled, you can set a URL to an update server other than the default. This could be helpful if you run your own update server on your network.
  
@@@ -116,25 -127,7 +127,25 @@@ If this policy is disabled or not confi
        <string id="DownloadDirectory_Explain">If this policy is enabled, you can set and lock the directory for downloads. ${home} can be used for the native home path.
  
  If this policy is disabled or not configured, the default Firefox download directory is used and the user can change it.</string>
 -      <string id="DNSOverHTTPS">Configure DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_group">DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_Enabled">Enabled</string>
 +      <string id="DNSOverHTTPS_Enabled_Explain">If this policy is disabled, DNS over HTTPS is disabled.
 +
 +If this policy is enabled or not configured, DNS Over HTTPS is enabled.</string>
 +      <string id="DNSOverHTTPS_ProviderURL">Provider URL</string>
 +      <string id="DNSOverHTTPS_ProviderURL_Explain">If this policy is enabled, the URL specified is used as the provider URL.
 +
 +If this policy is disabled or not configured, the default provider is used.</string>
 +
 +      <string id="DNSOverHTTPS_Locked">Locked</string>
 +      <string id="DNSOverHTTPS_Locked_Explain">If this policy is enabled, DNS over HTTPS settings cannot be changed by the user.
 +
 +If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user.</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains">Excluded Domains</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains_Explain">If this policy is enabled, the specified domains are excluded from DNS over HTTPS.
 +
 +If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS.</string>
 +      <string id="DNSOverHTTPS">Configure DNS Over HTTPS (Moved)</string>
        <string id="DNSOverHTTPS_Explain">If this policy is enabled, the default configuration for DNS over HTTPS can be changed.
  
  If this policy is disabled or not configured, DNS Over HTTPS uses the default Firefox configuration.</string>
@@@ -150,6 -143,12 +161,12 @@@ If this policy is disabled or not confi
        <string id="DisableBuiltinPDFViewer_Explain">If this policy is enabled, PDF files are not viewed within Firefox.
  
  If this policy is disabled or not configured, PDF files are viewed within Firefox.</string>
+       <string id="DisableDefaultBrowserAgent">Disable the default browser agent.</string>
+       <string id="DisableDefaultBrowserAgent_Explain">If this policy is enabled, the default browser agent is disabled.
+ If this policy is disabled or not configured, the default browser agent is enabled.
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html</string>
        <string id="DisableDeveloperTools">Disable Developer Tools</string>
        <string id="DisableDeveloperTools_Explain">If this policy is enabled, web developer tools are not available within Firefox.
  
@@@ -677,6 -676,22 +694,22 @@@ If this policy is disabled or not confi
        <string id="SupportMenu_Explain">If this policy is enabled, a new menuitem is added to the help menu with support information.
  
  If this policy is disabled or not configured, no menuitem is added.</string>
+       <string id="UserMessaging_WhatsNew">What's New</string>
+       <string id="UserMessaging_WhatsNew_Explain">If this policy is disabled, the What's new icon and menuitem will not be displayed.
+ If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.</string>
+       <string id="UserMessaging_ExtensionRecommendations">Extension Recommendations</string>
+       <string id="UserMessaging_ExtensionRecommendations_Explain">If this policy is disabled, extensions will not be recommended as the user visits websites.
+ If this policy is enabled or not configured, extensions will be recommended as the user visits websites.</string>
+       <string id="UserMessaging_FeatureRecommendations">Feature Recommendations</string>
+       <string id="UserMessaging_FeatureRecommendations_Explain">If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+ If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.</string>
+       <string id="UserMessaging_UrlbarInterventions">Urlbar Interventions</string>
+       <string id="UserMessaging_UrlbarInterventions_Explain">If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+ If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.</string>
        <string id="Preferences_Boolean_Explain">If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.
  
  For a description of the preference, see:
@@@ -966,14 -981,6 +999,14 @@@ https://github.com/mozilla/policy-templ
        <presentation id="DisplayMenuBar">
          <dropdownList refId="DisplayMenuBar"/>
        </presentation>
 +      <presentation id="String">
 +        <textBox refId="String">
 +          <label/>
 +        </textBox>
 +      </presentation>
 +      <presentation id="List">
 +        <listBox refId="List"/>
 +      </presentation>
      </presentationTable>
    </resources>
  </policyDefinitionResources>
index e09b748054c2d53b8cffdc90a775015c3d0482f9,f7504e66c9ae60fe3fe312f4d8ad8ab27c882a82..0ab27a5d160fb0486bbe2c922e1b89848ff8e7f0
        <string id="SUPPORTED_FF72">Firefox 72 o posterior, Firefox 68.4 ESR o posterior</string>
        <string id="SUPPORTED_FF73">Firefox 73 o posterior, Firefox 68.5 ESR o posterior</string>
        <string id="SUPPORTED_FF74">Firefox 74 o posterior, Firefox 68.6 ESR o posterior</string>
+       <string id="SUPPORTED_FF75">Firefox 75 o posterior, Firefox 68.7 ESR o posterior</string>
+       <string id="SUPPORTED_FF75_ONLY">Firefox 75 o posterior</string>
+       <string id="SUPPORTED_FF76">Firefox 76 o posterior, Firefox 68.8 ESR o posterior</string>
+       <string id="SUPPORTED_FF77">Firefox 77 o posterior, Firefox 68.9 ESR o posterior</string>
        <string id="firefox">Firefox</string>
        <string id="Permissions_group">Permisos</string>
        <string id="Camera_group">Cámara</string>
        <string id="Homepage_group">Página de inicio</string>
        <string id="Search_group">Búsqueda</string>
        <string id="Preferences_group">Preferencias</string>
+       <string id="UserMessaging_group">User Messaging</string>
        <string id="Allow">Sitios permitidos</string>
        <string id="Block">Sitios bloqueados</string>
+       <string id="AppAutoUpdate">Application Autoupdate</string>
+       <string id="AppAutoUpdate_Explain">If this policy is enabled, Firefox is automatically updated without user approval.
+ If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+ If this policy is not configured, the user can choose whether not Firefox is automatically updated.</string>
        <string id="AppUpdateURL">URL de actualización personalizada</string>
        <string id="AppUpdateURL_Explain">Si esta política está habilitada, podrá establecer una URL para un servidor de actualización que no sea el predeterminado. Esto podría ser útil si ejecuta tu propio servidor de actualización en tu red.
  
@@@ -116,25 -127,7 +127,25 @@@ Si esta política está deshabilitada 
        <string id="DownloadDirectory_Explain">Si esta política está habilitada, podrá configurar y bloquear el directorio para las descargas. ${home} se puede utilizar para la ruta de inicio nativa.
  
  Si esta política está deshabilitada o no está configurada, se utilizará el directorio de descarga predeterminado de Firefox y el usuario puede cambiarlo.</string>
 -      <string id="DNSOverHTTPS">Configurar DNS mediante HTTPS</string>
 +      <string id="DNSOverHTTPS_group">DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_Enabled">Enabled</string>
 +      <string id="DNSOverHTTPS_Enabled_Explain">If this policy is disabled, DNS over HTTPS is disabled.
 +
 +If this policy is enabled or not configured, DNS Over HTTPS is enabled.</string>
 +      <string id="DNSOverHTTPS_ProviderURL">Provider URL</string>
 +      <string id="DNSOverHTTPS_ProviderURL_Explain">If this policy is enabled, the URL specified is used as the provider URL.
 +
 +If this policy is disabled or not configured, the default provider is used.</string>
 +
 +      <string id="DNSOverHTTPS_Locked">Locked</string>
 +      <string id="DNSOverHTTPS_Locked_Explain">If this policy is enabled, DNS over HTTPS settings cannot be changed by the user.
 +
 +If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user.</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains">Excluded Domains</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains_Explain">If this policy is enabled, the specified domains are excluded from DNS over HTTPS.
 +
 +If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS.</string>
 +      <string id="DNSOverHTTPS">Configurar DNS mediante HTTPS (Moved)</string>
        <string id="DNSOverHTTPS_Explain">Si esta política está habilitada, se podrá cambiar la configuración predeterminada de DNS mediante HTTPS.
  
  Si esta política está deshabilitada o no está configurada, DNS mediante HTTPS usa la configuración predeterminada de Firefox.</string>
@@@ -150,6 -143,12 +161,12 @@@ Si esta política está deshabilitada 
        <string id="DisableBuiltinPDFViewer_Explain">Si esta política está habilitada, los archivos PDF no se visualizan dentro de Firefox.
  
  Si esta política está deshabilitada o no está configurada, los archivos PDF se visualizan dentro de Firefox.</string>
+       <string id="DisableDefaultBrowserAgent">Disable the default browser agent.</string>
+       <string id="DisableDefaultBrowserAgent_Explain">If this policy is enabled, the default browser agent is disabled.
+ If this policy is disabled or not configured, the default browser agent is enabled.
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html</string>
        <string id="DisableDeveloperTools">Deshabilitar herramientas para desarrolladores</string>
        <string id="DisableDeveloperTools_Explain">Si esta política está habilitada, las herramientas para desarrolladores web no están disponibles dentro de Firefox.
  
@@@ -677,6 -676,22 +694,22 @@@ Si esta política está deshabilitada 
        <string id="SupportMenu_Explain">Si esta política está habilitada, se añadirá un elemento nuevo al menú de ayuda con información de soporte.
  
  Si esta política está deshabilitada o no está configurada, no se añadirá ningún elemento al menú.</string>
+       <string id="UserMessaging_WhatsNew">What's New</string>
+       <string id="UserMessaging_WhatsNew_Explain">If this policy is disabled, the What's new icon and menuitem will not be displayed.
+ If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.</string>
+       <string id="UserMessaging_ExtensionRecommendations">Extension Recommendations</string>
+       <string id="UserMessaging_ExtensionRecommendations_Explain">If this policy is disabled, extensions will not be recommended as the user visits websites.
+ If this policy is enabled or not configured, extensions will be recommended as the user visits websites.</string>
+       <string id="UserMessaging_FeatureRecommendations">Feature Recommendations</string>
+       <string id="UserMessaging_FeatureRecommendations_Explain">If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+ If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.</string>
+       <string id="UserMessaging_UrlbarInterventions">Urlbar Interventions</string>
+       <string id="UserMessaging_UrlbarInterventions_Explain">If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+ If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.</string>
        <string id="Preferences_Boolean_Explain">Si esta política está habilitada, la preferencia se bloquea en true. Si esta política está deshabilitada, la preferencia está bloqueada en false.
  
  Para una descripción de la preferencia, visite:
@@@ -966,14 -981,6 +999,14 @@@ https://github.com/mozilla/policy-templ
        <presentation id="DisplayMenuBar">
          <dropdownList refId="DisplayMenuBar"/>
        </presentation>
 +      <presentation id="String">
 +        <textBox refId="String">
 +          <label/>
 +        </textBox>
 +      </presentation>
 +      <presentation id="List">
 +        <listBox refId="List"/>
 +      </presentation>
      </presentationTable>
    </resources>
  </policyDefinitionResources>
diff --combined windows/firefox.admx
index 99439d857cb606e41ebf420e2ba03c3256d8891f,36948d5c2648ec3e2d569d7dd1b4cd8f7a1140d3..8e9567a30328afb0bdb65c673f91025f3aad017c
        <definition name="SUPPORTED_FF67" displayName="$(string.SUPPORTED_FF67)"/>
        <definition name="SUPPORTED_FF68" displayName="$(string.SUPPORTED_FF68)"/>
        <definition name="SUPPORTED_FF6801" displayName="$(string.SUPPORTED_FF6801)"/>
+       <definition name="SUPPORTED_FF68ESR" displayName="$(string.SUPPORTED_FF68ESR)"/>
        <definition name="SUPPORTED_FF70" displayName="$(string.SUPPORTED_FF70)"/>
        <definition name="SUPPORTED_FF71" displayName="$(string.SUPPORTED_FF71)"/>
        <definition name="SUPPORTED_FF72" displayName="$(string.SUPPORTED_FF72)"/>
        <definition name="SUPPORTED_FF73" displayName="$(string.SUPPORTED_FF73)"/>
        <definition name="SUPPORTED_FF74" displayName="$(string.SUPPORTED_FF74)"/>
-       <definition name="SUPPORTED_FF68ESR" displayName="$(string.SUPPORTED_FF68ESR)"/>
+       <definition name="SUPPORTED_FF75" displayName="$(string.SUPPORTED_FF75)"/>
+       <definition name="SUPPORTED_FF75_ONLY" displayName="$(string.SUPPORTED_FF75_ONLY)"/>
+       <definition name="SUPPORTED_FF76" displayName="$(string.SUPPORTED_FF76)"/>
+       <definition name="SUPPORTED_FF77" displayName="$(string.SUPPORTED_FF77)"/>
      </definitions>
    </supportedOn>
    <categories>
      <category displayName="$(string.TrackingProtection_group)" name="TrackingProtection">
        <parentCategory ref="firefox"/>
      </category>
 +    <category displayName="$(string.DNSOverHTTPS_group)" name="DNSOverHTTPS">
 +      <parentCategory ref="firefox"/>
 +    </category>
+     <category displayName="$(string.UserMessaging_group)" name="UserMessaging">
+       <parentCategory ref="firefox"/>
+     </category>
    </categories>
    <policies>
+     <policy name="AppAutoUpdate" class="Both" displayName="$(string.AppAutoUpdate)" explainText="$(string.AppAutoUpdate_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="AppAutoUpdate">
+       <parentCategory ref="firefox"/>
+       <supportedOn ref="SUPPORTED_FF75"/>
+       <enabledValue>
+         <decimal value="1"/>
+       </enabledValue>
+       <disabledValue>
+         <decimal value="0"/>
+       </disabledValue>
+     </policy>
      <policy name="Authentication_SPNEGO" class="Both" displayName="$(string.Authentication_SPNEGO)"  key="Software\Policies\Mozilla\Firefox\Authentication\SPNEGO" explainText="$(string.Authentication_SPNEGO_Explain)" presentation="$(presentation.Authentication)">
        <parentCategory ref="Authentication"/>
        <supportedOn ref="SUPPORTED_FF60"/>
          <text id="Preferences_String" valueName="DownloadDirectory" expandable="true"/>
        </elements>
      </policy>
 +    <policy name="DNSOverHTTPS_Enabled" class="Both" displayName="$(string.DNSOverHTTPS_Enabled)" explainText="$(string.DNSOverHTTPS_Enabled_Explain)" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS" valueName="Enabled">
 +      <parentCategory ref="DNSOverHTTPS"/>
 +      <supportedOn ref="SUPPORTED_FF63ESR"/>
 +      <enabledValue>
 +        <decimal value="1"/>
 +      </enabledValue>
 +      <disabledValue>
 +        <decimal value="0"/>
 +      </disabledValue>
 +    </policy>
 +    <policy name="DNSOverHTTPS_ProviderURL" class="Both" displayName="$(string.DNSOverHTTPS_ProviderURL)" explainText="$(string.DNSOverHTTPS_ProviderURL_Explain)" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS" presentation="$(presentation.String)">
 +      <parentCategory ref="DNSOverHTTPS"/>
 +      <supportedOn ref="SUPPORTED_FF63ESR"/>
 +      <elements>
 +        <text id="String" valueName="ProviderURL"/>
 +      </elements>
 +    </policy>
 +    <policy name="DNSOverHTTPS_Locked" class="Both" displayName="$(string.DNSOverHTTPS_Locked)" explainText="$(string.DNSOverHTTPS_Locked_Explain)" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS" valueName="Locked">
 +      <parentCategory ref="DNSOverHTTPS"/>
 +      <supportedOn ref="SUPPORTED_FF63ESR"/>
 +      <enabledValue>
 +        <decimal value="1"/>
 +      </enabledValue>
 +      <disabledValue>
 +        <decimal value="0"/>
 +      </disabledValue>
 +    </policy>
 +    <policy name="DNSOverHTTPS_ExcludedDomains" class="Both" displayName="$(string.DNSOverHTTPS_ExcludedDomains)" explainText="$(string.DNSOverHTTPS_ExcludedDomains_Explain)" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS" presentation="$(presentation.List)">
 +      <parentCategory ref="DNSOverHTTPS"/>
 +      <supportedOn ref="SUPPORTED_FF75"/>
 +      <elements>
 +        <list id="List" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS\ExcludedDomains" valuePrefix=""/>
 +      </elements>
 +    </policy>
      <policy name="DNSOverHTTPS" class="Both" displayName="$(string.DNSOverHTTPS)" explainText="$(string.DNSOverHTTPS_Explain)" key="Software\Policies\Mozilla\Firefox\DNSOverHTTPS" presentation="$(presentation.DNSOverHTTPS)" >
        <parentCategory ref="firefox" />
        <supportedOn ref="SUPPORTED_FF63ESR" />
          <decimal value="0"/>
        </disabledValue>
      </policy>
+     <policy name="DisableDefaultBrowserAgent" class="Both" displayName="$(string.DisableDefaultBrowserAgent)" explainText="$(string.DisableDefaultBrowserAgent_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableDefaultBrowserAgent">
+       <parentCategory ref="firefox"/>
+       <supportedOn ref="SUPPORTED_FF75"/>
+       <enabledValue>
+         <decimal value="1"/>
+       </enabledValue>
+       <disabledValue>
+         <decimal value="0"/>
+       </disabledValue>
+     </policy>
      <policy name="DisableDeveloperTools" class="Both" displayName="$(string.DisableDeveloperTools)" explainText="$(string.DisableDeveloperTools_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableDeveloperTools">
        <parentCategory ref="firefox"/>
        <supportedOn ref="SUPPORTED_FF60"/>
          <decimal value="0"/>
        </disabledValue>
      </policy>
+     <policy name="UserMessaging_WhatsNew" class="Both" displayName="$(string.UserMessaging_WhatsNew)" explainText="$(string.UserMessaging_WhatsNew_Explain)" key="Software\Policies\Mozilla\Firefox\UserMessaging" valueName="WhatsNew">
+       <parentCategory ref="UserMessaging"/>
+       <supportedOn ref="SUPPORTED_FF75_ONLY"/>
+       <enabledValue>
+         <decimal value="1"/>
+       </enabledValue>
+       <disabledValue>
+         <decimal value="0"/>
+       </disabledValue>
+     </policy>
+     <policy name="UserMessaging_ExtensionRecommendations" class="Both" displayName="$(string.UserMessaging_ExtensionRecommendations)" explainText="$(string.UserMessaging_ExtensionRecommendations_Explain)" key="Software\Policies\Mozilla\Firefox\UserMessaging" valueName="ExtensionRecommendations">
+       <parentCategory ref="UserMessaging"/>
+       <supportedOn ref="SUPPORTED_FF75"/>
+       <enabledValue>
+         <decimal value="1"/>
+       </enabledValue>
+       <disabledValue>
+         <decimal value="0"/>
+       </disabledValue>
+     </policy>
+     <policy name="UserMessaging_FeatureRecommendations" class="Both" displayName="$(string.UserMessaging_FeatureRecommendations)" explainText="$(string.UserMessaging_FeatureRecommendations_Explain)" key="Software\Policies\Mozilla\Firefox\UserMessaging" valueName="FeatureRecommendations">
+       <parentCategory ref="UserMessaging"/>
+       <supportedOn ref="SUPPORTED_FF75"/>
+       <enabledValue>
+         <decimal value="1"/>
+       </enabledValue>
+       <disabledValue>
+         <decimal value="0"/>
+       </disabledValue>
+     </policy>
+     <policy name="UserMessaging_UrlbarInterventions" class="Both" displayName="$(string.UserMessaging_UrlbarInterventions)" explainText="$(string.UserMessaging_UrlbarInterventions_Explain)" key="Software\Policies\Mozilla\Firefox\UserMessaging" valueName="UrlbarInterventions">
+       <parentCategory ref="UserMessaging"/>
+       <supportedOn ref="SUPPORTED_FF75_ONLY"/>
+       <enabledValue>
+         <decimal value="1"/>
+       </enabledValue>
+       <disabledValue>
+         <decimal value="0"/>
+       </disabledValue>
+     </policy>
    </policies>
  </policyDefinitions>
index 583038d3cabd5e80ad99191d3520dd4560bf0c64,6677c4a97eb328ce51e0ccfec93e550a8fe854b3..18398a0ccbd735a171a927862fdd46d7ce11dbd1
        <string id="SUPPORTED_FF72">Firefox 72 ou supérieur, Firefox 68.4 ESR ou supérieur</string>\r
        <string id="SUPPORTED_FF73">Firefox 73 ou supérieur, Firefox 68.5 ESR ou supérieur</string>\r
        <string id="SUPPORTED_FF74">Firefox 74 ou supérieur, Firefox 68.6 ESR ou supérieur</string>\r
+       <string id="SUPPORTED_FF75">Firefox 75 ou supérieur, Firefox 68.7 ESR ou supérieur</string>\r
+       <string id="SUPPORTED_FF75_ONLY">Firefox 75 ou supérieur</string>\r
+       <string id="SUPPORTED_FF76">Firefox 76 ou supérieur, Firefox 68.8 ESR ou supérieur</string>\r
+       <string id="SUPPORTED_FF77">Firefox 77 ou supérieur, Firefox 68.9 ESR ou supérieur</string>\r
        <string id="firefox">Firefox</string>\r
        <string id="Permissions_group">Permissions</string>\r
        <string id="Camera_group">Caméra</string>\r
        <string id="Homepage_group">Page d'accueil</string>\r
        <string id="Search_group">Recherche</string>\r
        <string id="Preferences_group">Préférences</string>\r
+       <string id="UserMessaging_group">User Messaging</string>\r
        <string id="Allow">Sites autorisés</string>\r
        <string id="Block">Sites bloqués</string>\r
+       <string id="AppAutoUpdate">Application Autoupdate</string>\r
+       <string id="AppAutoUpdate_Explain">If this policy is enabled, Firefox is automatically updated without user approval.\r
\r
+ If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.\r
\r
+ If this policy is not configured, the user can choose whether not Firefox is automatically updated.</string>\r
        <string id="AppUpdateURL">URL de mise à jour personnalisée</string>\r
        <string id="AppUpdateURL_Explain">Si cette stratégie est activée, vous pouvez définir une URL vers un serveur de mise à jour autre que celui par défaut. Cela pourrait être utile si vous exécutez votre propre serveur de mise à jour sur votre réseau.\r
  \r
@@@ -116,25 -127,7 +127,25 @@@ Si cette stratégie est désactivée o
        <string id="DownloadDirectory_Explain">Si cette stratégie est activée, vous pouvez définir et verrouiller le répertoire de téléchargement. ${home} peut être utilisé comme chemin de base.\r
  \r
  Si cette stratégie est désactivée ou non configurée, le répertoire de téléchargement par défaut de Firefox est utilisé et l'uilisateur peut le modifier.</string>\r
 -      <string id="DNSOverHTTPS">Configurer DNS sur HTTPS</string>\r
 +      <string id="DNSOverHTTPS_group">DNS Over HTTPS</string>\r
 +      <string id="DNSOverHTTPS_Enabled">Enabled</string>\r
 +      <string id="DNSOverHTTPS_Enabled_Explain">If this policy is disabled, DNS over HTTPS is disabled.\r
 +\r
 +If this policy is enabled or not configured, DNS Over HTTPS is enabled.</string>\r
 +      <string id="DNSOverHTTPS_ProviderURL">Provider URL</string>\r
 +      <string id="DNSOverHTTPS_ProviderURL_Explain">If this policy is enabled, the URL specified is used as the provider URL.\r
 +\r
 +If this policy is disabled or not configured, the default provider is used.</string>\r
 +\r
 +      <string id="DNSOverHTTPS_Locked">Locked</string>\r
 +      <string id="DNSOverHTTPS_Locked_Explain">If this policy is enabled, DNS over HTTPS settings cannot be changed by the user.\r
 +\r
 +If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user.</string>\r
 +      <string id="DNSOverHTTPS_ExcludedDomains">Excluded Domains</string>\r
 +      <string id="DNSOverHTTPS_ExcludedDomains_Explain">If this policy is enabled, the specified domains are excluded from DNS over HTTPS.\r
 +\r
 +If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS.</string>\r
 +      <string id="DNSOverHTTPS">Configurer DNS sur HTTPS (Moved)</string>\r
        <string id="DNSOverHTTPS_Explain">Si cette stratégie est activée, la configuration par défaut de DNS sur HTTPS peut être modifiée.\r
  \r
  Si cette stratégie est désactivée ou non configurée, DNS Over HTTPS utilise la configuration par défaut de Firefox.</string>\r
@@@ -150,6 -143,12 +161,12 @@@ Si cette stratégie est désactivée o
        <string id="DisableBuiltinPDFViewer_Explain">Si cette stratégie est activée, les fichiers PDF ne sont pas visualisés dans Firefox.\r
  \r
  Si cette stratégie est désactivée ou non configurée, les fichiers PDF sont visualisés dans Firefox.</string>\r
+       <string id="DisableDefaultBrowserAgent">Disable the default browser agent.</string>\r
+       <string id="DisableDefaultBrowserAgent_Explain">If this policy is enabled, the default browser agent is disabled.\r
\r
+ If this policy is disabled or not configured, the default browser agent is enabled.\r
\r
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html</string>\r
        <string id="DisableDeveloperTools">Désactiver les outils de développement</string>\r
        <string id="DisableDeveloperTools_Explain">Si cette stratégie est activée, les outils de développement Web ne sont pas disponibles dans Firefox.\r
  \r
@@@ -677,6 -676,22 +694,22 @@@ Si cette stratégie est désactivée o
        <string id="SupportMenu_Explain">If this policy is enabled, a new menuitem is added to the help menu with support information.\r
  \r
  If this policy is disabled or not configured, no menuitem is added.</string>\r
+       <string id="UserMessaging_WhatsNew">What's New</string>\r
+       <string id="UserMessaging_WhatsNew_Explain">If this policy is disabled, the What's new icon and menuitem will not be displayed.\r
\r
+ If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.</string>\r
+       <string id="UserMessaging_ExtensionRecommendations">Extension Recommendations</string>\r
+       <string id="UserMessaging_ExtensionRecommendations_Explain">If this policy is disabled, extensions will not be recommended as the user visits websites.\r
\r
+ If this policy is enabled or not configured, extensions will be recommended as the user visits websites.</string>\r
+       <string id="UserMessaging_FeatureRecommendations">Feature Recommendations</string>\r
+       <string id="UserMessaging_FeatureRecommendations_Explain">If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.\r
\r
+ If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.</string>\r
+       <string id="UserMessaging_UrlbarInterventions">Urlbar Interventions</string>\r
+       <string id="UserMessaging_UrlbarInterventions_Explain">If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.\r
\r
+ If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.</string>\r
        <string id="Preferences_Boolean_Explain">If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.\r
  \r
  For a description of the preference, see:\r
@@@ -966,14 -981,6 +999,14 @@@ https://github.com/mozilla/policy-templ
        <presentation id="DisplayMenuBar">\r
          <dropdownList refId="DisplayMenuBar"/>\r
        </presentation>\r
 +      <presentation id="String">\r
 +        <textBox refId="String">\r
 +          <label/>\r
 +        </textBox>\r
 +      </presentation>\r
 +      <presentation id="List">\r
 +        <listBox refId="List"/>\r
 +      </presentation>\r
      </presentationTable>\r
    </resources>\r
  </policyDefinitionResources>\r
index fd766e1506375227c3f69f3f51e58a3b31436864,48c6f6ace46e7cf3519a5d4776fc9dd0bd8996c4..ee1a97b8455dc34921ccee83087209084ebbeb49
        <string id="SUPPORTED_FF72">Firefox 72 o versione successiva, Firefox 68.4 ESR o versione successiva</string>
        <string id="SUPPORTED_FF73">Firefox 73 o versione successiva, Firefox 68.5 ESR o versione successiva</string>
        <string id="SUPPORTED_FF74">Firefox 74 o versione successiva, Firefox 68.6 ESR o versione successiva</string>
+       <string id="SUPPORTED_FF75">Firefox 75 o versione successiva, Firefox 68.7 ESR o versione successiva</string>
+       <string id="SUPPORTED_FF75_ONLY">Firefox 75 o versione successiva</string>
+       <string id="SUPPORTED_FF76">Firefox 76 o versione successiva, Firefox 68.8 ESR o versione successiva</string>
+       <string id="SUPPORTED_FF77">Firefox 77 o versione successiva, Firefox 68.9 ESR o versione successiva</string>
        <string id="firefox">Firefox</string>
        <string id="Permissions_group">Permessi</string>
        <string id="Camera_group">Fotocamera</string>
        <string id="Homepage_group">Pagina iniziale</string>
        <string id="Search_group">Ricerca</string>
        <string id="Preferences_group">Preferenze</string>
+       <string id="UserMessaging_group">User Messaging</string>
        <string id="Allow">Siti consentiti</string>
        <string id="Block">Siti bloccati</string>
+       <string id="AppAutoUpdate">Application Autoupdate</string>
+       <string id="AppAutoUpdate_Explain">If this policy is enabled, Firefox is automatically updated without user approval.
+ If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+ If this policy is not configured, the user can choose whether not Firefox is automatically updated.</string>
        <string id="AppUpdateURL">URL aggiornamento personalizzato</string>
        <string id="AppUpdateURL_Explain">Se questo criterio è abilitato, è possibile impostare un URL diverso da quello predefinito per il server di aggiornamento. Ciò potrebbe essere utile se si dispone di un server di aggiornamento sulla propria rete.
  
@@@ -116,25 -127,7 +127,25 @@@ Se questo criterio è disabilitato o no
        <string id="DownloadDirectory_Explain">Se questo criterio è abilitato, è possibile impostare e rendere non modificabile la directory per i download. È possibile usare ${home} per specificare il percorso nativo della directory utente.
  
  Se questo criterio è disabilitato o non configurato, Firefox utilizzerà la directory di download predefinita e l'utente sarà in grado di modificarla.</string>
 -      <string id="DNSOverHTTPS">Configura DNS su HTTPS</string>
 +      <string id="DNSOverHTTPS_group">DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_Enabled">Enabled</string>
 +      <string id="DNSOverHTTPS_Enabled_Explain">If this policy is disabled, DNS over HTTPS is disabled.
 +
 +If this policy is enabled or not configured, DNS Over HTTPS is enabled.</string>
 +      <string id="DNSOverHTTPS_ProviderURL">Provider URL</string>
 +      <string id="DNSOverHTTPS_ProviderURL_Explain">If this policy is enabled, the URL specified is used as the provider URL.
 +
 +If this policy is disabled or not configured, the default provider is used.</string>
 +
 +      <string id="DNSOverHTTPS_Locked">Locked</string>
 +      <string id="DNSOverHTTPS_Locked_Explain">If this policy is enabled, DNS over HTTPS settings cannot be changed by the user.
 +
 +If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user.</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains">Excluded Domains</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains_Explain">If this policy is enabled, the specified domains are excluded from DNS over HTTPS.
 +
 +If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS.</string>
 +      <string id="DNSOverHTTPS">Configura DNS su HTTPS (Moved)</string>
        <string id="DNSOverHTTPS_Explain">Se questo criterio è abilitato, la configurazione predefinita per DNS su HTTPS può essere modificata.
  
  Se questo criterio è disabilitato o non configurato, DNS su HTTPS utilizza la configurazione predefinita di Firefox.</string>
@@@ -150,6 -143,12 +161,12 @@@ Se questo criterio è disabilitato o no
        <string id="DisableBuiltinPDFViewer_Explain">Se questo criterio è abilitato, i file PDF non sono visualizzati all'interno di Firefox.
  
  Se questo criterio è disabilitato o non configurato, i file PDF sono visualizzati all'interno di Firefox.</string>
+       <string id="DisableDefaultBrowserAgent">Disable the default browser agent.</string>
+       <string id="DisableDefaultBrowserAgent_Explain">If this policy is enabled, the default browser agent is disabled.
+ If this policy is disabled or not configured, the default browser agent is enabled.
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html</string>
        <string id="DisableDeveloperTools">Disabilita Strumenti Sviluppo web</string>
        <string id="DisableDeveloperTools_Explain">Se questo criterio è abilitato, gli Strumenti Sviluppo web non sono disponibili all'interno di Firefox.
  
@@@ -677,6 -676,22 +694,22 @@@ Se questo criterio è disabilitato o no
        <string id="SupportMenu_Explain">Se questo criterio è abilitato, al menù Aiuto sarà aggiunta una nuova voce di menù per richiamare le informazioni di supporto.
  
  Se questo criterio è disabilitato o non configurato, non sarà aggiunta nessuna voce.</string>
+       <string id="UserMessaging_WhatsNew">What's New</string>
+       <string id="UserMessaging_WhatsNew_Explain">If this policy is disabled, the What's new icon and menuitem will not be displayed.
+ If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.</string>
+       <string id="UserMessaging_ExtensionRecommendations">Extension Recommendations</string>
+       <string id="UserMessaging_ExtensionRecommendations_Explain">If this policy is disabled, extensions will not be recommended as the user visits websites.
+ If this policy is enabled or not configured, extensions will be recommended as the user visits websites.</string>
+       <string id="UserMessaging_FeatureRecommendations">Feature Recommendations</string>
+       <string id="UserMessaging_FeatureRecommendations_Explain">If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+ If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.</string>
+       <string id="UserMessaging_UrlbarInterventions">Urlbar Interventions</string>
+       <string id="UserMessaging_UrlbarInterventions_Explain">If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+ If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.</string>
        <string id="Preferences_Boolean_Explain">Se questo criterio è abilitato, la preferenza è impostata a Vero e resa non modificabile. Se questo criterio è disabilitato, la preferenza è impostata a Falso e resa non modificabile.
  
  Per una descrizione della preferenza, si veda:
@@@ -966,14 -981,6 +999,14 @@@ https://github.com/mozilla/policy-templ
        <presentation id="DisplayMenuBar">
          <dropdownList refId="DisplayMenuBar"/>
        </presentation>
 +      <presentation id="String">
 +        <textBox refId="String">
 +          <label/>
 +        </textBox>
 +      </presentation>
 +      <presentation id="List">
 +        <listBox refId="List"/>
 +      </presentation>
      </presentationTable>
    </resources>
  </policyDefinitionResources>
index ae3285c7158cea694323dac390a2d32e5d832878,67a9bb757a8f728cb3404c1bfc4ac7e38015e227..760759b396752ca3c513c92ab5ea24654d2e7d26
        <string id="SUPPORTED_FF72">Firefox 72 或更新版本、Firefox 68.4 ESR 或更新版本</string>
        <string id="SUPPORTED_FF73">Firefox 73 或更新版本、Firefox 68.5 ESR 或更新版本</string>
        <string id="SUPPORTED_FF74">Firefox 74 或更新版本、Firefox 68.6 ESR 或更新版本</string>
+       <string id="SUPPORTED_FF75">Firefox 75 或更新版本、Firefox 68.7 ESR 或更新版本</string>
+       <string id="SUPPORTED_FF75_ONLY">Firefox 75 或更新版本</string>
+       <string id="SUPPORTED_FF76">Firefox 76 或更新版本、Firefox 68.8 ESR 或更新版本</string>
+       <string id="SUPPORTED_FF77">Firefox 77 或更新版本、Firefox 68.9 ESR 或更新版本</string>
        <string id="firefox">Firefox</string>
        <string id="Permissions_group">權限</string>
        <string id="Camera_group">攝影機</string>
        <string id="Homepage_group">首頁</string>
        <string id="Search_group">搜尋</string>
        <string id="Preferences_group">偏好設定</string>
+       <string id="UserMessaging_group">User Messaging</string>
        <string id="Allow">允許的網站</string>
        <string id="Block">封鎖的網站</string>
+       <string id="AppAutoUpdate">Application Autoupdate</string>
+       <string id="AppAutoUpdate_Explain">If this policy is enabled, Firefox is automatically updated without user approval.
+ If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+ If this policy is not configured, the user can choose whether not Firefox is automatically updated.</string>
        <string id="AppUpdateURL">自訂更新網址</string>
        <string id="AppUpdateURL_Explain">若啟用此原則,可指定用來檢查更新的伺服器網址。當您在內部網路自行架設更新伺服器時會有幫助。
  
@@@ -116,25 -127,7 +127,25 @@@ If this policy is enabled or not config
        <string id="DownloadDirectory_Explain">若啟用此原則,可設定並固定下載項目的預設儲存資料夾。可使用 ${home} 來指定家目錄。
  
  若停用或不設定此原則,將使用 Firefox 的預設下載資料夾,且可由使用者變更。</string>
 -      <string id="DNSOverHTTPS">設定 DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_group">DNS Over HTTPS</string>
 +      <string id="DNSOverHTTPS_Enabled">Enabled</string>
 +      <string id="DNSOverHTTPS_Enabled_Explain">If this policy is disabled, DNS over HTTPS is disabled.
 +
 +If this policy is enabled or not configured, DNS Over HTTPS is enabled.</string>
 +      <string id="DNSOverHTTPS_ProviderURL">Provider URL</string>
 +      <string id="DNSOverHTTPS_ProviderURL_Explain">If this policy is enabled, the URL specified is used as the provider URL.
 +
 +If this policy is disabled or not configured, the default provider is used.</string>
 +
 +      <string id="DNSOverHTTPS_Locked">Locked</string>
 +      <string id="DNSOverHTTPS_Locked_Explain">If this policy is enabled, DNS over HTTPS settings cannot be changed by the user.
 +
 +If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user.</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains">Excluded Domains</string>
 +      <string id="DNSOverHTTPS_ExcludedDomains_Explain">If this policy is enabled, the specified domains are excluded from DNS over HTTPS.
 +
 +If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS.</string>
 +      <string id="DNSOverHTTPS">設定 DNS Over HTTPS (Moved)</string>
        <string id="DNSOverHTTPS_Explain">若啟用此原則,可變更預設 DNS over HTTPS 設定。
  
  若停用或不設定此原則,將使用預設 DNS Over HTTPS 設定。</string>
        <string id="DisableBuiltinPDFViewer_Explain">若啟用此原則,將不會使用 Firefox 內建檢視器開啟 PDF 檔案。
  
  若停用或不設定此原則,則會使用 Firefox 內建檢視器開啟 PDF 檔案。</string>
+       <string id="DisableDefaultBrowserAgent">Disable the default browser agent.</string>
+       <string id="DisableDefaultBrowserAgent_Explain">If this policy is enabled, the default browser agent is disabled.
+ If this policy is disabled or not configured, the default browser agent is enabled.
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html</string>
        <string id="DisableDeveloperTools">停用開發者工具</string>
        <string id="DisableDeveloperTools_Explain">若啟用此原則,將關閉 Firefox 當中的網頁開發者工具功能。
  
@@@ -675,6 -674,22 +692,22 @@@ If this policy is disabled or not confi
        <string id="SupportMenu_Explain">若啟用此原則,將在說明選單中加入技術支援資訊項目。
  
  若停用或不設定此原則,則不會加入選單項目。</string>
+       <string id="UserMessaging_WhatsNew">What's New</string>
+       <string id="UserMessaging_WhatsNew_Explain">If this policy is disabled, the What's new icon and menuitem will not be displayed.
+ If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.</string>
+       <string id="UserMessaging_ExtensionRecommendations">Extension Recommendations</string>
+       <string id="UserMessaging_ExtensionRecommendations_Explain">If this policy is disabled, extensions will not be recommended as the user visits websites.
+ If this policy is enabled or not configured, extensions will be recommended as the user visits websites.</string>
+       <string id="UserMessaging_FeatureRecommendations">Feature Recommendations</string>
+       <string id="UserMessaging_FeatureRecommendations_Explain">If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+ If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.</string>
+       <string id="UserMessaging_UrlbarInterventions">Urlbar Interventions</string>
+       <string id="UserMessaging_UrlbarInterventions_Explain">If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+ If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.</string>
        <string id="Preferences_Boolean_Explain">若啟用此原則,偏好設定將鎖定為 true。若停用此原則,偏好設定則鎖定為 false。
  
  若需要偏好設定的詳細說明,請參考:
@@@ -964,14 -979,6 +997,14 @@@ https://github.com/mozilla/policy-templ
        <presentation id="DisplayMenuBar">
          <dropdownList refId="DisplayMenuBar"/>
        </presentation>
 +      <presentation id="String">
 +        <textBox refId="String">
 +          <label/>
 +        </textBox>
 +      </presentation>
 +      <presentation id="List">
 +        <listBox refId="List"/>
 +      </presentation>
      </presentationTable>
    </resources>
  </policyDefinitionResources>

patrick-canterino.de