From: Michael Kaply <345868+mkaply@users.noreply.github.com> Date: Wed, 20 May 2020 17:39:38 +0000 (-0500) Subject: Merge branch 'master' into intune X-Git-Tag: v1.17~8^2~2 X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/70e84384e23250d321dbdb368559da114a6ef2b5?hp=154620fa03a33d5fde4f9bdd999cce67cf5278ac Merge branch 'master' into intune --- diff --git a/README.md b/README.md index 50fb47f..c95e8f8 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g | **[`DisableMasterPasswordCreation`](#disablemasterpasswordcreation)** | Remove the master password functionality. | **[`DisableAppUpdate`](#disableappupdate)** | Turn off application updates. | **[`DisableBuiltinPDFViewer`](#disablebuiltinpdfviewer)** | Disable the built in PDF viewer. +| **[`DisabledCiphers`](#disabledciphers)** | Disable ciphers. | **[`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. @@ -932,6 +933,69 @@ Value (string): } } ``` +### DisabledCiphers +Disable specific cryptographic ciphers. + +**Compatibility:** Firefox 76, Firefox ESR 68.8\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** N/A + +#### Windows (GPO) +``` +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_DHE_RSA_WITH_AES_128_CBC_SHA = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_DHE_RSA_WITH_AES_256_CBC_SHA = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_RSA_WITH_AES_128_CBC_SHA = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_RSA_WITH_AES_256_CBC_SHA = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\DisabledCiphers\TLS_RSA_WITH_3DES_EDE_CBC_SHA = 0x1 | 0x0 +``` +#### macOS +``` + + DisabledCiphers + + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + | + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + | + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + | + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + | + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + | + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + | + TLS_RSA_WITH_AES_128_CBC_SHA + | + TLS_RSA_WITH_AES_256_CBC_SHA + | + TLS_RSA_WITH_3DES_EDE_CBC_SHA + | + + +``` +#### policies.json +``` +{ + "policies": { + "DisabledCiphers" { + "TLS_DHE_RSA_WITH_AES_128_CBC_SHA": true | false, + "TLS_DHE_RSA_WITH_AES_256_CBC_SHA": true | false, + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": true | false, + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": true | false, + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": true | false, + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": true | false, + "TLS_RSA_WITH_AES_128_CBC_SHA": true | false, + "TLS_RSA_WITH_AES_256_CBC_SHA": true | false, + "TLS_RSA_WITH_3DES_EDE_CBC_SHA": true | false + } + } +} +``` ### DisableDefaultBrowserAgent Prevent the default browser agent from taking any actions. Only applicable to Windows; other platforms don’t have the agent. @@ -2676,9 +2740,11 @@ Set permissions associated with camera, microphone, location, notifications, and `Locked` prevents the user from changing preferences for the feature. -**Compatibility:** Firefox 62, Firefox ESR 60.2 (Autoplay added in Firefox 74, Firefox ESR 68.6\ +`Default` specifies the default value for Autoplay. block-audio-video is not supported on Firefox ESR 68. + +**Compatibility:** Firefox 62, Firefox ESR 60.2 (Autoplay added in Firefox 74, Firefox ESR 68.6, Autoplay Default/Locked added in Firefox 76, Firefox ESR 68.8)\ **CCK2 Equivalent:** N/A\ -**Preferences Affected:** `permissions.default.camera`,`permissions.default.microphone`,`permissions.default.geo`,`permissions.default.desktop-notification` +**Preferences Affected:** `permissions.default.camera`,`permissions.default.microphone`,`permissions.default.geo`,`permissions.default.desktop-notification`,`media.autoplay.default` #### Windows (GPO) ``` @@ -2701,6 +2767,8 @@ Software\Policies\Mozilla\Firefox\Permissions\Notifications\BlockNewRequests = 0 Software\Policies\Mozilla\Firefox\Permissions\Notifications\Locked = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\Permissions\Autoplay\Allow\1 = "https://example.org" Software\Policies\Mozilla\Firefox\Permissions\Autoplay\Block\1 = "https://example.edu" +Software\Policies\Mozilla\Firefox\Permissions\Autoplay\Default = "allow-audio-video" | "block-audio" | "block-audio-video" +Software\Policies\Mozilla\Firefox\Permissions\Autoplay\Locked = 0x1 | 0x0 ``` #### Windows (Intune) OMA-URI: @@ -2770,9 +2838,9 @@ Value (string): https://example.edu BlockNewRequests - + | Locked - + | Microphone @@ -2785,9 +2853,9 @@ Value (string): https://example.edu BlockNewRequests - + | Locked - + | Location @@ -2800,9 +2868,9 @@ Value (string): https://example.edu BlockNewRequests - + | Locked - + | Notifications @@ -2829,6 +2897,10 @@ Value (string): https://example.edu + Default + allow-audio-video | block-audio | block-audio-video + Locked + | @@ -2864,7 +2936,9 @@ Value (string): }, "Autoplay": { "Allow": ["https://example.org"], - "Block": ["https://example.edu"] + "Block": ["https://example.edu"], + "Default": "allow-audio-video" | "block-audio" | "block-audio-video", + "Locked": true | false } } } @@ -3018,7 +3092,7 @@ disabled |     If set to Select Automatically, Firefox automatically chooses the default personal certificate. | security.mixed_content.block_active_content | boolean | Firefox 70, Firefox ESR 68.2 | true |     If false, mixed active content (HTTP and HTTPS) is not blocked. -| security.osclientcerts.autoload | boolean | Firefox 72, Firefox ESR 68.4 (Windows only) | false +| security.osclientcerts.autoload | boolean | Firefox 72 (Windows), Firefox 75 (macOS) | false |     If true, client certificates are loaded from the operating system certificate store. | security.ssl.errorReporting.enabled | boolean | Firefox 68, Firefox ESR 68 | true |     If false, SSL errors cannot be sent to Mozilla. diff --git a/mac/org.mozilla.firefox.plist b/mac/org.mozilla.firefox.plist index 7d57042..c0de609 100644 --- a/mac/org.mozilla.firefox.plist +++ b/mac/org.mozilla.firefox.plist @@ -131,6 +131,27 @@ DisableBuiltinPDFViewer + DisabledCiphers + + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + + TLS_RSA_WITH_AES_128_CBC_SHA + + TLS_RSA_WITH_AES_256_CBC_SHA + + TLS_RSA_WITH_3DES_EDE_CBC_SHA + + DisableDeveloperTools DisableFeedbackCommands @@ -377,6 +398,10 @@ https://example.edu + Default + block-audio + Locked + PopupBlocking diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml index 0e7533f..e839cec 100644 --- a/windows/de-DE/firefox.adml +++ b/windows/de-DE/firefox.adml @@ -1,5 +1,5 @@ - + @@ -26,6 +26,7 @@ Firefox 75 oder höher Firefox 76 oder höher, Firefox 68.8 ESR oder höher Firefox 77 oder höher, Firefox 68.9 ESR oder höher + Firefox 78 oder höher Firefox Berechtigungen Kamera @@ -44,13 +45,14 @@ Startseite Suche Einstellungen - User Messaging + Benutzer-Benachrichtigungen + Disabled Ciphers Erlaubte Seiten Gesperrte Seiten Automatisches Update Wenn diese Richtlinieneinstellung aktiviert ist, wird Firefox automatisch ohne Zustimmung des Benutzers aktualisiert. -Wenn diese Richtlinieneinstellung deaktiviert ist, werden Firefox-Updates heruntergeladen, aber der Benutzer kann wählen, wann das Update installiert werden soll. +Wenn diese Richtlinieneinstellung deaktiviert ist, werden Firefox-Updates heruntergeladen, aber der Benutzer startet die Update-Installation manuell. Die Schaltfläche zur Installation erscheint bei Verfügbarkeit des Updates. Wenn diese Richtlinieneinstellung nicht konfiguriert ist, kann der Benutzer wählen, ob Firefox automatisch aktualisiert wird oder nicht. Benutzerdefinierte Update-URL @@ -84,9 +86,9 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, sind Wenn diese Richtlinieneinstellung aktiviert (und das Kontrollkästchen aktiviert) oder nicht konfiguriert ist, findet SPNEGO und NTLM Authentifizierung gegenüber einem Proxy statt. Änderungen an Authentifizierungseinstellungen verbieten - Wenn diese Gruppenrichtlinie deaktiviert ist, können Nutzer Änderungen an den Einstellungen zur Authentifizierung vornehmen. + Wenn diese Richtlinieneinstellung deaktiviert ist, können Nutzer Änderungen an den Einstellungen zur Authentifizierung vornehmen. -Wenn diese Gruppenrichtlinieneinstellung aktiviert oder nicht konfiguriert ist, können Nutzer Einstellungen zur Authentifizierung nicht ändern. +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, können Nutzer Einstellungen zur Authentifizierung nicht ändern. Zugriff auf Add-ons Manager verhindern Wenn Sie die Richtlinieneinstellung aktivieren, können Benutzer nicht auf den Add-on Manager oder about:addons zugreifen. @@ -198,9 +200,9 @@ Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, steht Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, Firefox wird eine Chronik anlegen. Verbieten, dass Nutzer Passwörter in Gespeicherte Zugangsdaten anzeigen können - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, können Nutzer Gespeicherte Zugangsdaten nicht anzeigen lassen. + Wenn diese Richtlinieneinstellung aktiviert ist, können Nutzer Gespeicherte Zugangsdaten nicht anzeigen lassen. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Nutzer Gespeicherte Zugangsdaten anzeigen lassen. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Nutzer Gespeicherte Zugangsdaten anzeigen lassen. Pocket für Firefox deaktivieren Wenn Sie die Richtlinieneinstellung aktivieren, steht Pocket nicht zur Verfügung. @@ -287,14 +289,14 @@ Für detalierte Informationen bitte die Dokumentation (in Englischer Sprache) le Wenn Sie die Richtlinieneinstellung deaktivieren, wird die Hardware-Beschleunigung deaktiviert. Wenn Sie die Richtlinieneinstellung aktivieren oder nicht konfigurieren, wird die Hardware-Beschleunigung aktiviert. - Legacy Profile - Wenn diese Richtlinieneinstellung aktiviert ist, wird Firefox keine seperaten Profile bei mehreren parallelen Installationen anlegen. Diese Einstellung equivalent zu der Umgebungsvariable MOZ_LEGACY_PROFILES. + Separate Profile + Wenn diese Richtlinieneinstellung aktiviert ist, wird Firefox keine seperaten Profile bei mehreren parallelen Installationen anlegen. Diese Einstellung ist equivalent zu der Umgebungsvariable MOZ_LEGACY_PROFILES. Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird Firefox seperate Profile für jede Installation anlegen. - Local File Links - If this policy is enabled, you can specify origins where linking to local files is allowed. + Links zu lokalen Dateien + Wenn diese Richtlinieneinstellung aktiviert ist, können Sie die Quellen angeben, von denen Links auf lokale Dateien erlaubt sind. -If this policy is disabled or not configured, websites can't link to local files. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Websites nicht auf lokale Dateien verlinken. Network Prediction Wenn Sie die Richtlinieneinstellung deaktivieren, wird Network Prediction (DNS prefetching) deaktiviert. @@ -312,7 +314,7 @@ Wenn Sie die Richtlinieneinstellung deaktivieren, fordert Firefox nicht zum Spei Wenn Sie die Richtlinieneinstellung deaktivieren, fordert Firefox nicht zum Speichern von Logindaten und Passwörtern auf. -In either case, the user will be able to change the value (it is not locked). +In beiden Fällen kann der Benutzer den Wert ändern (er ist nicht gesperrt). Wenn Sie die Richtlinieneinstellung aktivieren, sind Popup-Fenster für die angegebenen URLs immer erlaubt. Wenn eine Top-Level-Domain angegeben ist (http://example.org), sind Popup-Fenster für alle Subdomains ebenfalls zulässig. Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird die Standard Popup-Fenster Richtlinie angewendet. @@ -415,13 +417,26 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, kann Änderung der Einstellungen verbieten Wenn diese Richtlinieneinstellung aktiviert ist, können die Einstellungen zu Benachrichtigungen nicht vom Anwender geändert werden. -Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Nutzer seine Einstellungen zu Benachrichtigungen ändern. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Nutzer ihre Einstellungen zu Benachrichtigungen ändern. Wenn diese Richtlinieneinstellung aktiviert ist, ist die Automatische Wiedergabe von Medien für die angegebenen Quellen immer aktiviert. Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird die Standardeinstellung zur Automatischen Wiedergabe von Medien befolgt. Wenn diese Richtlinieneinstellung aktiviert ist, ist die Automatische Wiedergabe für die genannten Quellen immer deaktiviert. Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert, wird die Standardeinstellung zur Automatischen Wiedergabe von Medien befolgt. + Standardmäßige Autoplay-Einstellungen + Wenn diese Richtlinieneinstellung aktiviert ist, sind die Einstellungen zu Autoplay festgesetzt. + +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, ist die Automatische Audiowiedergabe standardmäßig blockiert. + +Wichtig: Diese Richtlinieneinstellung funktioniert nicht mit Mozilla Firefox ESR. + Änderung der Einstellungen verbieten + Wenn diese Richtlinieneinstellung aktiviert ist, können die Einstellungen zu Autoplay nicht vom Anwender geändert werden. + +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Nutzer ihre Einstellungen zu Autoplay ändern. + Automatische Audio- und Videowiedergabe erlauben + Automatische Audiowiedergabe blockieren + Automatische Audio- und Videowiedergabe blockieren Firefox Home anpassen Wenn diese Richtlinieneinstellung aktiviert ist, können die Sektionen festgelegt werden, die der Anwender sieht und der Anwender kann diese nicht mehr anpassen. @@ -457,41 +472,41 @@ Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, wird Browserdaten löschen, wenn der Browser geschlossen wird Cache - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, wird der Cache gelöscht, wenn der Browser geschlossen wird. + Wenn diese Richtlinieneinstellung aktiviert ist, wird der Cache gelöscht, wenn der Browser geschlossen wird. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird der Cache nicht gelöscht wenn der Browser geschlossen wird. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird der Cache nicht gelöscht wenn der Browser geschlossen wird. Cookies - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden Cookies gelöscht, wenn der Browser geschlossen wird. + Wenn diese Richtlinieneinstellung aktiviert ist, werden Cookies gelöscht, wenn der Browser geschlossen wird. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden die Cookies nicht gelöscht wenn der Browser geschlossen wird. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden die Cookies nicht gelöscht wenn der Browser geschlossen wird. Download Historie - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, wird die Download Historie gelöscht, wenn der Browser geschlossen wird. + Wenn diese Richtlinieneinstellung aktiviert ist, wird die Download Historie gelöscht, wenn der Browser geschlossen wird. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird die Download Historie nicht gelöscht, wenn der Browser geschlossen wird. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird die Download Historie nicht gelöscht, wenn der Browser geschlossen wird. Eingegebene Suchbegriffe und Formulardaten Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden eingegebene Suchbegriffe und Formulardaten gelöscht, wenn der Browser geschlossen wird. Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden eingegebene Suchbegriffe und Formulardaten nicht gelöscht, wenn der Browser geschlossen wird. Chronik - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, wird die Chronik gelöscht wenn der Browser geschlossen wird. + Wenn diese Richtlinieneinstellung aktiviert ist, wird die Chronik gelöscht wenn der Browser geschlossen wird. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird die Chronik nicht gelöscht wenn der Browser geschlossen wird. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird die Chronik nicht gelöscht wenn der Browser geschlossen wird. Gespeicherte Logins - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden gespeicherte Logins gelöscht nachdem der Browser geschlossen wurde. + Wenn diese Richtlinieneinstellung aktiviert ist, werden gespeicherte Logins gelöscht nachdem der Browser geschlossen wurde. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden gespeicherte Logins nicht gelöscht nachdem der Browser geschlossen wurde. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden gespeicherte Logins nicht gelöscht nachdem der Browser geschlossen wurde. Website-Einstellungen - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden Website-Einstellungen nicht gelöscht, wenn der Browser geschlossen wird. + Wenn diese Richtlinieneinstellung aktiviert ist, werden Website-Einstellungen nicht gelöscht, wenn der Browser geschlossen wird. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Website-Einstellungen nicht gelöscht nachdem der Browser geschlossen wurde. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Website-Einstellungen nicht gelöscht nachdem der Browser geschlossen wurde. Offline Website Daten - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden Offline Website-Daten gelöscht wenn der Browser geschlossen wird. + Wenn diese Richtlinieneinstellung aktiviert ist, werden Offline Website-Daten gelöscht wenn der Browser geschlossen wird. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Offline Website-Daten nicht gelöscht wenn der Browser geschlossen wird. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Offline Website-Daten nicht gelöscht wenn der Browser geschlossen wird. Locked - Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert sind, können alle Einstellungen vom Nutzer geändert werden. + Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert sind, können alle Einstellungen vom Nutzer geändert werden. -Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, können Einstellungen vom Nutzer nicht geändert werden. +Wenn diese Richtlinieneinstellung aktiviert ist, können Einstellungen vom Nutzer nicht geändert werden. Gesperrte Webseites Wenn Sie die Richtlinieneinstellung aktivieren, können Sie die Übereinstimmungsmuster für zu blockierende Webseiten angeben. Die Übereinstimmungsmuster sind unter https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns dokumentiert. Derzeit werden nur http / https-Zugriffe unterstützt. Es gibt eine Beschränkung von 1000 Einträgen. @@ -576,10 +591,10 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird Leere Seite Startseite Letzte Sitzung - Password Manager - If this policy is disabled, the password manager is not available via preferences. + Passwort-Manager + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der Passwort-Manager nicht über die Einstellungen verfügbar. -If this policy is enabled or not configured, the password manager is available via preferences. +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, ist der Passwort-Manager über die Einstellungen verfügbar. Abfrage des Download Verzeichnisses Wenn diese Richtlinieneinstellung deaktiviert ist, wird der Nutzer nicht nach einem Verzeichnis für den Download gefragt. @@ -612,36 +627,36 @@ Wenn Sie die Richtlinieneinstellung deaktivieren, ist der Aktivitäten-Verfolgun Wenn Sie die Richtlinieneinstellung aktivieren, privates Surfen ist sowohl im Browser als auch im privaten Browser standardmäßig aktiviert, und Sie können festlegen, ob der Benutzer die Änderung ändern soll oder nicht Tracking Protection Aktiviert - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, ist der Schutz vor Aktivitätenverfolgung aktiviert. + Wenn diese Richtlinieneinstellung aktiviert ist, ist der Schutz vor Aktivitätenverfolgung aktiviert. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert ist, ist der Schutz vor Aktivitätenverfolgung deaktiviert und kann nicht vom Nutzer aktiviert werden. +Wenn diese Richtlinieneinstellung deaktiviert ist, ist der Schutz vor Aktivitätenverfolgung deaktiviert und kann nicht vom Nutzer aktiviert werden. -Wenn diese Gruppenrichtlinieneinstellung nicht konfiguriert ist, sind die Standardeinstellungen zum Schutz vor Aktivitätenverfolgung aktiviert und der Nutzer kann die Einstellungen ändern. +Wenn diese Richtlinieneinstellung nicht konfiguriert ist, sind die Standardeinstellungen zum Schutz vor Aktivitätenverfolgung aktiviert und der Nutzer kann die Einstellungen ändern. Cryptomining - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden Cryptomining-Skripte blockiert. + Wenn diese Richtlinieneinstellung aktiviert ist, werden Cryptomining-Skripte blockiert. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Cryptomining-Skripte nicht blockiert. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Cryptomining-Skripte nicht blockiert. Fingerprinting - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, werden Fingerprinting-Skripte blockiert. + Wenn diese Richtlinieneinstellung aktiviert ist, werden Fingerprinting-Skripte blockiert. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Fingerprinting-Skripte nicht blockiert. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden Fingerprinting-Skripte nicht blockiert. Ausnahmen - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, können Ausnahmen-Seiten definiert werden, bei denen der Schutz vor Aktivitätenverfolgung deaktiviert ist. + Wenn diese Richtlinieneinstellung aktiviert ist, können Ausnahmen-Seiten definiert werden, bei denen der Schutz vor Aktivitätenverfolgung deaktiviert ist. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, gelten die gesetzten Einstellungen für alle Webseiten. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, gelten die gesetzten Einstellungen für alle Webseiten. Änderungen an den Einstellungen zum Schutz vor Aktivitätenverfolgung verbieten - Wenn diese Gruppenrichtlinieneinstellung aktiviert ist, können Nutzer keine Änderungen an den Einstellungen zum Schutz vor Aktivitätenverfolgung vornehmen. + Wenn diese Richtlinieneinstellung aktiviert ist, können Nutzer keine Änderungen an den Einstellungen zum Schutz vor Aktivitätenverfolgung vornehmen. -Wenn diese Gruppenrichtlinieneinstellung deaktiviert oder nicht konfiguriert ist, kann der Nutzer Änderungen an den Einstellungen vornehmen. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, kann der Nutzer Änderungen an den Einstellungen vornehmen. Requested locale - Requested locale (string) - If this policy is enabled, you can specify a list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active. + Angefordertes Gebietsschema (Zeichenfolge) + Wenn diese Richtlinieneinstellung aktiviert ist, können Sie eine Liste der angeforderten Gebietsschemata für die Anwendung in der Reihenfolge ihrer Präferenz angeben. Dadurch wird das entsprechende Sprachpaket aktiv. -If this policy is disabled or not configured, the application will use the default locale. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, verwendet die Anwendung das Standardgebietsschema. Sicherheitsgeräte - Wenn diese Richtlinie aktiviert ist, können Sie eine Liste mit PKCS #11 Modulen definieren. Module werden mit einem Namen und einem qualifizierten Pfad benannt. + Wenn diese Richtlinieneinstellung aktiviert ist, können Sie eine Liste mit PKCS #11 Modulen definieren. Module werden mit einem Namen und einem qualifizierten Pfad benannt. -Wenn diese Richtlinie deaktiviert oder nicht konfiguriert ist, werden keine weiteren PKCS #11 Module installiert. +Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, werden keine weiteren PKCS #11 Module installiert. Position der Suchleiste Wenn Sie die Richtlinieneinstellung aktivieren, können Sie festlegen, ob die Suchleiste von der Adressleiste getrennt ist. @@ -704,10 +719,46 @@ Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, werden Wenn diese Richtlinieneinstellung deaktiviert ist, werden die Funktionen von Firefox nicht empfohlen, wenn der Benutzer Firefox verwendet. Wenn diese Richtlinie aktiviert oder nicht konfiguriert ist, werden Firefox-Funktionen empfohlen, wenn der Benutzer Firefox verwendet. - Urlbar Interventions - If this policy is disabled, actions will not be recommended based on what the user types in the URL bar. + Adressleisten-Empfehlungen + Wenn diese Richtlinieneinstellung deaktiviert ist, werden basierend darauf, was der Benutzer in die Adressleiste eingibt, keine Aktionen empfohlen. + +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, werden Aktionen empfohlen, die darauf basieren, was der Benutzer in die Adressleiste eingibt. + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_DHE_RSA_WITH_AES_128_CBC_SHA Cipher deaktiviert. + +Wenn diese Richtlinieneinstellung aktiviert oder nicht konfiguriert ist, ist der TLS_DHE_RSA_WITH_AES_128_CBC_SHA Cipher aktiviert. + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_DHE_RSA_WITH_AES_256_CBC_SHA Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA Cipher aktiviert. + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA Cipher aktiviert. + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA Cipher deaktiviert. -If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar. +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA Cipher aktiviert. + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 Cipher aktiviert. + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 Cipher aktiviert. + TLS_RSA_WITH_AES_128_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_RSA_WITH_AES_128_CBC_SHA Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_128_CBC_SHA Cipher aktiviert. + TLS_RSA_WITH_AES_256_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_RSA_WITH_AES_256_CBC_SHA Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_256_CBC_SHA Cipher aktiviert. + TLS_RSA_WITH_3DES_EDE_CBC_SHA + Wenn diese Richtlinieneinstellung deaktiviert ist, ist der TLS_RSA_WITH_3DES_EDE_CBC_SHA Cipher deaktiviert. + +If this policy is enabled or not configured, the TLS_RSA_WITH_3DES_EDE_CBC_SHA Cipher aktiviert. 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: @@ -789,12 +840,12 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences (E - Always allow NTLM on non FQDNs - Always allow SPNEGO on non FQDNs + NTLM immer auf Nicht-FQDNs zulassen + SPNEGO immer auf Nicht-FQDNs zulassen - Allow NTLM to automatically authenticate with proxy servers - Allow SPNEGO to automatically authenticate with proxy servers + Erlauben Sie NTLM, sich automatisch bei Proxy-Servern zu authentifizieren + Erlauben Sie SPNEGO, sich automatisch bei Proxy-Servern zu authentifizieren @@ -821,8 +872,8 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences (E Änderungen am Schutz vor Aktivitäten Verfolgung nicht erlauben - Block cryptomining scripts. - Block fingerprinting scripts. + Cryptomining-Skripte blockieren. + Fingerprinting-Skripte blockieren. Exceptions: @@ -856,7 +907,7 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences (E - Favicon Adesse: + Favicon Adresse: @@ -940,8 +991,8 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences (E - DNS over HTTPS aktivieren. - Änderungen an den DNS over HTTPS Einstellungen nicht erlauben. + DNS über HTTPS aktivieren. + Änderungen an den DNS über HTTPS Einstellungen nicht erlauben. @@ -1006,6 +1057,9 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences (E + + + diff --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml index ab98ec6..4156ad7 100644 --- a/windows/en-US/firefox.adml +++ b/windows/en-US/firefox.adml @@ -1,5 +1,5 @@ - + @@ -26,6 +26,7 @@ Firefox 75 or later Firefox 76 or later, Firefox 68.8 ESR or later Firefox 77 or later, Firefox 68.9 ESR or later + Firefox 78 or later Firefox Permissions Camera @@ -45,6 +46,7 @@ Search Preferences User Messaging + Disabled Ciphers Allowed Sites Blocked Sites Application Autoupdate @@ -422,6 +424,19 @@ If this policy is disabled or not configured, the default autoplay policy is fol If this policy is enabled, autoplay is always blocked for the origins indicated. If this policy is disabled or not configured, the default autoplay policy is followed. + Default autoplay level + If this policy is enabled, you can choose the default autoplay level. + +If this policy is disabled or not configured, audio is blocked by default. + +Note: Blocking audio and video does not work on the ESR. + Do not allow preferences to be changed + If this policy is enabled, autoplay preferences cannot be changed by the user. + +If this policy is disabled or not configured, the user can change autoplay preferences. + Allow Audio and Video + Block Audio + Block Audio and Video Customize Firefox Home If this policy is enabled, you can choose the sections displayed on Firefox Home and prevent the user from changing them. @@ -710,6 +725,42 @@ If this policy is enabled or not configured, Firefox features wil be recommended 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. + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 cipher is enabled. + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + If this policy is disabled, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 cipher is enabled. + TLS_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_RSA_WITH_3DES_EDE_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher is enabled. 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: @@ -1007,6 +1058,9 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences. + + + diff --git a/windows/es-ES/firefox.adml b/windows/es-ES/firefox.adml index c450a0f..0a0bc90 100644 --- a/windows/es-ES/firefox.adml +++ b/windows/es-ES/firefox.adml @@ -1,5 +1,5 @@ - + @@ -26,6 +26,7 @@ Firefox 75 o posterior Firefox 76 o posterior, Firefox 68.8 ESR o posterior Firefox 77 o posterior, Firefox 68.9 ESR o posterior + Firefox 78 o posterior Firefox Permisos Cámara @@ -45,6 +46,7 @@ Búsqueda Preferencias User Messaging + Disabled Ciphers Sitios permitidos Sitios bloqueados Application Autoupdate @@ -422,6 +424,19 @@ Si esta política está deshabilitada o no está configurada, se seguirá la pol Si esta política está habilitada, la reproducción automática siempre se bloqueará para los orígenes indicados. Si esta política está deshabilitada o no está configurada, se seguirá la política predeterminada de reproducción automática. + Default autoplay level + If this policy is enabled, you can choose the default autoplay level. + +If this policy is disabled or not configured, audio is blocked by default. + +Note: Blocking audio and video does not work on the ESR. + Do not allow preferences to be changed + If this policy is enabled, autoplay preferences cannot be changed by the user. + +If this policy is disabled or not configured, the user can change autoplay preferences. + Allow Audio and Video + Block Audio + Block Audio and Video Personalizar inicio de Firefox Si esta política está habilitada, podrá elegir las secciones que se muestran en la página de inicio de Firefox e impedir que el usuario las cambie. @@ -710,6 +725,42 @@ If this policy is enabled or not configured, Firefox features wil be recommended 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. + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 cipher is enabled. + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + If this policy is disabled, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 cipher is enabled. + TLS_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_RSA_WITH_3DES_EDE_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher is enabled. 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: @@ -1007,6 +1058,9 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences + + + diff --git a/windows/firefox.admx b/windows/firefox.admx index 4b03aab..3432bbd 100644 --- a/windows/firefox.admx +++ b/windows/firefox.admx @@ -1,10 +1,10 @@  - + - + @@ -28,6 +28,7 @@ + @@ -97,6 +98,9 @@ + + + @@ -478,6 +482,39 @@ + + + + + + + + + + + + + + + + + + allow-audio-video + + + + + block-audio + + + + + block-audio-video + + + + + @@ -3397,5 +3434,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml index 18ff353..1f19c9a 100644 --- a/windows/fr-FR/firefox.adml +++ b/windows/fr-FR/firefox.adml @@ -1,5 +1,5 @@ - + @@ -26,6 +26,7 @@ Firefox 75 ou supérieur Firefox 76 ou supérieur, Firefox 68.8 ESR ou supérieur Firefox 77 ou supérieur, Firefox 68.9 ESR ou supérieur + Firefox 78 ou supérieur Firefox Permissions Caméra @@ -45,14 +46,15 @@ Recherche Préférences User Messaging + Disabled Ciphers Sites autorisés Sites bloqués Application Autoupdate - If this policy is enabled, Firefox is automatically updated without user approval. + Si cette stratégie est activée, Firefox est automatiquement mis a jour sans aprobation de l'utilisateur. -If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update. +Si cette politique est désactivée, les mises à jour de Firefox sont téléchargées mais l'utilisateur peut choisir quand installer la mise à jour. -If this policy is not configured, the user can choose whether not Firefox is automatically updated. +Si cette politique n'est pas configurée, l'utilisateur peut choisir de ne pas automatiquement mettre à jour Firefox. URL de mise à jour personnalisée 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. @@ -79,14 +81,14 @@ Pour plus d'informations, voir https://developer.mozilla.org/en-US/docs/Mozilla/ Si cette stratégie est activée, vous pouvez toujours autoriser SPNEGO ou NTLM sur des noms de domaine autres que FQDN. Si cette stratégie est désactivée ou non configurée, NTLM et SPNEGO ne sont pas activés sur des noms de domaine autres que le nom de domaine complet. - Allow Proxies - If this disabled, SPNEGO and NTLM will not authenticate with proxy servers. + Autoriser les proxys + Si cette option est désactivée, SPNEGO et NTLM ne s'authentifieront pas auprès des serveurs proxy. -If this policy is enabled (and the checkboxes are checked) or not configured, NTLM and SPNEGO will always authenticate with proxies. - Do not allow authentication preferences to be changed - If this policy is disabled, authentication preferences can be changed by the user. +If this policy is activé (et les cases à cocher sont cochées) ou non configuré, NTLM et SPNEGO s'authentifieront toujours avec des proxys. + Ne pas autoriser la modification des préférences d'authentification + Si cette stratégie est désactivée, les préférences d'authentification peuvent être modifiées par l'utilisateur. -If this policy is enabled or not configured, authentication preferences cannot be changed by the user. +Si cette stratégie est activée ou non configurée, les préférences d'authentification ne peuvent pas être modifiées par l'utilisateur. Gestion de modules Add-ons Si cette stratégie est activée, l'utilisateur ne peut pas accéder au gestionnaire de modules complémentaires ou aux modules add:. @@ -103,7 +105,7 @@ Si cette stratégie est désactivée ou non configurée, l'utilisateur peut acc Si cette stratégie est activée, l'utilisateur ne peut pas accéder aux informations de dépannage ou à about:support. Si cette stratégie est désactivée ou non configurée, l'utilisateur peut accéder aux informations de dépannage et à about:support. - ​​Désactiver la définition de l'arrière-plan du bureau + Désactiver la définition de l'arrière-plan du bureau Si cette stratégie est activée, l'utilisateur ne peut pas définir une image comme arrière-plan de leur bureau. Si cette stratégie est désactivée ou non configurée, les utilisateurs peuvent définir des images comme arrière-plan de leur bureau. @@ -127,24 +129,24 @@ Si cette stratégie est désactivée ou non configurée, le répertoire de tél 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. 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. - DNS Over HTTPS - Enabled - If this policy is disabled, DNS over HTTPS is disabled. + DNS sur HTTPS + Activé + Si cette stratégie est désactivée, DNS sur HTTPS est désactivé. -If this policy is enabled or not configured, DNS Over HTTPS is enabled. +Si cette stratégie est activée ou non configurée, DNS sur HTTPS est activé. Provider URL - If this policy is enabled, the URL specified is used as the provider URL. + Si cette stratégie est activée, l'URL spécifiée est utilisée comme URL du fournisseur. -If this policy is disabled or not configured, the default provider is used. +Si cette stratégie est désactivée ou n'est pas configurée, le fournisseur par défaut est utilisé. - Locked - If this policy is enabled, DNS over HTTPS settings cannot be changed by the user. + Bloqué + Si cette stratégie est activée, les paramètres DNS sur HTTPS ne peuvent pas être modifiés par l'utilisateur. -If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user. - Excluded Domains - If this policy is enabled, the specified domains are excluded from DNS over HTTPS. +Si cette stratégie est désactivée ou non configurée, les paramètres DNS sur HTTPS peuvent être modifiés par l'utilisateur. + Domaines exclus + Si cette stratégie est activée, les domaines spécifiés sont exclus de DNS sur HTTPS. -If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS. +Si cette stratégie est désactivée ou n'est pas configurée, aucun domaine n'est exclu de DNS via HTTPS. Configurer DNS sur HTTPS (Moved) Si cette stratégie est activée, la configuration par défaut de DNS sur HTTPS peut être modifiée. @@ -161,12 +163,12 @@ Si cette stratégie est désactivée ou non configurée, le navigateur reçoit l Si cette stratégie est activée, les fichiers PDF ne sont pas visualisés dans Firefox. Si cette stratégie est désactivée ou non configurée, les fichiers PDF sont visualisés dans Firefox. - Disable the default browser agent. - If this policy is enabled, the default browser agent is disabled. + Désactivez l'agent de navigateur par défaut. + Si cette stratégie est activée, l'agent de navigateur par défaut est désactivé. -If this policy is disabled or not configured, the default browser agent is enabled. +Si cette stratégie est désactivée ou n'est pas configurée, l'agent de navigateur par défaut est activé. -For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html +Pour plus d'informations sur l'agent de navigateur par défaut, consultez https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html Désactiver les outils de développement Si cette stratégie est activée, les outils de développement Web ne sont pas disponibles dans Firefox. @@ -197,10 +199,10 @@ Si cette stratégie est désactivée ou non configurée, le bouton "Forget" est Si cette stratégie est activée, Firefox ne conservera pas l'historique du formulaire ou de la recherche. Si cette stratégie est désactivée ou non configurée, Firefox conservera l'historique des formulaires et des recherches. - Do not allow passwords to be revealed in saved logins - If this policy is enabled, users cannot show passwords in saved logins. + Ne pas autoriser la révélation des mots de passe dans les connexions enregistrées + Si cette stratégie est activée, les utilisateurs ne peuvent pas afficher les mots de passe dans les connexions enregistrées. -If this policy is disabled or not configured, users can show passwords in saved logins. +Si cette stratégie est désactivée ou non configurée, les utilisateurs peuvent afficher les mots de passe dans les connexions enregistrées. Désactiver Pocket Si cette stratégie est activée, Pocket n'est pas disponible. @@ -247,14 +249,14 @@ Si cette stratégie est désactivée ou non configurée, la barre d’outils des Si cette stratégie est activée, la barre de menus est affichée par défaut. L'utilisateur peut toujours le cacher. Si cette stratégie est désactivée ou non configurée, la barre de menus ne s'affiche pas par défaut. - Display Menu Bar - If this policy is enabled, you can choose whether or not the menu bar is displayed and whether or not the user can show and hide the menu bar. - -If this policy is disabled or not configured, the menu bar is not displayed by default. - Always - Never - On by default - Off by default + Afficher la barre de menus + Si cette stratégie est activée, vous pouvez choisir d'afficher ou non la barre de menus et l'utilisateur peut afficher et masquer la barre de menus. + +Si cette stratégie est désactivée ou n'est pas configurée, la barre de menus ne s'affiche pas par défaut. + Toujours + Jamais + Affichée par défaut + Masquée par défaut Ne pas vérifier le navigateur par défaut Si cette stratégie est activée, Firefox ne vérifie pas s'il s'agit du navigateur par défaut au démarrage. @@ -287,14 +289,14 @@ Pour plus d'informations sur la création d'une stratégie, voir https://github. Si cette stratégie est désactivée, l'accélération matérielle ne peut pas être activée. Si cette stratégie est activée ou non configurée, l'accélération matérielle est activée. - Legacy Profiles - If this policy is enabled, Firefox will not try to create different profiles for installations of Firefox in different directories. This is the equivalent of the MOZ_LEGACY_PROFILES environment variable. + Profils hérités + Si cette stratégie est activée, Firefox n'essaiera pas de créer des profils différents pour les installations de Firefox dans différents répertoires. C'est l'équivalent de la variable d'environnement MOZ_LEGACY_PROFILES. -If this policy is disabled or not configured, Firefox will create a new profile for each unique installation of Firefox. - Local File Links - If this policy is enabled, you can specify origins where linking to local files is allowed. +Si cette stratégie est désactivée ou non configurée, Firefox créera un nouveau profil pour chaque installation unique de Firefox. + Liens de fichiers locaux + Si cette stratégie est activée, vous pouvez spécifier les origines où la liaison à des fichiers locaux est autorisée. -If this policy is disabled or not configured, websites can't link to local files. +Si cette stratégie est désactivée ou n'est pas configurée, les sites Web ne peuvent pas créer de lien vers des fichiers locaux. Découverte réseau Si cette stratégie est désactivée, la découverte réseau (préférence DNS) sera désactivée. @@ -312,7 +314,7 @@ Si cette stratégie est désactivée, Firefox ne proposera pas de sauvegarder le Si cette stratégie est désactivée, Firefox ne proposera pas de sauvegarder les noms de connexion et les mots de passe des sites Web. -In either case, the user will be able to change the value (it is not locked). +Dans les deux cas, l'utilisateur pourra modifier la valeur (elle n'est pas verrouillée). Si cette stratégie est activée, les fenêtres contextuelles sont toujours autorisées pour les origines indiquées. Si un domaine de premier niveau est spécifié (http://example.org), les fenêtres contextuelles sont également autorisées pour tous les sous-domaines. Si cette stratégie est désactivée ou non configurée, la stratégie par défaut des fenêtres contextuelles est suivie. @@ -416,16 +418,29 @@ Si cette stratégie est désactivée ou non configurée, tout site ne figurant p Si cette stratégie est activée, les préférences de notification ne peuvent pas être modifiées par l'utilisateur. Si cette stratégie est désactivée ou non configurée, l'utilisateur peut modifier ses préférences de notification. - If this policy is enabled, autoplay is always enabled for the origins indicated. + Si cette stratégie est activée, la lecture automatique est toujours activée pour les origines indiquées. -If this policy is disabled or not configured, the default autoplay policy is followed. - If this policy is enabled, autoplay is always blocked for the origins indicated. +Si cette stratégie est désactivée ou n'est pas configurée, la stratégie de lecture automatique par défaut est appliquée. + Si cette stratégie est activée, la lecture automatique est toujours bloquée pour les origines indiquées. -If this policy is disabled or not configured, the default autoplay policy is followed. - Customize Firefox Home - If this policy is enabled, you can choose the sections displayed on Firefox Home and prevent the user from changing them. +Si cette stratégie est désactivée ou n'est pas configurée, la stratégie de lecture automatique par défaut est appliquée. + Niveau de lecture automatique par défaut + Si cette stratégie est activée, vous pouvez choisir le niveau de lecture automatique par défaut. -If this policy is disabled or not configured, the default sections are displayed and the user can change them. +Si cette stratégie est désactivée ou n'est pas configurée, l'audio est bloqué par défaut. + +Remarque: le blocage de l'audio et de la vidéo ne fonctionne pas sur l'ESR. + Ne pas autoriser la modification des préférences + Si cette stratégie est activée, les préférences de lecture automatique ne peuvent pas être modifiées par l'utilisateur. + +Si cette stratégie est désactivée ou n'est pas configurée, l'utilisateur peut modifier les préférences de lecture automatique. + Autoriser l'audio et la vidéo + Bloquer l'audio + Bloquer l'audio et la vidéo + Personnaliser Firefox Home + Si cette politique est activée, vous pouvez choisir les sections affichées sur Firefox Home et empêcher l'utilisateur de les modifier. + +Si cette stratégie est désactivée ou n'est pas configurée, les sections par défaut sont affichées et l'utilisateur peut les modifier. Si cette stratégie est activée, Flash est activé par défaut pour les origines indiquées, à moins que Flash ne soit complètement désactivé. Si un domaine de premier niveau est spécifié (http://example.org), Flash est également autorisé pour tous les sous-domaines. Si cette stratégie est désactivée ou non configurée, la stratégie Flash par défaut est appliquée. @@ -454,52 +469,51 @@ Si cette stratégie est désactivée ou non configurée, la mise à niveau est a Si cette stratégie est activée, toutes les données sont effacées à la fermeture de Firefox. Cela inclut la navigation, Historique de téléchargement, cookies, connexions actives, cache, formulaire et Historique de recherche, préférences de site et données de site Web hors ligne. Si cette stratégie est désactivée ou non configurée, les données ne sont pas effacées à la fermeture du navigateur. - Clear data when browser is closed + Effacer les données à la fermeture du navigateur. Cache - If the policy is enabled, the cache is cleared when the browser is closed. + Si la stratégie est activée, le cache est effacé à la fermeture du navigateur. -If this policy is disabled or not configured, the cache is not cleared when the browser is closed. +Si cette stratégie est désactivée ou n'est pas configurée, le cache n'est pas effacé lors de la fermeture du navigateur. Cookies - If the policy is enabled, cookies are cleared when the browser is closed. + Si la politique est activée, les cookies sont effacés à la fermeture du navigateur. -If this policy is disabled or not configured, cookies are not cleared when the browser is closed. - Download History - If the policy is enabled, download history is cleared when the browser is closed. +Si cette politique est désactivée ou non configurée, les cookies ne sont pas effacés lors de la fermeture du navigateur. + Historique de téléchargement + Si la stratégie est activée, l'historique des téléchargements est effacé à la fermeture du navigateur. -If this policy is disabled or not configured, download history is not cleared when the browser is closed. - Form & Search History - If the policy is enabled, form data is cleared when the browser is closed. +Si cette stratégie est désactivée ou n'est pas configurée, l'historique des téléchargements n'est pas effacé lors de la fermeture du navigateur. + Liste & Historique des recherches + Si la stratégie est activée, les données de la liste sont effacées à la fermeture du navigateur. -If this policy is disabled or not configured, form data is not cleared when the browser is closed. - Browsing History - If the policy is enabled, browsing history is cleared when the browser is closed. +Si cette stratégie est désactivée ou n'est pas configurée, les données de la liste ne sont pas effacées lors de la fermeture du navigateur. + Historique de navigation + Si la stratégie est activée, l'historique de navigation est effacé lors de la fermeture du navigateur. -If this policy is disabled or not configured, browsing history is not cleared when the browser is closed. +Si cette stratégie est désactivée ou n'est pas configurée, l'historique de navigation n'est pas effacé lors de la fermeture du navigateur. Active Logins - If the policy is enabled, sessions cleared when the browser is closed. - -If this policy is disabled or not configured, sessions not cleared when the browser is closed. - Site Preferences - If the policy is enabled, sire preferences arecleared when the browser is closed. + Si la stratégie est activée, les sessions sont effacées à la fermeture du navigateur. -If this policy is disabled or not configured, site preferences not cleared when the browser is closed. - Offline Website Data - If the policy is enabled, offline application storage is cleared when the browser is closed. +Si cette stratégie est désactivée ou non configurée, les sessions ne sont pas effacées à la fermeture du navigateur. + Préférences de site + Si la stratégie est activée, les préférences du site sont effacées lors de la fermeture du navigateur. +Si cette stratégie est désactivée ou n'est pas configurée, les préférences du site ne sont pas effacées lors de la fermeture du navigateur. + Données de site Web hors ligne + Si la stratégie est activée, le stockage des applications hors ligne est effacé lors de la fermeture du navigateur. -If this policy is disabled or not configured, offline application storage is not cleared when the browser is closed. - Locked - If this policy is disabled, all shutdown preferences can be changed by the user. +Si cette stratégie est désactivée ou n'est pas configurée, le stockage d'applications hors ligne n'est pas effacé lors de la fermeture du navigateur. + Verrouillé + Si cette stratégie est désactivée, toutes les préférences d'arrêt peuvent être modifiées par l'utilisateur. -If this policy is enabled, any shutdown preferences explicitly set via policy cannot be changed by the user. +Si cette stratégie est activée, les préférences d'arrêt définies explicitement via la stratégie ne peuvent pas être modifiées par l'utilisateur. -If this policy is not configured, no shutdown preferences can be changed by the user (previous behavior). +Si cette stratégie n'est pas configurée, aucune préférence d'arrêt ne peut être modifiée par l'utilisateur (comportement précédent). Sites Web bloqués - Si cette stratégie est activée, vous pouvez spécifier des modèles de correspondance indiquant que les sites doivent être bloqués. Les modèles de correspondance sont documentés à l'adresse https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Seules les adresses http / https sont prises en charge pour le moment. Il y a une limite de 1000 entrées. + Si cette stratégie est activée, vous pouvez définir des listes indiquant que les sites doivent être bloqués. Les modèles de listes sont documentés à l'adresse https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Seules les adresses http / https sont prises en charge pour le moment. Il y a une limite de 1000 entrées. Si cette stratégie est désactivée ou non configurée, aucun site Web n'est bloqué. Exceptions aux sites Web bloqués - If this policy is enabled, and the website filter is enabled, you can specify match patterns for sites you do not want to block. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. There is a 1000 entry limit. + Si cette stratégie est activée et que le filtre de site Web est activé, vous pouvez spécifier des modèles de correspondance pour les sites que vous ne souhaitez pas bloquer. Les modèles de correspondance sont documentés sur https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Seules les adresses http / https sont prises en charge pour le moment. Il y a une limite de 1000 entrées. Si cette stratégie est désactivée ou non configurée, il n'y a pas d'exception au filtre de site Web.. Signet 01 @@ -578,16 +592,16 @@ Si cette stratégie est désactivée ou non configurée, la page de démarrage a Page vierge Page d'accueil Session précédente - Password Manager - If this policy is disabled, the password manager is not available via preferences. + Gestionnaire de mots de passe + Si cette stratégie est désactivée, le gestionnaire de mots de passe n'est pas disponible via les préférences. -If this policy is enabled or not configured, the password manager is available via preferences. - Prompt for download location - If this policy is disabled, the user is not prompted for a download location. +Si cette stratégie est activée ou non configurée, le gestionnaire de mots de passe est disponible via les préférences. + Demander l'emplacement de téléchargement + Si cette stratégie est désactivée, l'utilisateur n'est pas invité à indiquer un emplacement de téléchargement. -If this policy is enabled, the user is always prompted for a download location. +Si cette stratégie est activée, l'utilisateur est toujours invité à indiquer un emplacement de téléchargement. -If this policy is not configured, the user is prompted for a download location, but can change the default. +Si cette stratégie n'est pas configurée, l'utilisateur est invité à indiquer un emplacement de téléchargement, mais peut modifier la valeur par défaut. Paramètres du proxy Si cette stratégie est activée, vous pouvez configurer et verrouiller les paramètres réseau. @@ -612,29 +626,29 @@ Si cette stratégie est désactivée ou non configurée, les paramètres réseau Si cette stratégie est désactivée, la protection de suivi est désactivée et verrouillée à la fois dans le navigateur et dans la navigation privée. Si cette stratégie est activée, la navigation privée est activée par défaut à la fois dans le navigateur et dans la navigation privée et vous pouvez choisir d’empêcher ou non l’utilisateur de la modifier. - Tracking Protection - Enabled - If this policy is enabled, tracking protection is enabled. + Protection contre le suivi + Activée + Si cette stratégie est activée, la protection contre le suivi est activée. -If this policy is disabled, tracking protection is disabled and cannot be changed by the user. +Si cette stratégie est désactivée, la protection contre le suivi est désactivée et ne peut pas être modifiée par l'utilisateur. -If this policy is not configured, standard tracking protection is used and the user can change it. - Cryptomining - If this policy is enabled, scripts that use cryptomining are blocked. +Si cette stratégie n'est pas configurée, une protection de suivi standard est utilisée et l'utilisateur peut la modifier. + minage de cryptomonnaie + Si cette stratégie est activée, les scripts qui utilisent le minage cryptographique sont bloqués. + +Si cette stratégie est désactivée ou n'est pas configurée, les scripts qui utilisent le minage cryptographique ne sont pas bloqués. + Empreinte digitale + Si cette stratégie est activée, les scripts qui utilisent l'empreinte digitale sont bloqués. -If this policy is disabled or not configured, scripts that use cryptomining are not blocked. - Fingerprinting - If this policy is enabled, scripts that use fingerprinting are blocked. - -If this policy is disabled or not configured, scripts that use fingerprinting are not blocked. +Si cette stratégie est désactivée ou n'est pas configurée, les scripts qui utilisent l'empreinte digitale ne sont pas bloqués. Exceptions - If this policy is enabled, you can specify origins where tracking protection is not enabled. + Si cette stratégie est activée, vous pouvez spécifier des origines où la protection de suivi n'est pas activée. -If this policy is disabled or not configured, tracking protection is enabled for all websites. - Do not allow tracking protection preferences to be changed - If this policy is enabled, tracking protection preferences cannot be changed by the user. +Si cette stratégie est désactivée ou n'est pas configurée, la protection contre le suivi est activée pour tous les sites Web. + Ne pas autoriser la modification des préférences de protection contre le suivi + Si cette politique est activée, les préférences de protection du suivi ne peuvent pas être modifiées par l'utilisateur. -If this policy is disabled or not configured, the user can change tracking protection preferences. +Si cette stratégie est désactivée ou n'est pas configurée, l'utilisateur peut modifier les préférences de protection du suivi. liste des paramètres régionaux liste des paramètres régionaux (string) Si cette stratégie est activée, vous pouvez spécifier une liste des paramètres régionaux demandés pour l'application par ordre de préférence. Le module linguistique correspondant deviendra actif. @@ -656,8 +670,8 @@ Si cette stratégie est désactivée ou non configurée, les nouveaux utilisateu Si cette stratégie est activée, vous pouvez configurer un moteur de recherche pour l'ajouter à Firefox. Utilisez {searchTerms} pour indiquer où le terme de recherche est placé. En raison d'un bogue, vous devez sélectionner la méthode (généralement GET). Notez que vous devez spécifier les moteurs de recherche dans l'ordre. Si cette stratégie est désactivée ou non configurée, aucun nouveau moteur de recherche n'est ajouté. - Unified - Separate + Regroupé + Séparé GET POST Moteur de recherche par défaut @@ -672,12 +686,12 @@ Si cette stratégie est désactivée ou non configurée, les moteurs de recherch Si cette stratégie est activée, vous pouvez spécifier les noms des moteurs à supprimer ou à masquer. Si cette stratégie est désactivée ou non configurée, les moteurs de recherche ne seront ni supprimés ni masqués. - Search Suggestions - If this policy is disabled, search suggestions will be disabled. + Suggestions de recherche + Si cette stratégie est désactivée, les suggestions de recherche seront désactivées. -If this policy is enabled, search suggestions will be enabled. +Si cette stratégie est activée, les suggestions de recherche seront activées. -If this policy is not configured, search suggestions will be enabled, but the user can turn them off. +Si cette stratégie n'est pas configurée, les suggestions de recherche seront activées, mais l'utilisateur peut les désactiver. Version SSL minimum utilisée Si cette stratégie est activée, Firefox n'utilisera pas les versions SSL / TLS inférieures à la valeur spécifiée. @@ -690,48 +704,84 @@ Si cette stratégie est désactivée ou non configurée, Firefox utilise par dé TLS 1.1 TLS 1.2 TLS 1.3 - Support Menu - If this policy is enabled, a new menuitem is added to the help menu with support information. + Menu Support + Si cette stratégie est activée, un nouveau menu est ajouté au menu d'aide avec des informations du support. + +Si cette stratégie est désactivée ou n'est pas configurée, aucun item n'est ajouté au menu d'aide. + Quoi de neuf + Si cette stratégie est désactivée, l'icône Quoi de neuf et l'élément de menu ne seront pas affichés. + +Si cette stratégie est activée ou non configurée, l'icône Quoi de neuf et l'élément de menu s'affichent. + Proposition d'Extension + Si cette politique est désactivée, les extensions ne seront pas proposées lorsque l'utilisateur visite des sites Web. + +Si cette politique est activée ou non configurée, des extensions seront proposées lorsque l'utilisateur visitera des sites Web. + Suggestions relatives aux fonctionnalités + Si cette politique est désactivée, les fonctionnalités de Firefox ne seront pas recommandées car l'utilisateur utilise Firefox. -If this policy is disabled or not configured, no menuitem is added. - What's New - If this policy is disabled, the What's new icon and menuitem will not be displayed. +Si cette politique est activée ou non configurée, les fonctionnalités de Firefox seront recommandées car l'utilisateur utilise Firefox. + Suggestion saisie URL + Si cette stratégie est désactivée, aucune action ne sera recommandée en fonction de ce que l'utilisateur tape dans la barre d'URL. -If this policy is enabled or not configured, the What's New icon and menuitem will be displayed. - Extension Recommendations - If this policy is disabled, extensions will not be recommended as the user visits websites. +Si cette stratégie est activée ou non configurée, des actions seront recommandées en fonction de ce que l'utilisateur tape dans la barre d'URL. + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_DHE_RSA_WITH_AES_128_CBC_SHA est désactivé. -If this policy is enabled or not configured, extensions will be recommended as the user visits websites. - Feature Recommendations - If this policy is disabled, Firefox features will not be recommended as the user uses Firefox. +Si cette stratégie est activée ou non configurée, le chiffrement TLS_DHE_RSA_WITH_AES_128_CBC_SHA est activé. + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_DHE_RSA_WITH_AES_256_CBC_SHA est désactivé. -If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox. - Urlbar Interventions - If this policy is disabled, actions will not be recommended based on what the user types in the URL bar. +Si cette stratégie est activée ou non configurée, le chiffrement TLS_DHE_RSA_WITH_AES_256_CBC_SHA est activé. + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA est désactivé. -If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar. - If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false. +Si cette stratégie est activée ou non configurée, le chiffrement TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA est activé. + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA est désactivé. -For a description of the preference, see: +Si cette stratégie est activée ou non configurée, le chiffrement TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA est activé. + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + Si cette stratégie est désactivée, le chiffrement TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 est désactivé. + +Si cette stratégie est activée ou non configurée, le chiffrement TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 est activé. + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + Si cette stratégie est désactivée, le chiffrement TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 est désactivé. + +Si cette stratégie est activée ou non configurée, le chiffrement TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 est activé. + TLS_RSA_WITH_AES_128_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_RSA_WITH_AES_128_CBC_SHA est désactivé. + +Si cette stratégie est activée ou non configurée, le chiffrement TLS_RSA_WITH_AES_128_CBC_SHA est activé. + TLS_RSA_WITH_AES_256_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_RSA_WITH_AES_256_CBC_SHA est désactivé. + +Si cette stratégie est activée ou non configurée, le chiffrement TLS_RSA_WITH_AES_256_CBC_SHA est activé. + TLS_RSA_WITH_3DES_EDE_CBC_SHA + Si cette stratégie est désactivée, le chiffrement TLS_RSA_WITH_3DES_EDE_CBC_SHA est désactivé. + +Si cette stratégie est activée ou non configurée, le chiffrement TLS_RSA_WITH_3DES_EDE_CBC_SHA est activé. + Si cette stratégie est activée, la préférence est verrouillée sur true. Si cette stratégie est désactivée, la préférence est verrouillée sur false. + +Pour une description de la préférence, voir: https://github.com/mozilla/policy-templates/blob/master/README.md#preferences - If this policy is enabled, the preference is locked to the string entered. If this policy is disabled, it has no effect. + Si cette stratégie est activée, la préférence est verrouillée sur la chaîne entrée. Si cette stratégie est désactivée, elle n'a aucun effet. -For a description of the preference, see: +Pour une description de la préférence, voir: https://github.com/mozilla/policy-templates/blob/master/README.md#preferences - If this policy is enabled, the preference is locked to the value selected. If this policy is disabled, it has no effect. + Si cette stratégie est activée, la préférence est verrouillée sur la valeur sélectionnée. Si cette stratégie est désactivée, elle n'a aucun effet. -For a description of the preference, see: +Pour une description de la préférence, voir: https://github.com/mozilla/policy-templates/blob/master/README.md#preferences - This preference is no longer support on Windows. We are investigating creating a policy. + Cette préférence n'est plus prise en charge sous Windows. Nous étudions la possibilité de créer une politique. Auto (0) - Always Off (1) - Ask Every Time - Select Automatically + Toujours désactivé (1) + Demandez à chaque fois + Sélectionnez automatiquement accessibility.force_disabled - app.update.auto (Deprecated) + app.update.auto (obsolète) browser.bookmarks.autoExportHTML browser.bookmarks.file browser.bookmarks.restore_default_bookmarks @@ -794,8 +844,8 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferencesToujours autoriser SPNEGO sur des noms de domaine autres que FQDN - Allow NTLM to automatically authenticate with proxy servers - Allow SPNEGO to automatically authenticate with proxy servers + Autoriser NTLM à s'authentifier automatiquement auprès des serveurs proxy + Autoriser SPNEGO à s'authentifier automatiquement auprès des serveurs proxy @@ -822,8 +872,8 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences Ne pas autoriser la modification des préférences de protection du suivi. - Block cryptomining scripts. - Block fingerprinting scripts. + Bloquer les scripts de minage cryptomonnaie. + Bloquer les scripts d'empreintes digitales. Exceptions: @@ -978,20 +1028,20 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences Cache Cookies - Download History - Form & Search History - Browsing History - Active Logins - Site Preferences - Offline Website Data + Historique de téléchargement + Historique de recherche + Historique de navigation + Sessions Actives + Préférences de site + Données de site Web hors ligne - Search - Top Sites - Download History - Recommended by Pocket - Snippets - Don't allow settings to be changed + Rechercher + Meilleurs sites + Historique de téléchargement + Enregistré dans Pocket + Brèves + Ne pas autoriser la modification des paramètres @@ -1007,6 +1057,9 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences + + + diff --git a/windows/it-IT/firefox.adml b/windows/it-IT/firefox.adml index 1e753c3..36389c2 100644 --- a/windows/it-IT/firefox.adml +++ b/windows/it-IT/firefox.adml @@ -1,5 +1,5 @@ - + @@ -26,6 +26,7 @@ Firefox 75 o versione successiva Firefox 76 o versione successiva, Firefox 68.8 ESR o versione successiva Firefox 77 o versione successiva, Firefox 68.9 ESR o versione successiva + Firefox 78 o versione successiva Firefox Permessi Fotocamera @@ -45,6 +46,7 @@ Ricerca Preferenze Messaggi utente + Cifrari disabilitati Siti consentiti Siti bloccati Aggiornamento automatico applicazione @@ -422,6 +424,19 @@ Se questo criterio è disabilitato o non configurato, viene seguito il criterio Se questo criterio è abilitato, la riproduzione automatica sarà sempre bloccata per le origini indicate. Se questo criterio è disabilitato o non configurato, viene seguito il criterio predefinito per la riproduzione automatica. + Livello predefinito riproduzione automatica + Se questo criterio è abilitato, è possibile scegliere il livello predefinito per la riproduzione automatica. + +Se questo criterio è disabilitato o non configurato, l'audio è bloccato per impostazione predefinita. + +Nota: il blocco dell'audio e del video non funziona nella versione ESR. + Do not allow preferences to be changed + If this policy is enabled, autoplay preferences cannot be changed by the user. + +If this policy is disabled or not configured, the user can change autoplay preferences. + Allow Audio and Video + Block Audio + Block Audio and Video Personalizza pagina iniziale di Firefox Se questo criterio è abilitato, è possibile scegliere le sezioni visualizzate nella pagina iniziale di Firefox e impedire all'utente di modificarle. @@ -710,6 +725,42 @@ Se questo criterio è abilitato o non configurato, saranno consigliate funzional Se questo criterio è disabilitato, non saranno consigliate azioni basate su quanto l'utente ha digitato nella barra degli indirizzi. Se questo criterio è abilitato o non configurato, saranno consigliate azioni basate su quanto l'utente ha digitato nella barra degli indirizzi. + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_DHE_RSA_WITH_AES_128_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_DHE_RSA_WITH_AES_128_CBC_SHA è abilitato. + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_DHE_RSA_WITH_AES_256_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_DHE_RSA_WITH_AES_256_CBC_SHA è abilitato. + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA è abilitato. + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA è abilitato. + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + Se questo criterio è disabilitato, il cifrario TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 è abilitato. + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + Se questo criterio è disabilitato, il cifrario TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 è abilitato. + TLS_RSA_WITH_AES_128_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_RSA_WITH_AES_128_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_RSA_WITH_AES_128_CBC_SHA è abilitato. + TLS_RSA_WITH_AES_256_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_RSA_WITH_AES_256_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_RSA_WITH_AES_256_CBC_SHA è abilitato. + TLS_RSA_WITH_3DES_EDE_CBC_SHA + Se questo criterio è disabilitato, il cifrario TLS_RSA_WITH_3DES_EDE_CBC_SHA è disabilitato. + +Se questo criterio è abilitato o non configurato, il cifrario TLS_RSA_WITH_3DES_EDE_CBC_SHA è abilitato. 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: @@ -1007,6 +1058,9 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences + + + diff --git a/windows/zh-TW/firefox.adml b/windows/zh-TW/firefox.adml index 71e5aba..244f8d1 100644 --- a/windows/zh-TW/firefox.adml +++ b/windows/zh-TW/firefox.adml @@ -1,5 +1,5 @@ - + @@ -26,6 +26,7 @@ Firefox 75 或更新版本 Firefox 76 或更新版本、Firefox 68.8 ESR 或更新版本 Firefox 77 或更新版本、Firefox 68.9 ESR 或更新版本 + Firefox 78 或更新版本 Firefox 權限 攝影機 @@ -44,15 +45,16 @@ 首頁 搜尋 偏好設定 - User Messaging + 顯示給使用者的訊息 + Disabled Ciphers 允許的網站 封鎖的網站 - Application Autoupdate - If this policy is enabled, Firefox is automatically updated without user approval. + 應用程式自動更新 + 若啟用此原則,Firefox 會不經使用者同意自動更新。 -If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update. +若停用此原則,會自動下載 Firefox 更新,但可由使用者自行選擇何時安裝。 -If this policy is not configured, the user can choose whether not Firefox is automatically updated. +若不設定此原則,使用者可自行決定是否要自動更新 Firefox。 自訂更新網址 若啟用此原則,可指定用來檢查更新的伺服器網址。當您在內部網路自行架設更新伺服器時會有幫助。 @@ -83,10 +85,10 @@ If this policy is not configured, the user can choose whether not Firefox is aut 若停用此原則,則不會對代理伺服器進行 SPNEGO 或 NTLM 身分驗證。 若啟用(並勾選選取盒)或不設定此原則,則總是會對代理伺服器進行 SPNEGO 或 NTLM 身分驗證。 - Do not allow authentication preferences to be changed - If this policy is disabled, authentication preferences can be changed by the user. + 不允許更改驗證偏好設定 + 若停用此原則,可由使用者自行更改驗證偏好設定。 -If this policy is enabled or not configured, authentication preferences cannot be changed by the user. +若啟用或不設定此原則,則不允許使用者更改驗證偏好設定。 封鎖附加元件管理員 若啟用此原則,使用者將無法開啟附加元件管理員或 about:addons。 @@ -128,23 +130,23 @@ If this policy is enabled or not configured, authentication preferences cannot b 若停用或不設定此原則,將使用 Firefox 的預設下載資料夾,且可由使用者變更。 DNS Over HTTPS - Enabled - If this policy is disabled, DNS over HTTPS is disabled. + 啟用 + 若停用此原則,將停用 DNS over HTTPS。 -If this policy is enabled or not configured, DNS Over HTTPS is enabled. - Provider URL - If this policy is enabled, the URL specified is used as the provider URL. +若啟用或不設定此原則,則啟用 DNS Over HTTPS。 + 供應商網址 + 若啟用此原則,將使用指定的網址作為供應商網址。 -If this policy is disabled or not configured, the default provider is used. +若停用或不設定此原則,則使用預設供應商。 - Locked - If this policy is enabled, DNS over HTTPS settings cannot be changed by the user. + 鎖定 + 若啟用此原則,使用者將無法更改 DNS over HTTPS 設定。 -If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user. - Excluded Domains - If this policy is enabled, the specified domains are excluded from DNS over HTTPS. +若停用或不設定此原則,則允許使用者更改 DNS over HTTPS 設定。 + 要排除的網域 + 若啟用此原則,將排除指定的網域使用 DNS over HTTPS。 -If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS. +若停用或不設定此原則,則不會排除任何網域使用 DNS over HTTPS。 設定 DNS Over HTTPS (Moved) 若啟用此原則,可變更預設 DNS over HTTPS 設定。 @@ -161,12 +163,12 @@ If this policy is disabled or not configured, no domains are excluded from DNS o 若啟用此原則,將不會使用 Firefox 內建檢視器開啟 PDF 檔案。 若停用或不設定此原則,則會使用 Firefox 內建檢視器開啟 PDF 檔案。 - Disable the default browser agent. - 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 +若需關於預設瀏覽器代理工具的更多資訊,請參考 https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html 停用開發者工具 若啟用此原則,將關閉 Firefox 當中的網頁開發者工具功能。 @@ -197,10 +199,10 @@ For more information about the default browser agent, see https://firefox-source 若啟用此原則,Firefox 將不會保留表單填寫或搜尋紀錄。 若停用或不設定此原則,Firefox 則會保留表單填寫及搜尋紀錄。 - Do not allow passwords to be revealed in saved logins - If this policy is enabled, users cannot show passwords in saved logins. + 不允許在「儲存的登入資訊」頁面顯示密碼 + 若啟用此原則,使用者將無法在「儲存的登入資訊」頁面顯示密碼。 -If this policy is disabled or not configured, users can show passwords in saved logins. +若停用或不設定此原則,使用者則可以在「儲存的登入資訊」頁面顯示密碼。 停用 Pocket 若啟用此原則,將無法使用 Pocket。 @@ -247,14 +249,14 @@ Mozilla 建議您不要停用 Telemetry。透過 Telemetry 收集到的資訊可 若啟用此原則,預設將顯示選單列。使用者還是可以將其隱藏。 若停用或不設定此原則,則預設不會顯示選單列。 - Display Menu Bar - If this policy is enabled, you can choose whether or not the menu bar is displayed and whether or not the user can show and hide the menu bar. - -If this policy is disabled or not configured, the menu bar is not displayed by default. - Always - Never - On by default - Off by default + 顯示選單列 + 若啟用此原則,您可以決定是否顯示選單列,以及是否允許使用者自行顯示或隱藏選單列。 + +若停用或不設定此原則,預設將不顯示選單列。 + 總是顯示 + 永不顯示 + 預設顯示 + 預設不顯示 不要檢查是否為預設瀏覽器 若啟用此原則,Firefox 不會在啟動時檢查是否為預設瀏覽器。 @@ -317,7 +319,7 @@ If this policy is disabled or not configured, the menu bar is not displayed by d 允許網站顯示彈出視窗 若停用此原則,預設將允許來自所有網站的彈出視窗。 -若未啟用或設定此原則,將封鎖來自所有網站的彈出視窗。。 +若未啟用或設定此原則,將封鎖來自所有網站的彈出視窗。 不允許更改允許偏好設定 若啟用此原則,使用者將無法調整彈出視窗偏好設定。 @@ -414,12 +416,25 @@ If this policy is disabled or not configured, the menu bar is not displayed by d 若啟用此原則,使用者將無法調整通知偏好設定。 若停用或不設定此原則,則使用者能夠自行調整位置通知偏好設定。 - If this policy is enabled, autoplay is always enabled for the origins indicated. + 若啟用此原則,將永遠針對指定的來源允許自動播放。 -If this policy is disabled or not configured, the default autoplay policy is followed. - If this policy is enabled, autoplay is always blocked for the origins indicated. +若停用或不設定此原則,將遵循預設自動播放原則。 + 若啟用此原則,將永遠針對指定的來源封鎖自動播放。 -If this policy is disabled or not configured, the default autoplay policy is followed. +若停用或不設定此原則,將遵循預設自動播放原則。 + Default autoplay level + If this policy is enabled, you can choose the default autoplay level. + +If this policy is disabled or not configured, audio is blocked by default. + +Note: Blocking audio and video does not work on the ESR. + Do not allow preferences to be changed + If this policy is enabled, autoplay preferences cannot be changed by the user. + +If this policy is disabled or not configured, the user can change autoplay preferences. + Allow Audio and Video + Block Audio + Block Audio and Video 自訂 Firefox 首頁 若啟用此原則,將可以設定要在 Firefox 首頁顯示哪些段落,並防止使用者更改設定。 @@ -452,46 +467,46 @@ If this policy is disabled or not configured, the default autoplay policy is fol 若啟用此原則,將可以選擇要在關閉 Firefox 時清理哪些資料。 若停用或不設定此原則,則不會在關閉 Firefox 時清理任何資料。 - Clear data when browser is closed + 在關閉瀏覽器時清理資料。 - Cache - If the policy is enabled, the cache is cleared when the browser is closed. + 快取 + 若啟用此原則,將在瀏覽器關閉時清除快取。 -If this policy is disabled or not configured, the cache is not cleared when the browser is closed. - Cookies - If the policy is enabled, cookies are cleared when the browser is closed. +若停用或不設定此原則,the cache is not cleared when the browser is closed. + Cookie + 若啟用此原則,將在瀏覽器關閉時清除 Cookie。 -If this policy is disabled or not configured, cookies are not cleared when the browser is closed. - Download History - If the policy is enabled, download history is cleared when the browser is closed. +若停用或不設定此原則,則不會在瀏覽器關閉時清除 Cookie。 + 下載紀錄 + 若啟用此原則,將在瀏覽器關閉時清除下載紀錄。 -If this policy is disabled or not configured, download history is not cleared when the browser is closed. - Form & Search History - If the policy is enabled, form data is cleared when the browser is closed. +若停用或不設定此原則,則不會在瀏覽器關閉時清除下載紀錄。 + 表單與搜尋紀錄 + 若啟用此原則,將在瀏覽器關閉時清除表單資料。 -If this policy is disabled or not configured, form data is not cleared when the browser is closed. - Browsing History - If the policy is enabled, browsing history is cleared when the browser is closed. +若停用或不設定此原則,則不會在瀏覽器關閉時清除表單資料。 + 上網紀錄 + 若啟用此原則,將在瀏覽器關閉時清除上網紀錄。 -If this policy is disabled or not configured, browsing history is not cleared when the browser is closed. - Active Logins - If the policy is enabled, sessions cleared when the browser is closed. +若停用或不設定此原則,則不會在瀏覽器關閉時清除瀏覽紀錄。 + 已登入的連線 + 若啟用此原則,將在瀏覽器關閉時清除 Session 紀錄。 -If this policy is disabled or not configured, sessions not cleared when the browser is closed. - Site Preferences - If the policy is enabled, sire preferences arecleared when the browser is closed. +若停用或不設定此原則,則不會在瀏覽器關閉時清除 Session 紀錄。 + 網站偏好設定 + 若啟用此原則,將在瀏覽器關閉時清除網站設定。 -If this policy is disabled or not configured, site preferences not cleared when the browser is closed. - Offline Website Data - If the policy is enabled, offline application storage is cleared when the browser is closed. +若停用或不設定此原則,則不會在瀏覽器關閉時清除網站設定。 + 離線網站資料 + 若啟用此原則,將在瀏覽器關閉時清除網站離線資料儲存空間。 -If this policy is disabled or not configured, offline application storage is not cleared when the browser is closed. - Locked - If this policy is disabled, all shutdown preferences can be changed by the user. +若停用或不設定此原則,則不會在瀏覽器關閉時清除網站離線資料儲存空間。 + 鎖定 + 若停用此原則,使用者可自行調整任何「關閉瀏覽器時清理資料」設定。 -If this policy is enabled, any shutdown preferences explicitly set via policy cannot be changed by the user. +若啟用此原則,使用者將無法變更任何透過企業原則指定的「關閉瀏覽器時清理資料」設定(其餘可變更)。 -If this policy is not configured, no shutdown preferences can be changed by the user (previous behavior). +若不設定此原則,使用者將無法變更所有「關閉瀏覽器時清理資料」設定(先前的行為)。 要封鎖的網站 若啟用此原則,將可以指定要封鎖的網站網址規則。規則格式文件位於 https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns。目前僅支援 http/https 網址,最多 1000 筆項目。 @@ -610,29 +625,29 @@ If this policy is not configured, no shutdown preferences can be changed by the 若停用此原則,則會在一般與隱私瀏覽模式中都停用追蹤保護功能,且使用者無法開啟。 若啟用此原則,則會在一般與隱私瀏覽模式中都啟用追蹤保護功能,且您可以決定是否要允許讓使用者自行更改設定。 - Tracking Protection - Enabled - If this policy is enabled, tracking protection is enabled. + 追蹤保護 + 啟用 + 若啟用此原則,將開啟追蹤保護功能。 -If this policy is disabled, tracking protection is disabled and cannot be changed by the user. +若停用此原則,將關閉追蹤保護功能,且不允許使用者開啟。 -If this policy is not configured, standard tracking protection is used and the user can change it. - Cryptomining - If this policy is enabled, scripts that use cryptomining are blocked. +若不設定此原則,將使用預設追蹤保護設定,且允許使用者自行調整。 + 加密貨幣採礦程式 + 若啟用此原則,將封鎖使用加密貨幣採礦程式的指令碼。 -If this policy is disabled or not configured, scripts that use cryptomining are not blocked. - Fingerprinting - If this policy is enabled, scripts that use fingerprinting are blocked. +若停用或不設定此原則,則不會封鎖使用加密貨幣採礦程式的指令碼。 + 數位指紋追蹤程式 + 若啟用此原則,將封鎖使用數位指紋追蹤程式的指令碼。 -If this policy is disabled or not configured, scripts that use fingerprinting are not blocked. - Exceptions - If this policy is enabled, you can specify origins where tracking protection is not enabled. +若停用或不設定此原則,則不會封鎖使用數位指紋追蹤程式的指令碼。 + 例外網址 + 若啟用此原則,可針對指定的來源不開啟追蹤保護功能。 -If this policy is disabled or not configured, tracking protection is enabled for all websites. - Do not allow tracking protection preferences to be changed - If this policy is enabled, tracking protection preferences cannot be changed by the user. +若停用或不設定此原則,則對所有網站開啟追蹤保護功能。 + 不允許調整追蹤保護功能偏好設定 + 若啟用此原則,使用者將無法調整追蹤保護功能偏好設定。 -If this policy is disabled or not configured, the user can change tracking protection preferences. +若停用或不設定此原則,使用者則可以調整追蹤保護功能偏好設定。 請求語系 請求語系(字串) 若啟用此原則,您可以指定要由應用程式顯示的語系順序清單。將使得對應的語言套件生效。 @@ -692,22 +707,58 @@ If this policy is disabled or not configured, the user can change tracking prote 若啟用此原則,將在說明選單中加入技術支援資訊項目。 若停用或不設定此原則,則不會加入選單項目。 - What's New - If this policy is disabled, the What's new icon and menuitem will not be displayed. + 有什麼新鮮事 + 若停用此原則,將不會顯示「有什麼新鮮事」的圖示與選單項目。 + +若啟用或不設定此原則,則會顯示「有什麼新鮮事」的圖示與選單項目。 + 推薦的擴充套件 + 若停用此原則,將不會在使用者瀏覽網站時推薦擴充套件。 + +若啟用或不設定此原則,則會在使用者瀏覽網站時推薦擴充套件。 + 功能推薦 + 若停用此原則,將不會在使用者操作 Firefox 時推薦 Firefox 功能。 + +若啟用或不設定此原則,則會在使用者操作 Firefox 時推薦 Firefox 功能。 + 介入網址列 + 若停用此原則,將不會在使用者在網址列輸入時推薦操作行為。 + +若啟用或不設定此原則,則會根據使用者在網址列輸入的內容推薦操作行為。 + TLS_DHE_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher is disabled. -If this policy is enabled or not configured, the What's New icon and menuitem will be displayed. - Extension Recommendations - If this policy is disabled, extensions will not be recommended as the user visits websites. +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_DHE_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA cipher is disabled. -If this policy is enabled or not configured, extensions will be recommended as the user visits websites. - Feature Recommendations - If this policy is disabled, Firefox features will not be recommended as the user uses Firefox. +If this policy is enabled or not configured, the TLS_DHE_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher is disabled. -If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox. - Urlbar Interventions - 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, the TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher is disabled. -If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar. +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + If this policy is disabled, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 cipher is enabled. + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + If this policy is disabled, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 cipher is disabled. + +If this policy is enabled or not configured, the TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 cipher is enabled. + TLS_RSA_WITH_AES_128_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_AES_128_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_128_CBC_SHA cipher is enabled. + TLS_RSA_WITH_AES_256_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_AES_256_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_AES_256_CBC_SHA cipher is enabled. + TLS_RSA_WITH_3DES_EDE_CBC_SHA + If this policy is disabled, the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher is disabled. + +If this policy is enabled or not configured, the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher is enabled. 若啟用此原則,偏好設定將鎖定為 true。若停用此原則,偏好設定則鎖定為 false。 若需要偏好設定的詳細說明,請參考: @@ -1005,6 +1056,9 @@ https://github.com/mozilla/policy-templates/blob/master/README.md#preferences。 + + + \ No newline at end of file