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).
@@ -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
-
-
-
-
-
-
+
+
+
+
+
+
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).
@@ -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
-
-
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 æ¶éå°çè³è¨å¯
-
-
-
-
-
-
+
+
+
+
+
+
ä¸è¦æª¢æ¥æ¯å¦çºé è¨ç覽å¨
è¥åç¨æ¤ååï¼Firefox ä¸æå¨ååæ檢æ¥æ¯å¦çºé è¨ç覽å¨ã
@@ -317,7 +319,7 @@ If this policy is disabled or not configured, the menu bar is not displayed by d
+è¥æªåç¨æè¨å®æ¤ååï¼å°å°éä¾èªææ網ç«çå½åºè¦çªã
\ No newline at end of file